From bed91cf21f911a27be4ca3d8865d4d30af838e31 Mon Sep 17 00:00:00 2001 From: Zack Maril Date: Sat, 22 Aug 2026 09:31:54 -0400 Subject: [PATCH] Fix Bash heredoc attachment --- crates/treebank-bash/grammar.js | 29 +- crates/treebank-bash/src/grammar.json | 112 +- crates/treebank-bash/src/node-types.json | 114 +- crates/treebank-bash/src/parser.c | 216831 +++++++++-------- crates/treebank-bash/src/scanner.c | 150 +- crates/treebank-bash/test/corpus/basics.txt | 101 +- 6 files changed, 108851 insertions(+), 108486 deletions(-) diff --git a/crates/treebank-bash/grammar.js b/crates/treebank-bash/grammar.js index a9f2278..aebcc1e 100644 --- a/crates/treebank-bash/grammar.js +++ b/crates/treebank-bash/grammar.js @@ -44,6 +44,7 @@ module.exports = grammar({ $._heredoc_start_dash, $.heredoc_body, $.heredoc_end, + $._heredoc_newline, $._concat, $._assignment_name, $._file_descriptor, @@ -106,12 +107,32 @@ module.exports = grammar({ // more than one line does not parse, which is most of them. _statements: $ => prec.right(seq( repeat('\n'), - repeat(seq($._statement, $._terminator, repeat('\n'))), + repeat(seq($._statement, $._statement_end)), $._statement, - optional($._terminator), - repeat('\n'), + optional($._statement_end), )), + // A normal terminator closes one statement. When a heredoc is pending, + // the scanner claims the newline as `_heredoc_newline` instead, proving + // that the complete redirect/list/pipeline line has ended before any + // payload token becomes valid. This is what keeps `; echo still-here` + // on the opening line out of the body. + _statement_end: $ => choice( + seq($._terminator, repeat('\n')), + seq($._heredoc_newline, repeat1($._heredoc), repeat('\n')), + ), + + // A heredoc's payload starts only after the NEWLINE that terminates the + // complete statement containing `< choice( + seq($.heredoc_body, $.heredoc_end), + $.heredoc_end, + ), + // `;;` is NOT here. It terminates a case ITEM, not a statement, and // listing it meant `optional($._statements)` inside a case_item ate the // item's own terminator: a whole multi-item `case` collapsed into one @@ -373,8 +394,6 @@ module.exports = grammar({ seq('<<', $.heredoc_start), seq('<<-', alias($._heredoc_start_dash, $.heredoc_start)), ), - optional($.heredoc_body), - optional($.heredoc_end), ), diff --git a/crates/treebank-bash/src/grammar.json b/crates/treebank-bash/src/grammar.json index 3d1ccb9..4f9d5f6 100644 --- a/crates/treebank-bash/src/grammar.json +++ b/crates/treebank-bash/src/grammar.json @@ -51,14 +51,7 @@ }, { "type": "SYMBOL", - "name": "_terminator" - }, - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": "\n" - } + "name": "_statement_end" } ] } @@ -72,23 +65,82 @@ "members": [ { "type": "SYMBOL", - "name": "_terminator" + "name": "_statement_end" }, { "type": "BLANK" } ] - }, - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": "\n" - } } ] } }, + "_statement_end": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_terminator" + }, + { + "type": "REPEAT", + "content": { + "type": "STRING", + "value": "\n" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_heredoc_newline" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "_heredoc" + } + }, + { + "type": "REPEAT", + "content": { + "type": "STRING", + "value": "\n" + } + } + ] + } + ] + }, + "_heredoc": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "heredoc_body" + }, + { + "type": "SYMBOL", + "name": "heredoc_end" + } + ] + }, + { + "type": "SYMBOL", + "name": "heredoc_end" + } + ] + }, "_terminator": { "type": "CHOICE", "members": [ @@ -1802,30 +1854,6 @@ ] } ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "heredoc_body" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "heredoc_end" - }, - { - "type": "BLANK" - } - ] } ] }, @@ -3297,6 +3325,10 @@ "type": "SYMBOL", "name": "heredoc_end" }, + { + "type": "SYMBOL", + "name": "_heredoc_newline" + }, { "type": "SYMBOL", "name": "_concat" diff --git a/crates/treebank-bash/src/node-types.json b/crates/treebank-bash/src/node-types.json index bb26317..f6ae553 100644 --- a/crates/treebank-bash/src/node-types.json +++ b/crates/treebank-bash/src/node-types.json @@ -487,6 +487,14 @@ { "type": "_statement", "named": true + }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true } ] } @@ -596,6 +604,14 @@ { "type": "_statement", "named": true + }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true } ] } @@ -612,6 +628,14 @@ "type": "_statement", "named": true }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true + }, { "type": "redirect", "named": true @@ -730,6 +754,14 @@ { "type": "_statement", "named": true + }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true } ] } @@ -745,6 +777,14 @@ { "type": "_statement", "named": true + }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true } ] } @@ -760,6 +800,14 @@ { "type": "_statement", "named": true + }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true } ] } @@ -910,17 +958,9 @@ } }, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ - { - "type": "heredoc_body", - "named": true - }, - { - "type": "heredoc_end", - "named": true - }, { "type": "heredoc_start", "named": true @@ -965,6 +1005,14 @@ { "type": "_statement", "named": true + }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true } ] }, @@ -987,6 +1035,14 @@ { "type": "_statement", "named": true + }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true } ] } @@ -1108,6 +1164,14 @@ { "type": "_statement", "named": true + }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true } ] } @@ -1124,6 +1188,14 @@ { "type": "_statement", "named": true + }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true } ] } @@ -1353,6 +1425,14 @@ "type": "_statement", "named": true }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true + }, { "type": "redirect", "named": true @@ -1428,6 +1508,14 @@ { "type": "_statement", "named": true + }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true } ] } @@ -1547,6 +1635,14 @@ { "type": "_statement", "named": true + }, + { + "type": "heredoc_body", + "named": true + }, + { + "type": "heredoc_end", + "named": true } ] } diff --git a/crates/treebank-bash/src/parser.c b/crates/treebank-bash/src/parser.c index 5666e80..04bbf1b 100644 --- a/crates/treebank-bash/src/parser.c +++ b/crates/treebank-bash/src/parser.c @@ -15,12 +15,12 @@ #endif #define LANGUAGE_VERSION 15 -#define STATE_COUNT 3942 -#define LARGE_STATE_COUNT 306 -#define SYMBOL_COUNT 208 +#define STATE_COUNT 3911 +#define LARGE_STATE_COUNT 315 +#define SYMBOL_COUNT 212 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 126 -#define EXTERNAL_TOKEN_COUNT 12 +#define TOKEN_COUNT 127 +#define EXTERNAL_TOKEN_COUNT 13 #define FIELD_COUNT 15 #define MAX_ALIAS_SEQUENCE_LENGTH 10 #define MAX_RESERVED_WORD_SET_SIZE 0 @@ -145,96 +145,100 @@ enum ts_symbol_identifiers { sym__heredoc_start_dash = 115, sym_heredoc_body = 116, sym_heredoc_end = 117, - sym__concat = 118, - sym__assignment_name = 119, - sym__file_descriptor = 120, - sym__backtick_open = 121, - sym__backtick_close = 122, - sym__dollar_literal = 123, - sym__brace_expr_start = 124, - sym__error_sentinel = 125, - sym_program = 126, - sym__statements = 127, - sym__terminator = 128, - sym__statement = 129, - sym__directive = 130, - sym_list = 131, - sym_pipeline = 132, - sym_negated_command = 133, - sym_subshell = 134, - sym_compound_statement = 135, - sym__body = 136, - sym_do_group = 137, - sym__control_flow = 138, - sym__branch = 139, - sym_if_statement = 140, - sym_elif_clause = 141, - sym_else_clause = 142, - sym_case_statement = 143, - sym__case_item_last = 144, - sym_case_item = 145, - sym__case_body = 146, - sym__case_patterns = 147, - sym__loop = 148, - sym_for_statement = 149, - sym_c_style_for_statement = 150, - sym_while_statement = 151, - sym_until_statement = 152, - sym__jump = 153, - sym_return_statement = 154, - sym_break_statement = 155, - sym_continue_statement = 156, - sym_function_definition = 157, - sym__invocation = 158, - sym_command = 159, - sym__redirect_statement = 160, - sym__argument = 161, - sym__assignment = 162, - sym_variable_assignments = 163, - sym_variable_assignment = 164, - sym_declaration_command = 165, - sym_array = 166, - sym_redirect = 167, - sym_heredoc_redirect = 168, - sym_test_command = 169, - aux_sym__conditional = 170, - sym_arithmetic_command = 171, - aux_sym__arithmetic = 172, - sym__arith_group = 173, - sym__word_like = 174, - sym_concatenation = 175, - sym__word_part = 176, - sym_brace_expression = 177, - aux_sym__brace_element = 178, - sym__literal = 179, - sym_string = 180, - sym__expression = 181, - sym__access = 182, - sym__expansion_like = 183, - sym_simple_expansion = 184, - sym_expansion = 185, - sym_subscript = 186, - aux_sym__expansion_tail = 187, - sym_command_substitution = 188, - sym_arithmetic_expansion = 189, - sym_process_substitution = 190, - aux_sym_program_repeat1 = 191, - aux_sym__statements_repeat1 = 192, - aux_sym_subshell_repeat1 = 193, - aux_sym_if_statement_repeat1 = 194, - aux_sym_case_statement_repeat1 = 195, - aux_sym__case_patterns_repeat1 = 196, - aux_sym_for_statement_repeat1 = 197, - aux_sym_command_repeat1 = 198, - aux_sym_command_repeat2 = 199, - aux_sym_variable_assignments_repeat1 = 200, - aux_sym_variable_assignment_repeat1 = 201, - aux_sym_declaration_command_repeat1 = 202, - aux_sym_array_repeat1 = 203, - aux_sym_test_command_repeat1 = 204, - aux_sym_concatenation_repeat1 = 205, - aux_sym_brace_expression_repeat1 = 206, - aux_sym_string_repeat1 = 207, + sym__heredoc_newline = 118, + sym__concat = 119, + sym__assignment_name = 120, + sym__file_descriptor = 121, + sym__backtick_open = 122, + sym__backtick_close = 123, + sym__dollar_literal = 124, + sym__brace_expr_start = 125, + sym__error_sentinel = 126, + sym_program = 127, + sym__statements = 128, + sym__statement_end = 129, + sym__heredoc = 130, + sym__terminator = 131, + sym__statement = 132, + sym__directive = 133, + sym_list = 134, + sym_pipeline = 135, + sym_negated_command = 136, + sym_subshell = 137, + sym_compound_statement = 138, + sym__body = 139, + sym_do_group = 140, + sym__control_flow = 141, + sym__branch = 142, + sym_if_statement = 143, + sym_elif_clause = 144, + sym_else_clause = 145, + sym_case_statement = 146, + sym__case_item_last = 147, + sym_case_item = 148, + sym__case_body = 149, + sym__case_patterns = 150, + sym__loop = 151, + sym_for_statement = 152, + sym_c_style_for_statement = 153, + sym_while_statement = 154, + sym_until_statement = 155, + sym__jump = 156, + sym_return_statement = 157, + sym_break_statement = 158, + sym_continue_statement = 159, + sym_function_definition = 160, + sym__invocation = 161, + sym_command = 162, + sym__redirect_statement = 163, + sym__argument = 164, + sym__assignment = 165, + sym_variable_assignments = 166, + sym_variable_assignment = 167, + sym_declaration_command = 168, + sym_array = 169, + sym_redirect = 170, + sym_heredoc_redirect = 171, + sym_test_command = 172, + aux_sym__conditional = 173, + sym_arithmetic_command = 174, + aux_sym__arithmetic = 175, + sym__arith_group = 176, + sym__word_like = 177, + sym_concatenation = 178, + sym__word_part = 179, + sym_brace_expression = 180, + aux_sym__brace_element = 181, + sym__literal = 182, + sym_string = 183, + sym__expression = 184, + sym__access = 185, + sym__expansion_like = 186, + sym_simple_expansion = 187, + sym_expansion = 188, + sym_subscript = 189, + aux_sym__expansion_tail = 190, + sym_command_substitution = 191, + sym_arithmetic_expansion = 192, + sym_process_substitution = 193, + aux_sym_program_repeat1 = 194, + aux_sym__statements_repeat1 = 195, + aux_sym__statement_end_repeat1 = 196, + aux_sym_subshell_repeat1 = 197, + aux_sym_if_statement_repeat1 = 198, + aux_sym_case_statement_repeat1 = 199, + aux_sym__case_patterns_repeat1 = 200, + aux_sym_for_statement_repeat1 = 201, + aux_sym_command_repeat1 = 202, + aux_sym_command_repeat2 = 203, + aux_sym_variable_assignments_repeat1 = 204, + aux_sym_variable_assignment_repeat1 = 205, + aux_sym_declaration_command_repeat1 = 206, + aux_sym_array_repeat1 = 207, + aux_sym_test_command_repeat1 = 208, + aux_sym_concatenation_repeat1 = 209, + aux_sym_brace_expression_repeat1 = 210, + aux_sym_string_repeat1 = 211, }; static const char * const ts_symbol_names[] = { @@ -356,6 +360,7 @@ static const char * const ts_symbol_names[] = { [sym__heredoc_start_dash] = "heredoc_start", [sym_heredoc_body] = "heredoc_body", [sym_heredoc_end] = "heredoc_end", + [sym__heredoc_newline] = "_heredoc_newline", [sym__concat] = "_concat", [sym__assignment_name] = "variable_name", [sym__file_descriptor] = "file_descriptor", @@ -366,6 +371,8 @@ static const char * const ts_symbol_names[] = { [sym__error_sentinel] = "_error_sentinel", [sym_program] = "program", [sym__statements] = "_statements", + [sym__statement_end] = "_statement_end", + [sym__heredoc] = "_heredoc", [sym__terminator] = "_terminator", [sym__statement] = "_statement", [sym__directive] = "_directive", @@ -431,6 +438,7 @@ static const char * const ts_symbol_names[] = { [sym_process_substitution] = "process_substitution", [aux_sym_program_repeat1] = "program_repeat1", [aux_sym__statements_repeat1] = "_statements_repeat1", + [aux_sym__statement_end_repeat1] = "_statement_end_repeat1", [aux_sym_subshell_repeat1] = "subshell_repeat1", [aux_sym_if_statement_repeat1] = "if_statement_repeat1", [aux_sym_case_statement_repeat1] = "case_statement_repeat1", @@ -567,6 +575,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__heredoc_start_dash] = sym_heredoc_start, [sym_heredoc_body] = sym_heredoc_body, [sym_heredoc_end] = sym_heredoc_end, + [sym__heredoc_newline] = sym__heredoc_newline, [sym__concat] = sym__concat, [sym__assignment_name] = sym_variable_name, [sym__file_descriptor] = sym__file_descriptor, @@ -577,6 +586,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__error_sentinel] = sym__error_sentinel, [sym_program] = sym_program, [sym__statements] = sym__statements, + [sym__statement_end] = sym__statement_end, + [sym__heredoc] = sym__heredoc, [sym__terminator] = sym__terminator, [sym__statement] = sym__statement, [sym__directive] = sym__directive, @@ -642,6 +653,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_process_substitution] = sym_process_substitution, [aux_sym_program_repeat1] = aux_sym_program_repeat1, [aux_sym__statements_repeat1] = aux_sym__statements_repeat1, + [aux_sym__statement_end_repeat1] = aux_sym__statement_end_repeat1, [aux_sym_subshell_repeat1] = aux_sym_subshell_repeat1, [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, [aux_sym_case_statement_repeat1] = aux_sym_case_statement_repeat1, @@ -1132,6 +1144,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__heredoc_newline] = { + .visible = false, + .named = true, + }, [sym__concat] = { .visible = false, .named = true, @@ -1172,6 +1188,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__statement_end] = { + .visible = false, + .named = true, + }, + [sym__heredoc] = { + .visible = false, + .named = true, + }, [sym__terminator] = { .visible = false, .named = true, @@ -1445,6 +1469,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym__statement_end_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_subshell_repeat1] = { .visible = false, .named = false, @@ -1776,3937 +1804,3906 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [8] = 8, [9] = 9, [10] = 10, - [11] = 10, - [12] = 12, + [11] = 11, + [12] = 10, [13] = 13, [14] = 14, - [15] = 12, - [16] = 10, - [17] = 13, - [18] = 14, - [19] = 12, - [20] = 10, - [21] = 13, - [22] = 14, - [23] = 12, - [24] = 10, + [15] = 14, + [16] = 16, + [17] = 10, + [18] = 13, + [19] = 14, + [20] = 16, + [21] = 10, + [22] = 13, + [23] = 14, + [24] = 16, [25] = 13, [26] = 14, - [27] = 12, + [27] = 16, [28] = 10, [29] = 13, [30] = 14, - [31] = 12, - [32] = 13, - [33] = 14, - [34] = 12, - [35] = 10, - [36] = 13, - [37] = 14, - [38] = 12, - [39] = 10, - [40] = 13, - [41] = 14, - [42] = 12, - [43] = 10, - [44] = 13, - [45] = 45, - [46] = 14, - [47] = 47, - [48] = 45, + [31] = 16, + [32] = 10, + [33] = 13, + [34] = 14, + [35] = 16, + [36] = 10, + [37] = 13, + [38] = 14, + [39] = 16, + [40] = 10, + [41] = 13, + [42] = 14, + [43] = 16, + [44] = 10, + [45] = 13, + [46] = 46, + [47] = 16, + [48] = 11, [49] = 49, [50] = 50, - [51] = 49, + [51] = 50, [52] = 52, - [53] = 49, - [54] = 50, - [55] = 50, - [56] = 49, - [57] = 49, - [58] = 49, - [59] = 49, - [60] = 49, + [53] = 52, + [54] = 52, + [55] = 52, + [56] = 50, + [57] = 50, + [58] = 50, + [59] = 50, + [60] = 50, [61] = 50, [62] = 62, - [63] = 63, + [63] = 62, [64] = 64, [65] = 65, - [66] = 62, + [66] = 66, [67] = 67, [68] = 68, [69] = 69, [70] = 70, [71] = 71, [72] = 69, - [73] = 63, - [74] = 65, - [75] = 62, - [76] = 67, - [77] = 70, + [73] = 66, + [74] = 67, + [75] = 75, + [76] = 62, + [77] = 75, [78] = 70, [79] = 71, [80] = 69, - [81] = 63, - [82] = 65, - [83] = 62, - [84] = 67, + [81] = 66, + [82] = 67, + [83] = 75, + [84] = 62, [85] = 70, [86] = 71, [87] = 69, - [88] = 63, - [89] = 65, - [90] = 62, - [91] = 67, + [88] = 66, + [89] = 67, + [90] = 75, + [91] = 62, [92] = 70, [93] = 71, [94] = 69, - [95] = 62, - [96] = 67, + [95] = 75, + [96] = 62, [97] = 70, [98] = 71, [99] = 69, - [100] = 62, - [101] = 67, + [100] = 75, + [101] = 62, [102] = 70, [103] = 71, [104] = 69, - [105] = 62, - [106] = 67, + [105] = 75, + [106] = 62, [107] = 70, [108] = 71, [109] = 69, - [110] = 62, - [111] = 67, + [110] = 75, + [111] = 62, [112] = 70, - [113] = 62, - [114] = 67, + [113] = 75, + [114] = 62, [115] = 70, - [116] = 62, - [117] = 67, + [116] = 75, + [117] = 62, [118] = 70, - [119] = 62, - [120] = 67, + [119] = 75, + [120] = 62, [121] = 70, - [122] = 62, - [123] = 67, + [122] = 75, + [123] = 62, [124] = 70, - [125] = 62, - [126] = 67, + [125] = 75, + [126] = 62, [127] = 70, - [128] = 62, - [129] = 67, + [128] = 75, + [129] = 62, [130] = 70, - [131] = 62, - [132] = 67, + [131] = 75, + [132] = 62, [133] = 70, - [134] = 62, - [135] = 67, + [134] = 75, + [135] = 62, [136] = 70, - [137] = 62, + [137] = 75, [138] = 71, [139] = 70, - [140] = 62, - [141] = 67, + [140] = 75, + [141] = 62, [142] = 70, - [143] = 62, - [144] = 67, + [143] = 75, + [144] = 62, [145] = 70, - [146] = 62, - [147] = 67, + [146] = 75, + [147] = 62, [148] = 70, - [149] = 62, - [150] = 67, + [149] = 75, + [150] = 62, [151] = 70, - [152] = 62, - [153] = 67, + [152] = 75, + [153] = 62, [154] = 70, - [155] = 62, - [156] = 67, + [155] = 75, + [156] = 62, [157] = 70, - [158] = 62, - [159] = 67, + [158] = 75, + [159] = 62, [160] = 70, - [161] = 62, - [162] = 67, + [161] = 75, + [162] = 62, [163] = 70, - [164] = 62, - [165] = 67, + [164] = 75, + [165] = 62, [166] = 70, - [167] = 62, - [168] = 67, + [167] = 75, + [168] = 62, [169] = 70, - [170] = 62, - [171] = 67, + [170] = 75, + [171] = 62, [172] = 70, - [173] = 62, - [174] = 67, + [173] = 75, + [174] = 62, [175] = 70, - [176] = 62, - [177] = 67, + [176] = 75, + [177] = 62, [178] = 70, - [179] = 179, - [180] = 67, + [179] = 75, + [180] = 62, [181] = 70, - [182] = 62, - [183] = 67, + [182] = 75, + [183] = 62, [184] = 70, - [185] = 62, - [186] = 67, + [185] = 75, + [186] = 70, [187] = 70, - [188] = 62, - [189] = 67, + [188] = 75, + [189] = 62, [190] = 70, - [191] = 62, - [192] = 67, + [191] = 75, + [192] = 62, [193] = 70, - [194] = 62, - [195] = 179, - [196] = 179, - [197] = 179, - [198] = 67, - [199] = 199, - [200] = 200, - [201] = 201, + [194] = 75, + [195] = 62, + [196] = 70, + [197] = 75, + [198] = 65, + [199] = 65, + [200] = 65, + [201] = 62, [202] = 202, - [203] = 203, - [204] = 199, - [205] = 200, - [206] = 201, - [207] = 202, - [208] = 203, - [209] = 199, - [210] = 200, - [211] = 201, - [212] = 202, - [213] = 203, - [214] = 199, - [215] = 200, - [216] = 201, + [203] = 202, + [204] = 204, + [205] = 205, + [206] = 206, + [207] = 207, + [208] = 202, + [209] = 204, + [210] = 205, + [211] = 206, + [212] = 207, + [213] = 202, + [214] = 204, + [215] = 205, + [216] = 206, [217] = 202, - [218] = 199, - [219] = 199, - [220] = 201, + [218] = 204, + [219] = 205, + [220] = 206, [221] = 202, - [222] = 199, - [223] = 200, - [224] = 201, + [222] = 207, + [223] = 205, + [224] = 206, [225] = 202, - [226] = 199, - [227] = 200, - [228] = 201, - [229] = 202, - [230] = 203, - [231] = 199, - [232] = 200, - [233] = 201, - [234] = 202, - [235] = 203, - [236] = 200, - [237] = 201, - [238] = 203, - [239] = 202, - [240] = 203, - [241] = 200, - [242] = 242, - [243] = 243, - [244] = 242, + [226] = 204, + [227] = 205, + [228] = 206, + [229] = 207, + [230] = 202, + [231] = 204, + [232] = 207, + [233] = 205, + [234] = 206, + [235] = 207, + [236] = 204, + [237] = 205, + [238] = 206, + [239] = 207, + [240] = 202, + [241] = 204, + [242] = 205, + [243] = 206, + [244] = 204, [245] = 245, - [246] = 245, - [247] = 247, - [248] = 247, - [249] = 243, - [250] = 245, - [251] = 247, - [252] = 243, - [253] = 242, - [254] = 242, - [255] = 243, - [256] = 242, - [257] = 245, - [258] = 243, - [259] = 243, - [260] = 242, + [246] = 246, + [247] = 245, + [248] = 246, + [249] = 249, + [250] = 250, + [251] = 245, + [252] = 246, + [253] = 250, + [254] = 249, + [255] = 250, + [256] = 245, + [257] = 246, + [258] = 246, + [259] = 246, + [260] = 249, [261] = 245, [262] = 245, - [263] = 243, - [264] = 242, - [265] = 247, - [266] = 243, - [267] = 242, - [268] = 247, - [269] = 245, - [270] = 247, - [271] = 243, - [272] = 242, - [273] = 247, - [274] = 245, - [275] = 245, - [276] = 247, - [277] = 247, - [278] = 278, - [279] = 278, - [280] = 280, + [263] = 249, + [264] = 250, + [265] = 245, + [266] = 246, + [267] = 246, + [268] = 249, + [269] = 250, + [270] = 249, + [271] = 250, + [272] = 245, + [273] = 246, + [274] = 249, + [275] = 249, + [276] = 250, + [277] = 249, + [278] = 250, + [279] = 245, + [280] = 250, [281] = 281, - [282] = 278, - [283] = 278, - [284] = 280, - [285] = 280, - [286] = 280, - [287] = 278, - [288] = 278, - [289] = 278, - [290] = 280, - [291] = 280, - [292] = 280, - [293] = 280, - [294] = 280, - [295] = 278, - [296] = 278, - [297] = 297, - [298] = 297, - [299] = 297, - [300] = 297, - [301] = 297, - [302] = 297, - [303] = 297, - [304] = 297, - [305] = 297, - [306] = 306, - [307] = 307, - [308] = 308, + [282] = 282, + [283] = 281, + [284] = 281, + [285] = 282, + [286] = 281, + [287] = 282, + [288] = 282, + [289] = 289, + [290] = 281, + [291] = 282, + [292] = 281, + [293] = 282, + [294] = 281, + [295] = 281, + [296] = 282, + [297] = 281, + [298] = 282, + [299] = 282, + [300] = 300, + [301] = 300, + [302] = 300, + [303] = 300, + [304] = 300, + [305] = 300, + [306] = 300, + [307] = 300, + [308] = 300, [309] = 309, [310] = 310, - [311] = 311, + [311] = 309, [312] = 312, - [313] = 313, - [314] = 314, - [315] = 309, - [316] = 308, + [313] = 310, + [314] = 309, + [315] = 315, + [316] = 316, [317] = 310, - [318] = 306, - [319] = 311, - [320] = 307, + [318] = 318, + [319] = 319, + [320] = 309, [321] = 312, - [322] = 322, + [322] = 309, [323] = 323, - [324] = 307, - [325] = 310, + [324] = 309, + [325] = 309, [326] = 309, - [327] = 327, - [328] = 328, + [327] = 310, + [328] = 310, [329] = 329, - [330] = 330, - [331] = 331, - [332] = 322, - [333] = 323, - [334] = 334, + [330] = 319, + [331] = 310, + [332] = 332, + [333] = 316, + [334] = 310, [335] = 335, - [336] = 336, - [337] = 337, - [338] = 338, - [339] = 339, - [340] = 340, - [341] = 308, - [342] = 327, - [343] = 328, - [344] = 329, - [345] = 331, - [346] = 322, - [347] = 323, + [336] = 315, + [337] = 312, + [338] = 310, + [339] = 318, + [340] = 316, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 318, + [345] = 345, + [346] = 346, + [347] = 347, [348] = 348, [349] = 349, - [350] = 335, - [351] = 336, - [352] = 337, - [353] = 338, - [354] = 339, - [355] = 340, - [356] = 312, - [357] = 327, - [358] = 328, - [359] = 329, - [360] = 331, - [361] = 322, - [362] = 323, - [363] = 334, - [364] = 311, - [365] = 335, - [366] = 336, - [367] = 337, - [368] = 338, - [369] = 339, - [370] = 340, - [371] = 328, - [372] = 329, - [373] = 322, - [374] = 323, - [375] = 335, - [376] = 336, - [377] = 337, - [378] = 338, - [379] = 339, - [380] = 340, - [381] = 328, - [382] = 329, - [383] = 322, - [384] = 323, - [385] = 335, - [386] = 336, - [387] = 337, - [388] = 338, - [389] = 339, - [390] = 340, - [391] = 328, - [392] = 329, - [393] = 322, - [394] = 323, - [395] = 335, - [396] = 336, - [397] = 337, - [398] = 338, - [399] = 339, - [400] = 340, - [401] = 328, - [402] = 329, - [403] = 322, - [404] = 323, - [405] = 335, - [406] = 336, - [407] = 337, - [408] = 338, - [409] = 339, - [410] = 340, - [411] = 328, - [412] = 329, - [413] = 322, - [414] = 323, - [415] = 335, - [416] = 336, - [417] = 337, - [418] = 338, - [419] = 339, - [420] = 340, - [421] = 328, - [422] = 329, - [423] = 322, - [424] = 323, - [425] = 328, - [426] = 329, - [427] = 322, - [428] = 323, - [429] = 328, - [430] = 329, - [431] = 349, - [432] = 323, - [433] = 328, - [434] = 329, - [435] = 322, - [436] = 323, - [437] = 328, - [438] = 329, - [439] = 322, - [440] = 323, - [441] = 328, - [442] = 329, - [443] = 322, - [444] = 323, - [445] = 328, - [446] = 329, - [447] = 322, - [448] = 323, - [449] = 328, - [450] = 329, - [451] = 322, - [452] = 323, - [453] = 328, - [454] = 329, - [455] = 322, - [456] = 323, - [457] = 328, - [458] = 329, - [459] = 322, - [460] = 323, - [461] = 328, - [462] = 329, - [463] = 322, - [464] = 323, - [465] = 328, - [466] = 329, - [467] = 322, - [468] = 323, - [469] = 328, - [470] = 329, - [471] = 322, - [472] = 323, - [473] = 328, - [474] = 322, - [475] = 322, - [476] = 323, - [477] = 328, - [478] = 329, - [479] = 322, - [480] = 323, - [481] = 328, - [482] = 329, - [483] = 322, - [484] = 323, - [485] = 328, - [486] = 329, - [487] = 322, - [488] = 323, - [489] = 328, - [490] = 329, - [491] = 322, - [492] = 323, - [493] = 328, - [494] = 329, - [495] = 322, - [496] = 323, - [497] = 328, - [498] = 329, - [499] = 322, - [500] = 323, - [501] = 328, - [502] = 329, - [503] = 322, - [504] = 323, - [505] = 328, - [506] = 329, - [507] = 322, - [508] = 323, - [509] = 328, - [510] = 329, - [511] = 322, - [512] = 323, - [513] = 328, - [514] = 329, - [515] = 322, - [516] = 323, - [517] = 328, - [518] = 329, - [519] = 322, - [520] = 323, - [521] = 328, - [522] = 329, - [523] = 322, - [524] = 323, - [525] = 328, - [526] = 329, - [527] = 322, - [528] = 323, - [529] = 348, - [530] = 530, - [531] = 531, - [532] = 532, - [533] = 331, - [534] = 534, - [535] = 348, - [536] = 530, - [537] = 531, - [538] = 532, - [539] = 348, - [540] = 530, - [541] = 531, - [542] = 532, - [543] = 335, - [544] = 530, - [545] = 531, - [546] = 348, - [547] = 530, - [548] = 531, - [549] = 532, - [550] = 348, - [551] = 530, - [552] = 531, - [553] = 532, - [554] = 348, - [555] = 530, - [556] = 531, - [557] = 532, - [558] = 336, - [559] = 337, - [560] = 532, - [561] = 348, - [562] = 530, - [563] = 531, - [564] = 532, - [565] = 348, - [566] = 530, - [567] = 531, - [568] = 532, - [569] = 328, - [570] = 329, - [571] = 338, - [572] = 339, - [573] = 327, - [574] = 314, - [575] = 340, - [576] = 330, - [577] = 313, - [578] = 306, - [579] = 534, - [580] = 349, - [581] = 534, - [582] = 349, - [583] = 534, - [584] = 349, - [585] = 534, - [586] = 349, - [587] = 534, - [588] = 349, - [589] = 534, - [590] = 349, - [591] = 534, - [592] = 349, - [593] = 534, - [594] = 329, - [595] = 595, - [596] = 596, - [597] = 314, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 310, - [602] = 311, - [603] = 309, - [604] = 312, - [605] = 596, - [606] = 308, - [607] = 598, - [608] = 310, - [609] = 310, - [610] = 309, - [611] = 306, - [612] = 612, - [613] = 306, - [614] = 614, - [615] = 311, - [616] = 309, - [617] = 307, - [618] = 307, - [619] = 310, - [620] = 308, - [621] = 312, - [622] = 311, - [623] = 307, - [624] = 598, - [625] = 596, - [626] = 308, - [627] = 307, - [628] = 310, - [629] = 308, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 354, + [355] = 355, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 361, + [362] = 348, + [363] = 349, + [364] = 350, + [365] = 352, + [366] = 353, + [367] = 354, + [368] = 356, + [369] = 357, + [370] = 358, + [371] = 359, + [372] = 360, + [373] = 361, + [374] = 348, + [375] = 349, + [376] = 350, + [377] = 352, + [378] = 353, + [379] = 354, + [380] = 348, + [381] = 356, + [382] = 356, + [383] = 357, + [384] = 358, + [385] = 359, + [386] = 360, + [387] = 361, + [388] = 349, + [389] = 350, + [390] = 353, + [391] = 354, + [392] = 392, + [393] = 356, + [394] = 357, + [395] = 358, + [396] = 359, + [397] = 360, + [398] = 361, + [399] = 349, + [400] = 350, + [401] = 353, + [402] = 354, + [403] = 403, + [404] = 356, + [405] = 357, + [406] = 358, + [407] = 359, + [408] = 360, + [409] = 361, + [410] = 349, + [411] = 350, + [412] = 353, + [413] = 354, + [414] = 356, + [415] = 357, + [416] = 358, + [417] = 359, + [418] = 360, + [419] = 361, + [420] = 349, + [421] = 350, + [422] = 353, + [423] = 354, + [424] = 356, + [425] = 357, + [426] = 358, + [427] = 359, + [428] = 360, + [429] = 361, + [430] = 349, + [431] = 350, + [432] = 353, + [433] = 354, + [434] = 356, + [435] = 357, + [436] = 358, + [437] = 359, + [438] = 360, + [439] = 361, + [440] = 349, + [441] = 350, + [442] = 353, + [443] = 354, + [444] = 349, + [445] = 350, + [446] = 353, + [447] = 354, + [448] = 349, + [449] = 350, + [450] = 353, + [451] = 354, + [452] = 349, + [453] = 350, + [454] = 353, + [455] = 354, + [456] = 349, + [457] = 350, + [458] = 353, + [459] = 354, + [460] = 349, + [461] = 350, + [462] = 353, + [463] = 354, + [464] = 349, + [465] = 350, + [466] = 353, + [467] = 354, + [468] = 349, + [469] = 350, + [470] = 353, + [471] = 354, + [472] = 349, + [473] = 350, + [474] = 353, + [475] = 354, + [476] = 349, + [477] = 350, + [478] = 353, + [479] = 354, + [480] = 349, + [481] = 350, + [482] = 353, + [483] = 354, + [484] = 349, + [485] = 350, + [486] = 353, + [487] = 354, + [488] = 349, + [489] = 350, + [490] = 353, + [491] = 354, + [492] = 349, + [493] = 319, + [494] = 353, + [495] = 354, + [496] = 349, + [497] = 350, + [498] = 353, + [499] = 354, + [500] = 349, + [501] = 350, + [502] = 353, + [503] = 354, + [504] = 349, + [505] = 350, + [506] = 353, + [507] = 354, + [508] = 349, + [509] = 350, + [510] = 353, + [511] = 354, + [512] = 349, + [513] = 350, + [514] = 353, + [515] = 354, + [516] = 349, + [517] = 350, + [518] = 353, + [519] = 354, + [520] = 349, + [521] = 350, + [522] = 353, + [523] = 354, + [524] = 349, + [525] = 350, + [526] = 353, + [527] = 354, + [528] = 349, + [529] = 350, + [530] = 353, + [531] = 354, + [532] = 349, + [533] = 350, + [534] = 353, + [535] = 354, + [536] = 349, + [537] = 350, + [538] = 353, + [539] = 354, + [540] = 349, + [541] = 350, + [542] = 353, + [543] = 354, + [544] = 349, + [545] = 350, + [546] = 353, + [547] = 354, + [548] = 349, + [549] = 350, + [550] = 353, + [551] = 354, + [552] = 315, + [553] = 349, + [554] = 554, + [555] = 392, + [556] = 403, + [557] = 557, + [558] = 350, + [559] = 357, + [560] = 358, + [561] = 557, + [562] = 554, + [563] = 392, + [564] = 403, + [565] = 557, + [566] = 359, + [567] = 360, + [568] = 361, + [569] = 554, + [570] = 392, + [571] = 403, + [572] = 557, + [573] = 573, + [574] = 554, + [575] = 392, + [576] = 403, + [577] = 557, + [578] = 554, + [579] = 392, + [580] = 403, + [581] = 557, + [582] = 554, + [583] = 554, + [584] = 392, + [585] = 403, + [586] = 557, + [587] = 341, + [588] = 554, + [589] = 392, + [590] = 403, + [591] = 557, + [592] = 554, + [593] = 392, + [594] = 403, + [595] = 557, + [596] = 323, + [597] = 351, + [598] = 352, + [599] = 353, + [600] = 354, + [601] = 573, + [602] = 341, + [603] = 355, + [604] = 573, + [605] = 341, + [606] = 573, + [607] = 341, + [608] = 573, + [609] = 341, + [610] = 573, + [611] = 341, + [612] = 573, + [613] = 341, + [614] = 573, + [615] = 341, + [616] = 573, + [617] = 350, + [618] = 346, + [619] = 342, + [620] = 347, + [621] = 343, + [622] = 345, + [623] = 343, + [624] = 346, + [625] = 347, + [626] = 345, + [627] = 335, + [628] = 342, + [629] = 347, [630] = 312, - [631] = 311, - [632] = 595, - [633] = 306, - [634] = 595, - [635] = 309, - [636] = 598, - [637] = 599, - [638] = 596, - [639] = 312, - [640] = 311, - [641] = 307, - [642] = 312, - [643] = 599, - [644] = 306, - [645] = 600, - [646] = 600, - [647] = 308, - [648] = 306, - [649] = 309, - [650] = 599, - [651] = 595, - [652] = 600, - [653] = 653, - [654] = 612, - [655] = 314, - [656] = 612, - [657] = 314, - [658] = 614, - [659] = 653, - [660] = 314, - [661] = 614, - [662] = 653, - [663] = 653, - [664] = 612, - [665] = 314, - [666] = 614, - [667] = 667, - [668] = 668, - [669] = 314, - [670] = 595, - [671] = 598, - [672] = 600, - [673] = 599, - [674] = 600, - [675] = 675, + [631] = 312, + [632] = 312, + [633] = 633, + [634] = 312, + [635] = 312, + [636] = 636, + [637] = 346, + [638] = 332, + [639] = 343, + [640] = 640, + [641] = 342, + [642] = 329, + [643] = 345, + [644] = 318, + [645] = 640, + [646] = 315, + [647] = 318, + [648] = 319, + [649] = 315, + [650] = 316, + [651] = 318, + [652] = 319, + [653] = 319, + [654] = 636, + [655] = 316, + [656] = 315, + [657] = 318, + [658] = 332, + [659] = 318, + [660] = 316, + [661] = 329, + [662] = 633, + [663] = 319, + [664] = 633, + [665] = 335, + [666] = 316, + [667] = 315, + [668] = 319, + [669] = 640, + [670] = 636, + [671] = 316, + [672] = 636, + [673] = 633, + [674] = 315, + [675] = 640, [676] = 676, - [677] = 677, - [678] = 596, - [679] = 600, - [680] = 596, - [681] = 596, - [682] = 595, - [683] = 600, - [684] = 598, - [685] = 599, - [686] = 599, - [687] = 687, - [688] = 688, - [689] = 599, - [690] = 596, - [691] = 598, - [692] = 595, - [693] = 595, - [694] = 598, - [695] = 599, - [696] = 600, - [697] = 596, - [698] = 598, - [699] = 595, - [700] = 700, - [701] = 701, - [702] = 677, - [703] = 675, - [704] = 700, - [705] = 676, - [706] = 677, - [707] = 701, - [708] = 701, - [709] = 700, - [710] = 701, - [711] = 677, - [712] = 700, - [713] = 653, - [714] = 701, - [715] = 687, - [716] = 700, - [717] = 700, - [718] = 701, - [719] = 700, - [720] = 612, - [721] = 701, - [722] = 700, - [723] = 701, - [724] = 700, - [725] = 700, - [726] = 701, - [727] = 612, - [728] = 700, - [729] = 701, - [730] = 700, - [731] = 701, - [732] = 701, - [733] = 700, - [734] = 676, - [735] = 701, - [736] = 700, - [737] = 688, - [738] = 701, - [739] = 700, - [740] = 612, - [741] = 701, - [742] = 701, - [743] = 700, - [744] = 614, - [745] = 701, - [746] = 700, - [747] = 701, - [748] = 701, - [749] = 701, - [750] = 700, - [751] = 701, - [752] = 614, - [753] = 701, - [754] = 700, - [755] = 701, - [756] = 700, - [757] = 700, - [758] = 701, - [759] = 700, - [760] = 701, - [761] = 700, - [762] = 701, - [763] = 614, - [764] = 700, - [765] = 653, - [766] = 701, - [767] = 700, - [768] = 701, - [769] = 700, - [770] = 701, - [771] = 700, - [772] = 701, - [773] = 687, - [774] = 700, - [775] = 701, - [776] = 700, - [777] = 688, - [778] = 700, - [779] = 688, - [780] = 701, - [781] = 701, - [782] = 653, - [783] = 700, - [784] = 701, - [785] = 612, - [786] = 700, - [787] = 700, - [788] = 701, - [789] = 614, - [790] = 700, - [791] = 675, - [792] = 675, - [793] = 687, - [794] = 653, - [795] = 676, - [796] = 612, - [797] = 701, - [798] = 700, - [799] = 653, - [800] = 614, - [801] = 700, - [802] = 687, - [803] = 687, - [804] = 688, - [805] = 687, - [806] = 676, - [807] = 677, - [808] = 688, - [809] = 675, - [810] = 675, - [811] = 676, - [812] = 677, - [813] = 675, - [814] = 687, - [815] = 688, - [816] = 676, - [817] = 675, - [818] = 676, - [819] = 677, - [820] = 688, - [821] = 688, - [822] = 675, - [823] = 676, - [824] = 677, - [825] = 677, - [826] = 687, - [827] = 827, - [828] = 827, - [829] = 829, - [830] = 829, - [831] = 829, - [832] = 827, - [833] = 829, - [834] = 827, - [835] = 827, - [836] = 827, - [837] = 829, - [838] = 829, - [839] = 827, - [840] = 827, - [841] = 827, - [842] = 827, - [843] = 829, - [844] = 827, - [845] = 829, - [846] = 827, - [847] = 829, - [848] = 829, - [849] = 827, - [850] = 827, - [851] = 829, - [852] = 829, - [853] = 827, - [854] = 829, - [855] = 829, - [856] = 829, - [857] = 827, - [858] = 829, - [859] = 827, - [860] = 829, - [861] = 827, - [862] = 829, - [863] = 827, - [864] = 829, - [865] = 829, - [866] = 829, - [867] = 829, - [868] = 827, - [869] = 827, - [870] = 827, - [871] = 827, - [872] = 827, - [873] = 829, - [874] = 829, - [875] = 829, - [876] = 829, - [877] = 827, - [878] = 827, - [879] = 829, - [880] = 829, - [881] = 829, - [882] = 827, - [883] = 827, - [884] = 829, - [885] = 829, - [886] = 829, - [887] = 829, - [888] = 827, - [889] = 829, - [890] = 827, - [891] = 827, - [892] = 827, - [893] = 827, - [894] = 829, - [895] = 829, - [896] = 827, - [897] = 827, - [898] = 827, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 899, - [906] = 900, - [907] = 901, - [908] = 902, - [909] = 901, - [910] = 910, - [911] = 903, - [912] = 904, - [913] = 899, - [914] = 900, - [915] = 903, - [916] = 901, - [917] = 902, - [918] = 918, - [919] = 904, - [920] = 903, - [921] = 904, - [922] = 899, - [923] = 900, - [924] = 899, + [677] = 342, + [678] = 346, + [679] = 679, + [680] = 680, + [681] = 681, + [682] = 346, + [683] = 347, + [684] = 343, + [685] = 342, + [686] = 686, + [687] = 345, + [688] = 343, + [689] = 345, + [690] = 346, + [691] = 347, + [692] = 342, + [693] = 342, + [694] = 343, + [695] = 345, + [696] = 343, + [697] = 346, + [698] = 347, + [699] = 345, + [700] = 347, + [701] = 346, + [702] = 342, + [703] = 347, + [704] = 343, + [705] = 345, + [706] = 640, + [707] = 679, + [708] = 680, + [709] = 686, + [710] = 332, + [711] = 680, + [712] = 332, + [713] = 676, + [714] = 676, + [715] = 681, + [716] = 681, + [717] = 329, + [718] = 679, + [719] = 686, + [720] = 329, + [721] = 686, + [722] = 633, + [723] = 640, + [724] = 335, + [725] = 636, + [726] = 676, + [727] = 636, + [728] = 633, + [729] = 332, + [730] = 329, + [731] = 633, + [732] = 633, + [733] = 640, + [734] = 640, + [735] = 335, + [736] = 335, + [737] = 636, + [738] = 335, + [739] = 679, + [740] = 332, + [741] = 329, + [742] = 636, + [743] = 680, + [744] = 633, + [745] = 332, + [746] = 640, + [747] = 335, + [748] = 636, + [749] = 329, + [750] = 681, + [751] = 751, + [752] = 751, + [753] = 753, + [754] = 751, + [755] = 753, + [756] = 751, + [757] = 751, + [758] = 758, + [759] = 753, + [760] = 753, + [761] = 753, + [762] = 751, + [763] = 751, + [764] = 751, + [765] = 753, + [766] = 753, + [767] = 751, + [768] = 753, + [769] = 751, + [770] = 751, + [771] = 753, + [772] = 751, + [773] = 753, + [774] = 753, + [775] = 751, + [776] = 751, + [777] = 753, + [778] = 751, + [779] = 753, + [780] = 751, + [781] = 753, + [782] = 753, + [783] = 753, + [784] = 753, + [785] = 751, + [786] = 751, + [787] = 751, + [788] = 753, + [789] = 751, + [790] = 753, + [791] = 751, + [792] = 753, + [793] = 753, + [794] = 753, + [795] = 751, + [796] = 753, + [797] = 751, + [798] = 753, + [799] = 751, + [800] = 753, + [801] = 751, + [802] = 751, + [803] = 751, + [804] = 753, + [805] = 751, + [806] = 751, + [807] = 751, + [808] = 753, + [809] = 753, + [810] = 751, + [811] = 753, + [812] = 753, + [813] = 751, + [814] = 753, + [815] = 751, + [816] = 751, + [817] = 753, + [818] = 753, + [819] = 753, + [820] = 751, + [821] = 751, + [822] = 753, + [823] = 753, + [824] = 753, + [825] = 751, + [826] = 676, + [827] = 680, + [828] = 681, + [829] = 686, + [830] = 679, + [831] = 676, + [832] = 681, + [833] = 679, + [834] = 686, + [835] = 676, + [836] = 681, + [837] = 680, + [838] = 686, + [839] = 676, + [840] = 681, + [841] = 686, + [842] = 679, + [843] = 680, + [844] = 680, + [845] = 680, + [846] = 676, + [847] = 681, + [848] = 686, + [849] = 679, + [850] = 679, + [851] = 851, + [852] = 852, + [853] = 851, + [854] = 851, + [855] = 851, + [856] = 851, + [857] = 851, + [858] = 852, + [859] = 852, + [860] = 851, + [861] = 852, + [862] = 852, + [863] = 852, + [864] = 851, + [865] = 852, + [866] = 852, + [867] = 852, + [868] = 851, + [869] = 851, + [870] = 851, + [871] = 851, + [872] = 851, + [873] = 851, + [874] = 852, + [875] = 851, + [876] = 851, + [877] = 852, + [878] = 852, + [879] = 852, + [880] = 851, + [881] = 852, + [882] = 851, + [883] = 852, + [884] = 852, + [885] = 851, + [886] = 852, + [887] = 852, + [888] = 851, + [889] = 851, + [890] = 852, + [891] = 852, + [892] = 852, + [893] = 851, + [894] = 852, + [895] = 852, + [896] = 851, + [897] = 851, + [898] = 852, + [899] = 852, + [900] = 851, + [901] = 852, + [902] = 851, + [903] = 852, + [904] = 851, + [905] = 851, + [906] = 851, + [907] = 851, + [908] = 851, + [909] = 852, + [910] = 851, + [911] = 852, + [912] = 851, + [913] = 851, + [914] = 852, + [915] = 852, + [916] = 851, + [917] = 851, + [918] = 851, + [919] = 852, + [920] = 852, + [921] = 852, + [922] = 852, + [923] = 852, + [924] = 852, [925] = 925, - [926] = 900, + [926] = 926, [927] = 927, - [928] = 901, - [929] = 902, - [930] = 930, - [931] = 903, - [932] = 904, - [933] = 899, - [934] = 900, - [935] = 901, - [936] = 901, - [937] = 902, - [938] = 902, - [939] = 901, - [940] = 903, - [941] = 904, - [942] = 899, - [943] = 900, - [944] = 902, - [945] = 901, - [946] = 902, - [947] = 947, - [948] = 903, - [949] = 904, - [950] = 903, - [951] = 904, - [952] = 899, - [953] = 900, - [954] = 900, + [928] = 928, + [929] = 929, + [930] = 928, + [931] = 931, + [932] = 932, + [933] = 929, + [934] = 926, + [935] = 931, + [936] = 932, + [937] = 937, + [938] = 928, + [939] = 937, + [940] = 931, + [941] = 932, + [942] = 929, + [943] = 928, + [944] = 926, + [945] = 926, + [946] = 926, + [947] = 931, + [948] = 932, + [949] = 937, + [950] = 931, + [951] = 932, + [952] = 937, + [953] = 929, + [954] = 928, [955] = 955, - [956] = 901, - [957] = 902, - [958] = 958, - [959] = 903, - [960] = 904, - [961] = 899, - [962] = 900, - [963] = 903, - [964] = 904, - [965] = 899, - [966] = 901, - [967] = 901, - [968] = 902, - [969] = 969, - [970] = 902, - [971] = 903, - [972] = 904, - [973] = 899, - [974] = 900, - [975] = 900, - [976] = 901, - [977] = 902, - [978] = 903, - [979] = 904, - [980] = 903, - [981] = 904, - [982] = 899, - [983] = 900, - [984] = 899, - [985] = 900, - [986] = 901, - [987] = 901, - [988] = 902, - [989] = 989, - [990] = 903, - [991] = 904, - [992] = 899, - [993] = 900, - [994] = 901, - [995] = 902, - [996] = 901, - [997] = 903, - [998] = 904, - [999] = 899, - [1000] = 900, - [1001] = 902, - [1002] = 903, - [1003] = 901, - [1004] = 902, - [1005] = 904, - [1006] = 903, - [1007] = 904, - [1008] = 899, - [1009] = 900, - [1010] = 899, - [1011] = 901, - [1012] = 900, - [1013] = 902, - [1014] = 901, - [1015] = 902, - [1016] = 901, - [1017] = 903, - [1018] = 904, - [1019] = 899, - [1020] = 900, - [1021] = 902, - [1022] = 1022, - [1023] = 902, - [1024] = 901, - [1025] = 902, - [1026] = 1026, - [1027] = 903, - [1028] = 904, - [1029] = 899, - [1030] = 900, - [1031] = 901, - [1032] = 902, - [1033] = 1033, - [1034] = 901, - [1035] = 902, - [1036] = 903, - [1037] = 904, - [1038] = 899, - [1039] = 900, - [1040] = 903, - [1041] = 903, - [1042] = 904, - [1043] = 899, - [1044] = 901, - [1045] = 902, - [1046] = 900, - [1047] = 904, - [1048] = 903, - [1049] = 904, - [1050] = 899, - [1051] = 900, - [1052] = 899, - [1053] = 1053, - [1054] = 901, - [1055] = 902, - [1056] = 900, - [1057] = 903, - [1058] = 904, - [1059] = 899, - [1060] = 900, - [1061] = 901, - [1062] = 902, - [1063] = 1063, - [1064] = 901, - [1065] = 902, - [1066] = 903, - [1067] = 903, - [1068] = 904, - [1069] = 899, - [1070] = 900, - [1071] = 904, - [1072] = 899, - [1073] = 900, - [1074] = 901, - [1075] = 902, - [1076] = 1076, - [1077] = 903, - [1078] = 904, - [1079] = 899, - [1080] = 900, - [1081] = 1081, - [1082] = 903, - [1083] = 901, - [1084] = 901, - [1085] = 902, - [1086] = 902, - [1087] = 903, - [1088] = 904, - [1089] = 899, - [1090] = 900, - [1091] = 904, - [1092] = 903, - [1093] = 901, - [1094] = 902, - [1095] = 904, - [1096] = 903, - [1097] = 904, - [1098] = 899, - [1099] = 900, - [1100] = 899, - [1101] = 903, - [1102] = 904, - [1103] = 899, - [1104] = 1104, - [1105] = 900, - [1106] = 1106, - [1107] = 900, - [1108] = 899, + [956] = 929, + [957] = 926, + [958] = 931, + [959] = 932, + [960] = 937, + [961] = 929, + [962] = 937, + [963] = 928, + [964] = 929, + [965] = 929, + [966] = 928, + [967] = 928, + [968] = 968, + [969] = 928, + [970] = 926, + [971] = 931, + [972] = 932, + [973] = 937, + [974] = 926, + [975] = 926, + [976] = 929, + [977] = 931, + [978] = 932, + [979] = 929, + [980] = 928, + [981] = 928, + [982] = 937, + [983] = 931, + [984] = 926, + [985] = 931, + [986] = 932, + [987] = 937, + [988] = 932, + [989] = 926, + [990] = 937, + [991] = 937, + [992] = 929, + [993] = 928, + [994] = 929, + [995] = 926, + [996] = 928, + [997] = 926, + [998] = 931, + [999] = 932, + [1000] = 937, + [1001] = 931, + [1002] = 932, + [1003] = 1003, + [1004] = 929, + [1005] = 928, + [1006] = 926, + [1007] = 937, + [1008] = 931, + [1009] = 926, + [1010] = 931, + [1011] = 932, + [1012] = 937, + [1013] = 931, + [1014] = 932, + [1015] = 937, + [1016] = 931, + [1017] = 926, + [1018] = 929, + [1019] = 929, + [1020] = 928, + [1021] = 928, + [1022] = 929, + [1023] = 928, + [1024] = 931, + [1025] = 929, + [1026] = 932, + [1027] = 928, + [1028] = 926, + [1029] = 931, + [1030] = 932, + [1031] = 937, + [1032] = 937, + [1033] = 937, + [1034] = 926, + [1035] = 931, + [1036] = 932, + [1037] = 926, + [1038] = 929, + [1039] = 937, + [1040] = 931, + [1041] = 932, + [1042] = 926, + [1043] = 931, + [1044] = 932, + [1045] = 929, + [1046] = 928, + [1047] = 928, + [1048] = 1048, + [1049] = 937, + [1050] = 937, + [1051] = 926, + [1052] = 931, + [1053] = 932, + [1054] = 937, + [1055] = 932, + [1056] = 929, + [1057] = 928, + [1058] = 1058, + [1059] = 1059, + [1060] = 929, + [1061] = 1061, + [1062] = 931, + [1063] = 932, + [1064] = 932, + [1065] = 937, + [1066] = 929, + [1067] = 928, + [1068] = 937, + [1069] = 926, + [1070] = 926, + [1071] = 926, + [1072] = 931, + [1073] = 932, + [1074] = 937, + [1075] = 929, + [1076] = 931, + [1077] = 932, + [1078] = 929, + [1079] = 928, + [1080] = 928, + [1081] = 929, + [1082] = 1082, + [1083] = 1083, + [1084] = 929, + [1085] = 928, + [1086] = 937, + [1087] = 928, + [1088] = 926, + [1089] = 926, + [1090] = 931, + [1091] = 932, + [1092] = 937, + [1093] = 931, + [1094] = 932, + [1095] = 937, + [1096] = 929, + [1097] = 926, + [1098] = 931, + [1099] = 929, + [1100] = 932, + [1101] = 929, + [1102] = 928, + [1103] = 937, + [1104] = 926, + [1105] = 931, + [1106] = 932, + [1107] = 1107, + [1108] = 937, [1109] = 1109, - [1110] = 900, - [1111] = 901, - [1112] = 902, - [1113] = 901, - [1114] = 902, - [1115] = 1115, - [1116] = 903, - [1117] = 904, - [1118] = 899, - [1119] = 900, - [1120] = 903, - [1121] = 904, - [1122] = 901, - [1123] = 902, - [1124] = 899, - [1125] = 903, - [1126] = 904, - [1127] = 899, - [1128] = 900, - [1129] = 900, - [1130] = 901, - [1131] = 902, - [1132] = 903, - [1133] = 904, - [1134] = 899, - [1135] = 902, - [1136] = 1033, - [1137] = 1081, - [1138] = 910, - [1139] = 969, - [1140] = 989, - [1141] = 1109, - [1142] = 1115, - [1143] = 1022, - [1144] = 1053, - [1145] = 1063, - [1146] = 1076, - [1147] = 925, - [1148] = 927, - [1149] = 930, - [1150] = 955, - [1151] = 958, - [1152] = 918, - [1153] = 947, - [1154] = 1026, - [1155] = 1106, - [1156] = 1156, - [1157] = 1156, - [1158] = 1156, - [1159] = 1156, - [1160] = 1156, - [1161] = 1156, - [1162] = 1156, - [1163] = 1156, - [1164] = 1156, - [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 1168, - [1169] = 1169, - [1170] = 1165, - [1171] = 1168, - [1172] = 1166, - [1173] = 925, + [1110] = 928, + [1111] = 1111, + [1112] = 1112, + [1113] = 929, + [1114] = 928, + [1115] = 931, + [1116] = 1116, + [1117] = 926, + [1118] = 926, + [1119] = 931, + [1120] = 929, + [1121] = 928, + [1122] = 932, + [1123] = 937, + [1124] = 929, + [1125] = 928, + [1126] = 928, + [1127] = 1127, + [1128] = 929, + [1129] = 1129, + [1130] = 931, + [1131] = 1131, + [1132] = 929, + [1133] = 928, + [1134] = 932, + [1135] = 929, + [1136] = 926, + [1137] = 926, + [1138] = 931, + [1139] = 932, + [1140] = 937, + [1141] = 931, + [1142] = 926, + [1143] = 931, + [1144] = 928, + [1145] = 932, + [1146] = 937, + [1147] = 932, + [1148] = 937, + [1149] = 929, + [1150] = 928, + [1151] = 928, + [1152] = 1152, + [1153] = 929, + [1154] = 937, + [1155] = 928, + [1156] = 926, + [1157] = 931, + [1158] = 932, + [1159] = 926, + [1160] = 931, + [1161] = 932, + [1162] = 937, + [1163] = 937, + [1164] = 1164, + [1165] = 932, + [1166] = 926, + [1167] = 926, + [1168] = 1107, + [1169] = 1164, + [1170] = 1129, + [1171] = 1127, + [1172] = 1082, + [1173] = 1111, [1174] = 1109, - [1175] = 1175, - [1176] = 1176, - [1177] = 1169, - [1178] = 1178, - [1179] = 1168, - [1180] = 1166, - [1181] = 1181, - [1182] = 1076, - [1183] = 947, - [1184] = 1115, - [1185] = 1063, - [1186] = 1168, - [1187] = 1022, - [1188] = 1053, - [1189] = 1165, - [1190] = 1169, - [1191] = 1181, - [1192] = 1181, - [1193] = 1165, - [1194] = 1167, - [1195] = 1167, - [1196] = 1196, - [1197] = 1181, - [1198] = 910, - [1199] = 955, - [1200] = 1026, + [1175] = 1152, + [1176] = 1061, + [1177] = 1058, + [1178] = 1131, + [1179] = 1048, + [1180] = 1003, + [1181] = 968, + [1182] = 1116, + [1183] = 925, + [1184] = 955, + [1185] = 1059, + [1186] = 927, + [1187] = 1083, + [1188] = 1188, + [1189] = 1188, + [1190] = 1188, + [1191] = 1188, + [1192] = 1188, + [1193] = 1188, + [1194] = 1188, + [1195] = 1188, + [1196] = 1188, + [1197] = 1197, + [1198] = 680, + [1199] = 679, + [1200] = 1200, [1201] = 1201, - [1202] = 1168, - [1203] = 1165, - [1204] = 1033, - [1205] = 687, - [1206] = 969, - [1207] = 1207, - [1208] = 1169, - [1209] = 1169, + [1202] = 1197, + [1203] = 1203, + [1204] = 1197, + [1205] = 679, + [1206] = 1201, + [1207] = 1200, + [1208] = 680, + [1209] = 1209, [1210] = 1210, - [1211] = 1167, - [1212] = 1166, - [1213] = 989, - [1214] = 918, - [1215] = 1166, - [1216] = 930, - [1217] = 927, - [1218] = 688, - [1219] = 1219, - [1220] = 1220, - [1221] = 1081, - [1222] = 1081, - [1223] = 1178, - [1224] = 1201, - [1225] = 1219, - [1226] = 1176, - [1227] = 1165, - [1228] = 1220, - [1229] = 1210, - [1230] = 1219, - [1231] = 1210, - [1232] = 1201, - [1233] = 1220, - [1234] = 1166, - [1235] = 1207, - [1236] = 1022, - [1237] = 1178, - [1238] = 1207, - [1239] = 918, - [1240] = 947, - [1241] = 1026, - [1242] = 1168, - [1243] = 1033, - [1244] = 1081, - [1245] = 1115, - [1246] = 1169, - [1247] = 1210, - [1248] = 910, - [1249] = 1175, - [1250] = 918, - [1251] = 947, - [1252] = 969, - [1253] = 989, - [1254] = 1026, - [1255] = 1109, - [1256] = 1115, - [1257] = 989, - [1258] = 1022, - [1259] = 1033, - [1260] = 1260, - [1261] = 1261, - [1262] = 1053, - [1263] = 1063, - [1264] = 1175, - [1265] = 1076, - [1266] = 1266, - [1267] = 688, - [1268] = 1033, - [1269] = 1053, - [1270] = 1081, - [1271] = 910, - [1272] = 1272, - [1273] = 925, - [1274] = 1063, - [1275] = 927, - [1276] = 930, - [1277] = 1076, - [1278] = 1081, - [1279] = 1176, - [1280] = 1272, - [1281] = 1219, - [1282] = 1168, - [1283] = 1220, - [1284] = 1207, - [1285] = 955, - [1286] = 687, - [1287] = 1272, - [1288] = 1219, - [1289] = 1272, - [1290] = 1165, - [1291] = 969, - [1292] = 989, - [1293] = 1026, - [1294] = 1207, - [1295] = 1109, - [1296] = 1109, - [1297] = 688, - [1298] = 910, - [1299] = 925, - [1300] = 1115, - [1301] = 927, - [1302] = 930, - [1303] = 1303, - [1304] = 1304, - [1305] = 1305, - [1306] = 1022, - [1307] = 1053, - [1308] = 1220, - [1309] = 1063, - [1310] = 1310, - [1311] = 1201, - [1312] = 1312, - [1313] = 1210, - [1314] = 918, - [1315] = 1315, - [1316] = 1316, - [1317] = 918, - [1318] = 947, - [1319] = 1165, - [1320] = 1026, - [1321] = 955, - [1322] = 1166, - [1323] = 1033, - [1324] = 1076, - [1325] = 910, - [1326] = 969, - [1327] = 687, - [1328] = 989, - [1329] = 1178, - [1330] = 1109, - [1331] = 1115, - [1332] = 1168, - [1333] = 947, - [1334] = 925, - [1335] = 927, - [1336] = 930, - [1337] = 687, - [1338] = 688, - [1339] = 1022, - [1340] = 955, - [1341] = 1175, - [1342] = 1169, - [1343] = 1053, - [1344] = 1063, - [1345] = 1076, - [1346] = 1169, - [1347] = 1176, - [1348] = 925, - [1349] = 927, - [1350] = 969, - [1351] = 930, - [1352] = 955, - [1353] = 1175, - [1354] = 1176, - [1355] = 1201, - [1356] = 1166, - [1357] = 1063, - [1358] = 1167, - [1359] = 1165, - [1360] = 1266, - [1361] = 1165, - [1362] = 989, - [1363] = 1165, - [1364] = 1312, - [1365] = 918, - [1366] = 955, - [1367] = 1315, - [1368] = 1210, - [1369] = 1175, - [1370] = 1166, - [1371] = 1168, - [1372] = 1176, - [1373] = 1305, - [1374] = 1168, - [1375] = 1026, - [1376] = 1376, - [1377] = 1166, - [1378] = 1109, - [1379] = 1303, - [1380] = 955, - [1381] = 1210, - [1382] = 1260, - [1383] = 1383, - [1384] = 1166, - [1385] = 1115, - [1386] = 1266, - [1387] = 925, - [1388] = 1388, - [1389] = 947, - [1390] = 1168, - [1391] = 927, - [1392] = 1169, - [1393] = 1175, - [1394] = 1175, - [1395] = 1201, - [1396] = 1169, - [1397] = 1169, - [1398] = 1305, - [1399] = 1176, - [1400] = 1310, - [1401] = 1201, - [1402] = 1303, - [1403] = 1167, - [1404] = 1304, - [1405] = 1405, - [1406] = 1169, - [1407] = 1407, - [1408] = 1207, - [1409] = 969, - [1410] = 1219, - [1411] = 1315, - [1412] = 1305, - [1413] = 1166, - [1414] = 1312, - [1415] = 1167, - [1416] = 1220, - [1417] = 1315, - [1418] = 1167, - [1419] = 1303, - [1420] = 1304, - [1421] = 1207, - [1422] = 1316, - [1423] = 930, - [1424] = 910, - [1425] = 1022, - [1426] = 1310, - [1427] = 1260, - [1428] = 1201, - [1429] = 918, - [1430] = 1168, - [1431] = 1316, - [1432] = 947, - [1433] = 930, - [1434] = 1207, - [1435] = 1303, - [1436] = 1176, - [1437] = 955, - [1438] = 1312, - [1439] = 1026, - [1440] = 1169, - [1441] = 1315, - [1442] = 1033, - [1443] = 1033, - [1444] = 1165, - [1445] = 1165, - [1446] = 1053, - [1447] = 1310, - [1448] = 1304, - [1449] = 1304, - [1450] = 1316, - [1451] = 1081, - [1452] = 1261, - [1453] = 1220, - [1454] = 1210, - [1455] = 1219, - [1456] = 1220, - [1457] = 910, - [1458] = 969, - [1459] = 989, - [1460] = 1109, - [1461] = 1063, - [1462] = 1167, - [1463] = 1305, - [1464] = 1076, - [1465] = 1260, - [1466] = 1115, - [1467] = 1022, - [1468] = 1053, - [1469] = 1316, - [1470] = 918, - [1471] = 947, - [1472] = 1026, - [1473] = 1310, - [1474] = 1168, - [1475] = 1081, - [1476] = 930, - [1477] = 1076, - [1478] = 1033, - [1479] = 925, - [1480] = 1081, - [1481] = 927, - [1482] = 1261, - [1483] = 910, - [1484] = 1261, - [1485] = 1266, - [1486] = 969, - [1487] = 989, - [1488] = 1109, - [1489] = 1115, - [1490] = 1022, - [1491] = 1053, - [1492] = 1063, - [1493] = 1076, - [1494] = 1166, - [1495] = 925, - [1496] = 927, - [1497] = 1312, - [1498] = 1219, - [1499] = 1063, - [1500] = 1304, - [1501] = 969, - [1502] = 989, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1201, + [1215] = 1200, + [1216] = 1152, + [1217] = 1061, + [1218] = 1197, + [1219] = 1201, + [1220] = 1107, + [1221] = 1129, + [1222] = 1200, + [1223] = 1111, + [1224] = 955, + [1225] = 1164, + [1226] = 968, + [1227] = 1003, + [1228] = 1083, + [1229] = 1109, + [1230] = 1116, + [1231] = 1127, + [1232] = 1131, + [1233] = 1048, + [1234] = 1058, + [1235] = 1059, + [1236] = 1201, + [1237] = 1200, + [1238] = 927, + [1239] = 1116, + [1240] = 1129, + [1241] = 1111, + [1242] = 955, + [1243] = 1164, + [1244] = 968, + [1245] = 1003, + [1246] = 1201, + [1247] = 1083, + [1248] = 1109, + [1249] = 1116, + [1250] = 1127, + [1251] = 1200, + [1252] = 1131, + [1253] = 1048, + [1254] = 1058, + [1255] = 1059, + [1256] = 1256, + [1257] = 1164, + [1258] = 1258, + [1259] = 1203, + [1260] = 927, + [1261] = 1209, + [1262] = 1210, + [1263] = 1209, + [1264] = 1211, + [1265] = 1152, + [1266] = 1210, + [1267] = 968, + [1268] = 1212, + [1269] = 1213, + [1270] = 1211, + [1271] = 679, + [1272] = 680, + [1273] = 1209, + [1274] = 1274, + [1275] = 1275, + [1276] = 1210, + [1277] = 1201, + [1278] = 1212, + [1279] = 1200, + [1280] = 1213, + [1281] = 1211, + [1282] = 1003, + [1283] = 1212, + [1284] = 1213, + [1285] = 679, + [1286] = 680, + [1287] = 1287, + [1288] = 1288, + [1289] = 1289, + [1290] = 1290, + [1291] = 1291, + [1292] = 1152, + [1293] = 1152, + [1294] = 1061, + [1295] = 927, + [1296] = 1201, + [1297] = 1107, + [1298] = 1129, + [1299] = 1211, + [1300] = 1111, + [1301] = 1152, + [1302] = 1061, + [1303] = 955, + [1304] = 1164, + [1305] = 927, + [1306] = 968, + [1307] = 1003, + [1308] = 1083, + [1309] = 1107, + [1310] = 1109, + [1311] = 1116, + [1312] = 1127, + [1313] = 1129, + [1314] = 1111, + [1315] = 1131, + [1316] = 1048, + [1317] = 1058, + [1318] = 1059, + [1319] = 955, + [1320] = 1164, + [1321] = 968, + [1322] = 1003, + [1323] = 1083, + [1324] = 1109, + [1325] = 1116, + [1326] = 1127, + [1327] = 1131, + [1328] = 1048, + [1329] = 1058, + [1330] = 1059, + [1331] = 1209, + [1332] = 1256, + [1333] = 1256, + [1334] = 1061, + [1335] = 1256, + [1336] = 1083, + [1337] = 1203, + [1338] = 1061, + [1339] = 1339, + [1340] = 1107, + [1341] = 1109, + [1342] = 955, + [1343] = 1059, + [1344] = 1127, + [1345] = 1129, + [1346] = 1210, + [1347] = 927, + [1348] = 1212, + [1349] = 1107, + [1350] = 1203, + [1351] = 679, + [1352] = 1111, + [1353] = 1131, + [1354] = 1048, + [1355] = 1058, + [1356] = 1213, + [1357] = 680, + [1358] = 1200, + [1359] = 1129, + [1360] = 1210, + [1361] = 1111, + [1362] = 1131, + [1363] = 1048, + [1364] = 1058, + [1365] = 1211, + [1366] = 1212, + [1367] = 1213, + [1368] = 1059, + [1369] = 1152, + [1370] = 1061, + [1371] = 927, + [1372] = 1107, + [1373] = 1129, + [1374] = 1111, + [1375] = 1210, + [1376] = 955, + [1377] = 1164, + [1378] = 968, + [1379] = 1003, + [1380] = 1083, + [1381] = 1109, + [1382] = 1116, + [1383] = 1127, + [1384] = 1384, + [1385] = 1131, + [1386] = 1048, + [1387] = 1058, + [1388] = 1059, + [1389] = 1389, + [1390] = 1390, + [1391] = 1391, + [1392] = 1209, + [1393] = 1287, + [1394] = 1288, + [1395] = 1289, + [1396] = 1210, + [1397] = 1290, + [1398] = 1291, + [1399] = 1212, + [1400] = 1211, + [1401] = 1213, + [1402] = 1211, + [1403] = 1212, + [1404] = 1287, + [1405] = 1213, + [1406] = 1288, + [1407] = 1289, + [1408] = 1201, + [1409] = 1290, + [1410] = 1291, + [1411] = 1200, + [1412] = 1209, + [1413] = 1152, + [1414] = 1414, + [1415] = 1061, + [1416] = 955, + [1417] = 1164, + [1418] = 927, + [1419] = 968, + [1420] = 1152, + [1421] = 1061, + [1422] = 927, + [1423] = 1197, + [1424] = 1129, + [1425] = 1111, + [1426] = 955, + [1427] = 1164, + [1428] = 968, + [1429] = 1003, + [1430] = 1083, + [1431] = 1109, + [1432] = 1116, + [1433] = 1127, + [1434] = 1131, + [1435] = 1048, + [1436] = 1058, + [1437] = 1059, + [1438] = 1201, + [1439] = 1003, + [1440] = 1201, + [1441] = 1258, + [1442] = 1274, + [1443] = 1275, + [1444] = 1200, + [1445] = 1197, + [1446] = 1197, + [1447] = 1201, + [1448] = 1200, + [1449] = 1200, + [1450] = 1258, + [1451] = 1209, + [1452] = 1287, + [1453] = 1197, + [1454] = 1274, + [1455] = 1288, + [1456] = 1289, + [1457] = 1275, + [1458] = 1083, + [1459] = 1258, + [1460] = 1274, + [1461] = 1275, + [1462] = 1201, + [1463] = 1107, + [1464] = 1290, + [1465] = 1291, + [1466] = 1109, + [1467] = 1467, + [1468] = 1467, + [1469] = 1200, + [1470] = 1467, + [1471] = 1116, + [1472] = 1467, + [1473] = 1197, + [1474] = 1287, + [1475] = 1288, + [1476] = 1289, + [1477] = 1290, + [1478] = 1291, + [1479] = 1127, + [1480] = 1107, + [1481] = 1127, + [1482] = 968, + [1483] = 968, + [1484] = 1003, + [1485] = 1209, + [1486] = 1210, + [1487] = 955, + [1488] = 1003, + [1489] = 1131, + [1490] = 1211, + [1491] = 1048, + [1492] = 1212, + [1493] = 1414, + [1494] = 1213, + [1495] = 679, + [1496] = 1058, + [1497] = 1384, + [1498] = 679, + [1499] = 1059, + [1500] = 1209, + [1501] = 1083, + [1502] = 1287, [1503] = 1109, - [1504] = 1115, - [1505] = 1022, - [1506] = 1053, - [1507] = 1076, - [1508] = 925, - [1509] = 927, - [1510] = 930, - [1511] = 955, - [1512] = 1201, - [1513] = 1201, - [1514] = 1210, - [1515] = 1376, - [1516] = 1388, - [1517] = 1305, - [1518] = 1210, - [1519] = 918, - [1520] = 1178, - [1521] = 947, - [1522] = 969, - [1523] = 1383, - [1524] = 1312, - [1525] = 1165, - [1526] = 989, - [1527] = 1026, - [1528] = 1109, - [1529] = 1115, - [1530] = 1207, - [1531] = 1219, - [1532] = 1220, - [1533] = 1166, - [1534] = 1022, - [1535] = 918, - [1536] = 1178, - [1537] = 947, - [1538] = 969, - [1539] = 687, - [1540] = 1033, - [1541] = 1053, - [1542] = 989, - [1543] = 1026, - [1544] = 1109, - [1545] = 1115, - [1546] = 1063, - [1547] = 1076, - [1548] = 1081, - [1549] = 1388, - [1550] = 1207, - [1551] = 1022, - [1552] = 1303, - [1553] = 1033, - [1554] = 1053, - [1555] = 1063, - [1556] = 1076, - [1557] = 1081, - [1558] = 1219, - [1559] = 910, - [1560] = 925, + [1504] = 1288, + [1505] = 1289, + [1506] = 1116, + [1507] = 1127, + [1508] = 1203, + [1509] = 1131, + [1510] = 1048, + [1511] = 1058, + [1512] = 1212, + [1513] = 1059, + [1514] = 1201, + [1515] = 1200, + [1516] = 680, + [1517] = 1152, + [1518] = 1061, + [1519] = 927, + [1520] = 1201, + [1521] = 1287, + [1522] = 1288, + [1523] = 1289, + [1524] = 1201, + [1525] = 1290, + [1526] = 1291, + [1527] = 1083, + [1528] = 1107, + [1529] = 1109, + [1530] = 1116, + [1531] = 1127, + [1532] = 1129, + [1533] = 1200, + [1534] = 1288, + [1535] = 1290, + [1536] = 1201, + [1537] = 1210, + [1538] = 1384, + [1539] = 1291, + [1540] = 1212, + [1541] = 1111, + [1542] = 1131, + [1543] = 1048, + [1544] = 1058, + [1545] = 1200, + [1546] = 1213, + [1547] = 1059, + [1548] = 1384, + [1549] = 1290, + [1550] = 1291, + [1551] = 1211, + [1552] = 1209, + [1553] = 1389, + [1554] = 1211, + [1555] = 1152, + [1556] = 1203, + [1557] = 1061, + [1558] = 955, + [1559] = 1210, + [1560] = 1164, [1561] = 927, - [1562] = 930, - [1563] = 688, - [1564] = 910, - [1565] = 955, - [1566] = 925, - [1567] = 927, - [1568] = 930, - [1569] = 1220, - [1570] = 1178, - [1571] = 687, - [1572] = 1315, - [1573] = 955, - [1574] = 1376, - [1575] = 1383, - [1576] = 688, - [1577] = 1405, - [1578] = 1407, - [1579] = 687, - [1580] = 1201, - [1581] = 1405, - [1582] = 1175, - [1583] = 1316, - [1584] = 1210, - [1585] = 918, - [1586] = 1178, - [1587] = 1176, - [1588] = 947, - [1589] = 969, - [1590] = 688, - [1591] = 1388, - [1592] = 1165, - [1593] = 989, - [1594] = 1026, - [1595] = 1109, - [1596] = 1115, - [1597] = 1166, - [1598] = 1022, - [1599] = 1175, - [1600] = 910, - [1601] = 1176, - [1602] = 1033, - [1603] = 1053, - [1604] = 1063, - [1605] = 1076, - [1606] = 1081, - [1607] = 1169, - [1608] = 1175, - [1609] = 1176, - [1610] = 1219, - [1611] = 1303, - [1612] = 1304, - [1613] = 1305, - [1614] = 1310, - [1615] = 1312, - [1616] = 1315, - [1617] = 1316, - [1618] = 910, - [1619] = 1165, - [1620] = 1168, - [1621] = 925, - [1622] = 1376, - [1623] = 1166, - [1624] = 1169, - [1625] = 1383, - [1626] = 927, - [1627] = 1405, - [1628] = 1407, - [1629] = 687, - [1630] = 1165, - [1631] = 1168, - [1632] = 930, - [1633] = 1166, - [1634] = 1169, - [1635] = 688, - [1636] = 1310, - [1637] = 687, - [1638] = 1407, - [1639] = 1168, - [1640] = 1220, - [1641] = 1169, - [1642] = 688, - [1643] = 1175, - [1644] = 1176, - [1645] = 955, - [1646] = 1175, - [1647] = 1176, - [1648] = 1201, - [1649] = 1207, + [1562] = 968, + [1563] = 1003, + [1564] = 1414, + [1565] = 1287, + [1566] = 1389, + [1567] = 1083, + [1568] = 1107, + [1569] = 1109, + [1570] = 1116, + [1571] = 1127, + [1572] = 1129, + [1573] = 679, + [1574] = 1390, + [1575] = 1212, + [1576] = 1111, + [1577] = 1131, + [1578] = 1048, + [1579] = 1058, + [1580] = 1391, + [1581] = 1107, + [1582] = 1213, + [1583] = 1059, + [1584] = 679, + [1585] = 1211, + [1586] = 1152, + [1587] = 1201, + [1588] = 1061, + [1589] = 1200, + [1590] = 1203, + [1591] = 680, + [1592] = 1129, + [1593] = 679, + [1594] = 1389, + [1595] = 1213, + [1596] = 1209, + [1597] = 927, + [1598] = 1211, + [1599] = 1152, + [1600] = 1414, + [1601] = 1200, + [1602] = 1111, + [1603] = 1061, + [1604] = 1111, + [1605] = 680, + [1606] = 1129, + [1607] = 955, + [1608] = 1289, + [1609] = 680, + [1610] = 1390, + [1611] = 1210, + [1612] = 1164, + [1613] = 1391, + [1614] = 1390, + [1615] = 1212, + [1616] = 1107, + [1617] = 1209, + [1618] = 955, + [1619] = 1213, + [1620] = 968, + [1621] = 1003, + [1622] = 1152, + [1623] = 1203, + [1624] = 1083, + [1625] = 1061, + [1626] = 955, + [1627] = 1164, + [1628] = 1109, + [1629] = 1164, + [1630] = 927, + [1631] = 968, + [1632] = 1003, + [1633] = 1164, + [1634] = 927, + [1635] = 1083, + [1636] = 1107, + [1637] = 1109, + [1638] = 1116, + [1639] = 680, + [1640] = 1129, + [1641] = 1116, + [1642] = 1391, + [1643] = 1111, + [1644] = 1131, + [1645] = 1048, + [1646] = 1058, + [1647] = 1059, + [1648] = 1127, + [1649] = 1203, [1650] = 1210, - [1651] = 1219, - [1652] = 1220, - [1653] = 1178, - [1654] = 1201, - [1655] = 1303, - [1656] = 1304, - [1657] = 1305, - [1658] = 1310, - [1659] = 1207, - [1660] = 1312, - [1661] = 1315, - [1662] = 1316, - [1663] = 1210, - [1664] = 918, - [1665] = 947, - [1666] = 1165, - [1667] = 1026, - [1668] = 1033, - [1669] = 1081, - [1670] = 1166, - [1671] = 1219, - [1672] = 910, - [1673] = 1220, - [1674] = 969, - [1675] = 989, - [1676] = 1109, - [1677] = 1115, - [1678] = 1022, - [1679] = 1053, - [1680] = 1063, - [1681] = 1076, - [1682] = 925, - [1683] = 927, - [1684] = 930, - [1685] = 955, - [1686] = 1168, - [1687] = 1169, - [1688] = 918, - [1689] = 947, - [1690] = 1026, - [1691] = 1168, - [1692] = 1033, - [1693] = 1081, - [1694] = 1207, - [1695] = 1053, - [1696] = 1176, - [1697] = 1697, - [1698] = 1260, - [1699] = 1261, - [1700] = 1266, - [1701] = 918, - [1702] = 1303, - [1703] = 947, - [1704] = 1304, - [1705] = 1026, - [1706] = 1305, - [1707] = 1310, - [1708] = 1033, - [1709] = 1312, - [1710] = 1315, - [1711] = 1697, - [1712] = 1712, - [1713] = 1316, - [1714] = 1303, - [1715] = 1081, - [1716] = 910, - [1717] = 918, - [1718] = 1304, - [1719] = 1260, - [1720] = 1261, - [1721] = 1266, - [1722] = 1305, - [1723] = 947, - [1724] = 1310, - [1725] = 969, - [1726] = 1312, - [1727] = 1315, - [1728] = 1728, - [1729] = 1175, - [1730] = 1316, - [1731] = 1303, - [1732] = 1304, - [1733] = 1168, - [1734] = 1305, - [1735] = 1176, - [1736] = 1310, - [1737] = 1169, - [1738] = 1312, - [1739] = 1315, - [1740] = 1260, - [1741] = 1316, - [1742] = 1261, - [1743] = 1266, - [1744] = 1697, - [1745] = 989, - [1746] = 1712, - [1747] = 1201, - [1748] = 1210, - [1749] = 1026, - [1750] = 1109, - [1751] = 1175, - [1752] = 1207, - [1753] = 1176, - [1754] = 1219, - [1755] = 1220, - [1756] = 1201, - [1757] = 1115, - [1758] = 1022, - [1759] = 1175, - [1760] = 1207, - [1761] = 1176, - [1762] = 1201, - [1763] = 1210, - [1764] = 918, - [1765] = 1033, - [1766] = 947, - [1767] = 1220, - [1768] = 1026, - [1769] = 1697, - [1770] = 1063, - [1771] = 1033, - [1772] = 1081, - [1773] = 1207, - [1774] = 1175, - [1775] = 1219, - [1776] = 910, - [1777] = 1220, - [1778] = 1210, - [1779] = 1303, - [1780] = 969, - [1781] = 1304, - [1782] = 989, - [1783] = 1109, - [1784] = 1115, - [1785] = 1305, - [1786] = 1022, - [1787] = 1076, - [1788] = 1310, - [1789] = 1053, - [1790] = 1063, - [1791] = 1076, - [1792] = 1712, - [1793] = 1312, - [1794] = 1219, - [1795] = 1219, - [1796] = 925, - [1797] = 927, - [1798] = 930, - [1799] = 1316, - [1800] = 1220, - [1801] = 955, - [1802] = 918, - [1803] = 1303, - [1804] = 947, - [1805] = 1081, - [1806] = 1304, - [1807] = 1026, - [1808] = 1305, - [1809] = 1310, - [1810] = 1033, - [1811] = 1081, - [1812] = 910, - [1813] = 1312, - [1814] = 1315, - [1815] = 910, - [1816] = 1316, - [1817] = 925, - [1818] = 969, - [1819] = 989, - [1820] = 1109, - [1821] = 1115, - [1822] = 1022, - [1823] = 1053, - [1824] = 1063, - [1825] = 1076, - [1826] = 927, - [1827] = 925, - [1828] = 927, - [1829] = 930, - [1830] = 955, - [1831] = 930, - [1832] = 918, - [1833] = 947, - [1834] = 1026, - [1835] = 1033, - [1836] = 1081, - [1837] = 955, - [1838] = 910, - [1839] = 969, - [1840] = 989, - [1841] = 1109, - [1842] = 1115, - [1843] = 1022, - [1844] = 1053, - [1845] = 1063, - [1846] = 1076, - [1847] = 925, - [1848] = 927, - [1849] = 930, - [1850] = 955, - [1851] = 1712, - [1852] = 1260, - [1853] = 1261, - [1854] = 1266, - [1855] = 1260, - [1856] = 1261, - [1857] = 1266, - [1858] = 969, - [1859] = 989, - [1860] = 1109, - [1861] = 1201, - [1862] = 1176, - [1863] = 1115, - [1864] = 1022, - [1865] = 1053, - [1866] = 1063, - [1867] = 1076, - [1868] = 1207, - [1869] = 925, - [1870] = 927, - [1871] = 1201, - [1872] = 1210, - [1873] = 930, - [1874] = 1207, - [1875] = 955, - [1876] = 1219, - [1877] = 1220, - [1878] = 1175, - [1879] = 1210, - [1880] = 1315, - [1881] = 1383, - [1882] = 1310, - [1883] = 1053, - [1884] = 1063, - [1885] = 1076, - [1886] = 1312, - [1887] = 1312, - [1888] = 1315, - [1889] = 927, - [1890] = 930, - [1891] = 1316, - [1892] = 955, - [1893] = 1388, - [1894] = 1303, - [1895] = 1304, - [1896] = 1303, - [1897] = 1305, - [1898] = 1383, - [1899] = 1899, - [1900] = 1310, - [1901] = 1312, - [1902] = 1315, - [1903] = 1388, - [1904] = 1316, - [1905] = 1405, - [1906] = 1405, - [1907] = 1316, - [1908] = 1407, - [1909] = 1304, - [1910] = 1304, - [1911] = 1310, - [1912] = 1405, - [1913] = 1407, - [1914] = 1316, - [1915] = 1376, - [1916] = 1376, - [1917] = 1383, - [1918] = 1305, - [1919] = 1405, - [1920] = 1383, - [1921] = 1407, - [1922] = 1316, - [1923] = 1310, - [1924] = 1405, - [1925] = 1407, - [1926] = 1201, - [1927] = 1210, - [1928] = 1383, - [1929] = 1207, - [1930] = 1312, - [1931] = 1219, - [1932] = 1388, - [1933] = 1303, - [1934] = 1220, - [1935] = 918, - [1936] = 1376, - [1937] = 947, - [1938] = 1388, - [1939] = 1026, - [1940] = 1304, - [1941] = 1407, - [1942] = 1388, - [1943] = 1033, - [1944] = 1081, - [1945] = 1376, - [1946] = 1305, - [1947] = 910, - [1948] = 1315, - [1949] = 1303, - [1950] = 1303, - [1951] = 969, - [1952] = 1376, - [1953] = 1312, - [1954] = 1304, - [1955] = 1305, - [1956] = 989, - [1957] = 1109, - [1958] = 1115, - [1959] = 1315, - [1960] = 1305, - [1961] = 1022, - [1962] = 1315, - [1963] = 1310, - [1964] = 925, - [1965] = 1965, - [1966] = 1966, + [1651] = 1111, + [1652] = 1061, + [1653] = 927, + [1654] = 1107, + [1655] = 1152, + [1656] = 1061, + [1657] = 1129, + [1658] = 1210, + [1659] = 927, + [1660] = 1212, + [1661] = 1111, + [1662] = 1107, + [1663] = 1213, + [1664] = 1129, + [1665] = 1211, + [1666] = 1111, + [1667] = 955, + [1668] = 1290, + [1669] = 1164, + [1670] = 1152, + [1671] = 1061, + [1672] = 955, + [1673] = 1164, + [1674] = 927, + [1675] = 968, + [1676] = 1003, + [1677] = 968, + [1678] = 1083, + [1679] = 1107, + [1680] = 1109, + [1681] = 1116, + [1682] = 1127, + [1683] = 1129, + [1684] = 1003, + [1685] = 1291, + [1686] = 1131, + [1687] = 1048, + [1688] = 1058, + [1689] = 1059, + [1690] = 1083, + [1691] = 1109, + [1692] = 1116, + [1693] = 955, + [1694] = 1164, + [1695] = 1127, + [1696] = 968, + [1697] = 1003, + [1698] = 1083, + [1699] = 1109, + [1700] = 1116, + [1701] = 1127, + [1702] = 1212, + [1703] = 1131, + [1704] = 1048, + [1705] = 1058, + [1706] = 1131, + [1707] = 1048, + [1708] = 1058, + [1709] = 1059, + [1710] = 1213, + [1711] = 1059, + [1712] = 1152, + [1713] = 1287, + [1714] = 1061, + [1715] = 1288, + [1716] = 1289, + [1717] = 927, + [1718] = 1290, + [1719] = 1291, + [1720] = 1107, + [1721] = 1129, + [1722] = 1111, + [1723] = 1287, + [1724] = 955, + [1725] = 1288, + [1726] = 1289, + [1727] = 1164, + [1728] = 968, + [1729] = 1003, + [1730] = 1290, + [1731] = 1291, + [1732] = 1083, + [1733] = 1109, + [1734] = 1116, + [1735] = 1275, + [1736] = 1131, + [1737] = 1048, + [1738] = 1058, + [1739] = 1059, + [1740] = 1152, + [1741] = 1061, + [1742] = 927, + [1743] = 1107, + [1744] = 1129, + [1745] = 1111, + [1746] = 1258, + [1747] = 1274, + [1748] = 955, + [1749] = 1164, + [1750] = 968, + [1751] = 1003, + [1752] = 1083, + [1753] = 1109, + [1754] = 1116, + [1755] = 1127, + [1756] = 1131, + [1757] = 1048, + [1758] = 1058, + [1759] = 1287, + [1760] = 1059, + [1761] = 1288, + [1762] = 1289, + [1763] = 1152, + [1764] = 1290, + [1765] = 1291, + [1766] = 1258, + [1767] = 1274, + [1768] = 1275, + [1769] = 1287, + [1770] = 1288, + [1771] = 1289, + [1772] = 1290, + [1773] = 1258, + [1774] = 1274, + [1775] = 1275, + [1776] = 1291, + [1777] = 1209, + [1778] = 1211, + [1779] = 1209, + [1780] = 1287, + [1781] = 1210, + [1782] = 1210, + [1783] = 1209, + [1784] = 1211, + [1785] = 1212, + [1786] = 1210, + [1787] = 1212, + [1788] = 1213, + [1789] = 1211, + [1790] = 1213, + [1791] = 1209, + [1792] = 1258, + [1793] = 1274, + [1794] = 1275, + [1795] = 1212, + [1796] = 1288, + [1797] = 1213, + [1798] = 1289, + [1799] = 1210, + [1800] = 1275, + [1801] = 1209, + [1802] = 1211, + [1803] = 1258, + [1804] = 1274, + [1805] = 1127, + [1806] = 1287, + [1807] = 1414, + [1808] = 1288, + [1809] = 1391, + [1810] = 1414, + [1811] = 1289, + [1812] = 1288, + [1813] = 1289, + [1814] = 1201, + [1815] = 1384, + [1816] = 1816, + [1817] = 1384, + [1818] = 1390, + [1819] = 1819, + [1820] = 1290, + [1821] = 1384, + [1822] = 1290, + [1823] = 1291, + [1824] = 1200, + [1825] = 1389, + [1826] = 1389, + [1827] = 1827, + [1828] = 1390, + [1829] = 1390, + [1830] = 1391, + [1831] = 1391, + [1832] = 1384, + [1833] = 1816, + [1834] = 1290, + [1835] = 1291, + [1836] = 1414, + [1837] = 1287, + [1838] = 1288, + [1839] = 1289, + [1840] = 1384, + [1841] = 1290, + [1842] = 1291, + [1843] = 1389, + [1844] = 1390, + [1845] = 1391, + [1846] = 1391, + [1847] = 1414, + [1848] = 1819, + [1849] = 1291, + [1850] = 1816, + [1851] = 1287, + [1852] = 1819, + [1853] = 1414, + [1854] = 1389, + [1855] = 1289, + [1856] = 1288, + [1857] = 1389, + [1858] = 1287, + [1859] = 1288, + [1860] = 1289, + [1861] = 1816, + [1862] = 1290, + [1863] = 1291, + [1864] = 1819, + [1865] = 1390, + [1866] = 1287, + [1867] = 1111, + [1868] = 1209, + [1869] = 955, + [1870] = 1164, + [1871] = 968, + [1872] = 1003, + [1873] = 1212, + [1874] = 1083, + [1875] = 1109, + [1876] = 1116, + [1877] = 1127, + [1878] = 1211, + [1879] = 1152, + [1880] = 1880, + [1881] = 1131, + [1882] = 1107, + [1883] = 1048, + [1884] = 1058, + [1885] = 1059, + [1886] = 1061, + [1887] = 1129, + [1888] = 1210, + [1889] = 1213, + [1890] = 927, + [1891] = 1891, + [1892] = 1892, + [1893] = 1893, + [1894] = 1893, + [1895] = 1891, + [1896] = 1892, + [1897] = 1892, + [1898] = 1898, + [1899] = 1893, + [1900] = 1891, + [1901] = 1901, + [1902] = 1898, + [1903] = 1892, + [1904] = 1891, + [1905] = 1898, + [1906] = 1893, + [1907] = 1898, + [1908] = 1908, + [1909] = 1909, + [1910] = 1910, + [1911] = 1910, + [1912] = 1910, + [1913] = 1908, + [1914] = 1909, + [1915] = 1909, + [1916] = 1908, + [1917] = 1909, + [1918] = 1908, + [1919] = 1910, + [1920] = 1920, + [1921] = 1920, + [1922] = 1920, + [1923] = 1923, + [1924] = 1924, + [1925] = 1920, + [1926] = 1926, + [1927] = 1927, + [1928] = 1928, + [1929] = 1929, + [1930] = 1930, + [1931] = 1931, + [1932] = 1932, + [1933] = 1933, + [1934] = 1934, + [1935] = 1935, + [1936] = 1936, + [1937] = 1937, + [1938] = 1938, + [1939] = 1931, + [1940] = 1933, + [1941] = 1941, + [1942] = 1931, + [1943] = 1943, + [1944] = 1933, + [1945] = 1945, + [1946] = 1946, + [1947] = 1947, + [1948] = 1931, + [1949] = 1949, + [1950] = 1950, + [1951] = 1933, + [1952] = 1931, + [1953] = 1933, + [1954] = 1931, + [1955] = 1955, + [1956] = 1933, + [1957] = 1957, + [1958] = 1958, + [1959] = 1959, + [1960] = 1960, + [1961] = 1961, + [1962] = 1931, + [1963] = 1933, + [1964] = 1964, + [1965] = 1949, + [1966] = 1950, [1967] = 1967, - [1968] = 1965, + [1968] = 1933, [1969] = 1969, [1970] = 1970, - [1971] = 1969, - [1972] = 1966, - [1973] = 1965, - [1974] = 1967, - [1975] = 1967, - [1976] = 1965, - [1977] = 1969, - [1978] = 1967, - [1979] = 1966, - [1980] = 1966, - [1981] = 1969, + [1971] = 1971, + [1972] = 1200, + [1973] = 1973, + [1974] = 1974, + [1975] = 1975, + [1976] = 1976, + [1977] = 1977, + [1978] = 1978, + [1979] = 1931, + [1980] = 1933, + [1981] = 1981, [1982] = 1982, - [1983] = 1983, - [1984] = 1983, - [1985] = 1983, - [1986] = 1986, - [1987] = 1986, - [1988] = 1986, - [1989] = 1982, - [1990] = 1982, - [1991] = 1986, - [1992] = 1982, - [1993] = 1983, - [1994] = 1994, - [1995] = 1994, - [1996] = 1994, - [1997] = 1997, - [1998] = 1994, - [1999] = 1999, + [1983] = 1931, + [1984] = 1931, + [1985] = 1985, + [1986] = 1933, + [1987] = 1987, + [1988] = 1988, + [1989] = 1989, + [1990] = 1990, + [1991] = 1991, + [1992] = 1992, + [1993] = 1993, + [1994] = 1931, + [1995] = 1995, + [1996] = 1933, + [1997] = 1937, + [1998] = 1938, + [1999] = 1931, [2000] = 2000, [2001] = 2001, - [2002] = 2002, - [2003] = 2003, - [2004] = 2004, + [2002] = 1931, + [2003] = 1933, + [2004] = 1933, [2005] = 2005, - [2006] = 2004, - [2007] = 2002, - [2008] = 2002, - [2009] = 2002, - [2010] = 2004, - [2011] = 2004, - [2012] = 2002, - [2013] = 2002, - [2014] = 2004, - [2015] = 2004, - [2016] = 2002, - [2017] = 2004, - [2018] = 2004, + [2006] = 2006, + [2007] = 2007, + [2008] = 1931, + [2009] = 1933, + [2010] = 2010, + [2011] = 2011, + [2012] = 2012, + [2013] = 2013, + [2014] = 2014, + [2015] = 2015, + [2016] = 2016, + [2017] = 2017, + [2018] = 2018, [2019] = 2019, - [2020] = 2002, - [2021] = 2004, - [2022] = 2004, - [2023] = 2002, - [2024] = 2002, - [2025] = 2002, - [2026] = 2002, - [2027] = 2004, - [2028] = 2004, - [2029] = 2004, - [2030] = 2002, + [2020] = 2020, + [2021] = 2021, + [2022] = 2022, + [2023] = 2023, + [2024] = 2024, + [2025] = 2025, + [2026] = 2026, + [2027] = 2027, + [2028] = 2028, + [2029] = 2029, + [2030] = 2030, [2031] = 2031, - [2032] = 2032, + [2032] = 1201, [2033] = 2033, - [2034] = 2034, - [2035] = 2035, - [2036] = 2036, - [2037] = 2037, + [2034] = 927, + [2035] = 1003, + [2036] = 1200, + [2037] = 1201, [2038] = 2038, - [2039] = 2039, - [2040] = 1169, - [2041] = 2041, - [2042] = 2042, - [2043] = 2043, - [2044] = 2044, - [2045] = 2045, - [2046] = 2046, - [2047] = 2047, - [2048] = 2048, - [2049] = 2049, - [2050] = 2050, - [2051] = 2051, - [2052] = 2052, - [2053] = 2053, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, - [2057] = 2057, + [2039] = 1107, + [2040] = 1209, + [2041] = 1083, + [2042] = 1109, + [2043] = 1116, + [2044] = 1210, + [2045] = 1127, + [2046] = 1111, + [2047] = 1131, + [2048] = 1048, + [2049] = 1058, + [2050] = 1059, + [2051] = 1211, + [2052] = 1129, + [2053] = 1201, + [2054] = 1213, + [2055] = 1152, + [2056] = 1200, + [2057] = 1061, [2058] = 2058, - [2059] = 2059, - [2060] = 2060, - [2061] = 2061, - [2062] = 2062, - [2063] = 2063, - [2064] = 309, - [2065] = 2065, - [2066] = 2066, - [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 2070, - [2071] = 2071, - [2072] = 2072, - [2073] = 2073, - [2074] = 2049, + [2059] = 955, + [2060] = 1212, + [2061] = 1164, + [2062] = 968, + [2063] = 318, + [2064] = 1059, + [2065] = 1212, + [2066] = 1048, + [2067] = 1211, + [2068] = 1061, + [2069] = 1109, + [2070] = 1129, + [2071] = 1116, + [2072] = 1107, + [2073] = 1164, + [2074] = 927, [2075] = 2075, - [2076] = 2076, + [2076] = 968, [2077] = 2077, - [2078] = 2078, - [2079] = 2079, - [2080] = 2080, - [2081] = 2081, - [2082] = 2082, - [2083] = 2083, - [2084] = 2084, - [2085] = 2085, - [2086] = 2086, - [2087] = 2087, - [2088] = 2088, - [2089] = 2089, - [2090] = 1168, - [2091] = 2091, - [2092] = 2092, - [2093] = 2045, - [2094] = 2094, - [2095] = 2095, - [2096] = 2096, - [2097] = 2097, - [2098] = 2098, - [2099] = 2099, - [2100] = 2100, + [2078] = 1152, + [2079] = 1116, + [2080] = 1384, + [2081] = 1107, + [2082] = 1209, + [2083] = 1003, + [2084] = 1058, + [2085] = 1059, + [2086] = 1210, + [2087] = 1127, + [2088] = 1131, + [2089] = 1210, + [2090] = 1389, + [2091] = 1212, + [2092] = 1111, + [2093] = 1111, + [2094] = 1048, + [2095] = 1127, + [2096] = 1390, + [2097] = 1213, + [2098] = 955, + [2099] = 1391, + [2100] = 1209, [2101] = 2101, - [2102] = 2036, - [2103] = 2103, - [2104] = 2104, - [2105] = 2105, - [2106] = 2038, - [2107] = 2107, - [2108] = 2108, - [2109] = 1207, - [2110] = 1168, - [2111] = 1219, - [2112] = 1165, - [2113] = 1220, - [2114] = 918, - [2115] = 947, - [2116] = 969, - [2117] = 989, - [2118] = 1026, - [2119] = 1109, - [2120] = 1115, - [2121] = 1022, - [2122] = 1169, - [2123] = 1033, - [2124] = 1053, - [2125] = 2125, - [2126] = 1076, - [2127] = 1081, - [2128] = 910, - [2129] = 925, - [2130] = 927, - [2131] = 930, - [2132] = 955, - [2133] = 1166, - [2134] = 2134, - [2135] = 2125, - [2136] = 2136, - [2137] = 2137, - [2138] = 1201, - [2139] = 1210, - [2140] = 2125, - [2141] = 2125, - [2142] = 1063, - [2143] = 1033, - [2144] = 2144, - [2145] = 2145, - [2146] = 2145, - [2147] = 1220, - [2148] = 1175, - [2149] = 2144, - [2150] = 2145, - [2151] = 2145, - [2152] = 2144, - [2153] = 918, - [2154] = 947, - [2155] = 969, - [2156] = 989, - [2157] = 1026, - [2158] = 1109, - [2159] = 1115, - [2160] = 2145, - [2161] = 2144, - [2162] = 1176, - [2163] = 1022, - [2164] = 2144, - [2165] = 2144, - [2166] = 1053, - [2167] = 1063, - [2168] = 1076, - [2169] = 1081, - [2170] = 2145, - [2171] = 2144, - [2172] = 2144, - [2173] = 910, - [2174] = 925, - [2175] = 927, - [2176] = 930, - [2177] = 2145, - [2178] = 955, - [2179] = 2144, - [2180] = 2145, - [2181] = 2144, - [2182] = 2145, - [2183] = 2145, - [2184] = 2145, - [2185] = 2145, - [2186] = 2144, - [2187] = 2187, - [2188] = 2144, - [2189] = 1219, - [2190] = 2145, - [2191] = 2145, - [2192] = 2144, - [2193] = 1201, - [2194] = 2145, - [2195] = 2195, - [2196] = 2144, - [2197] = 1210, - [2198] = 2145, - [2199] = 2144, - [2200] = 2145, - [2201] = 2145, - [2202] = 1207, - [2203] = 2144, - [2204] = 2145, - [2205] = 2195, - [2206] = 2145, - [2207] = 2145, - [2208] = 2195, - [2209] = 2145, - [2210] = 2144, - [2211] = 2195, - [2212] = 2212, - [2213] = 2144, - [2214] = 2144, - [2215] = 2144, - [2216] = 2144, - [2217] = 2144, - [2218] = 2218, - [2219] = 2218, - [2220] = 1310, - [2221] = 2221, - [2222] = 2222, - [2223] = 2218, - [2224] = 1315, - [2225] = 2222, - [2226] = 2218, - [2227] = 1305, - [2228] = 2222, - [2229] = 2218, - [2230] = 2222, - [2231] = 2218, - [2232] = 2232, - [2233] = 2222, - [2234] = 2218, - [2235] = 2218, - [2236] = 2222, - [2237] = 2218, - [2238] = 2222, - [2239] = 2218, - [2240] = 2222, - [2241] = 2218, - [2242] = 2242, - [2243] = 2222, - [2244] = 2218, - [2245] = 2222, - [2246] = 2218, - [2247] = 2222, - [2248] = 2218, - [2249] = 2222, - [2250] = 2218, - [2251] = 2222, - [2252] = 2218, - [2253] = 1316, - [2254] = 2222, - [2255] = 2218, + [2102] = 1058, + [2103] = 1131, + [2104] = 1152, + [2105] = 1083, + [2106] = 1287, + [2107] = 1211, + [2108] = 1061, + [2109] = 955, + [2110] = 2110, + [2111] = 1288, + [2112] = 1289, + [2113] = 1164, + [2114] = 927, + [2115] = 968, + [2116] = 1003, + [2117] = 2077, + [2118] = 1129, + [2119] = 2077, + [2120] = 1083, + [2121] = 1213, + [2122] = 2077, + [2123] = 1290, + [2124] = 1291, + [2125] = 1109, + [2126] = 2126, + [2127] = 2127, + [2128] = 2128, + [2129] = 2127, + [2130] = 2127, + [2131] = 2128, + [2132] = 2128, + [2133] = 2127, + [2134] = 2127, + [2135] = 2135, + [2136] = 1290, + [2137] = 2128, + [2138] = 1291, + [2139] = 2127, + [2140] = 2128, + [2141] = 2127, + [2142] = 2127, + [2143] = 2128, + [2144] = 2128, + [2145] = 2128, + [2146] = 2127, + [2147] = 2127, + [2148] = 1288, + [2149] = 2128, + [2150] = 2128, + [2151] = 1289, + [2152] = 2127, + [2153] = 2128, + [2154] = 2128, + [2155] = 2127, + [2156] = 2156, + [2157] = 2127, + [2158] = 2128, + [2159] = 2159, + [2160] = 2128, + [2161] = 2128, + [2162] = 2127, + [2163] = 2127, + [2164] = 2127, + [2165] = 2127, + [2166] = 2128, + [2167] = 2167, + [2168] = 1287, + [2169] = 2128, + [2170] = 2128, + [2171] = 2128, + [2172] = 1926, + [2173] = 2128, + [2174] = 2167, + [2175] = 2127, + [2176] = 2127, + [2177] = 2127, + [2178] = 2167, + [2179] = 2127, + [2180] = 2128, + [2181] = 2181, + [2182] = 2128, + [2183] = 2167, + [2184] = 2128, + [2185] = 2127, + [2186] = 1927, + [2187] = 1928, + [2188] = 2127, + [2189] = 1961, + [2190] = 2190, + [2191] = 2191, + [2192] = 1958, + [2193] = 2000, + [2194] = 2001, + [2195] = 2005, + [2196] = 2012, + [2197] = 2024, + [2198] = 2030, + [2199] = 2026, + [2200] = 1985, + [2201] = 1932, + [2202] = 1934, + [2203] = 1941, + [2204] = 1943, + [2205] = 1946, + [2206] = 1947, + [2207] = 1967, + [2208] = 1969, + [2209] = 1973, + [2210] = 1974, + [2211] = 1975, + [2212] = 1977, + [2213] = 1987, + [2214] = 1988, + [2215] = 1990, + [2216] = 1991, + [2217] = 1992, + [2218] = 1993, + [2219] = 1995, + [2220] = 2006, + [2221] = 2007, + [2222] = 2013, + [2223] = 2016, + [2224] = 2017, + [2225] = 2018, + [2226] = 2019, + [2227] = 2020, + [2228] = 2023, + [2229] = 2025, + [2230] = 1930, + [2231] = 2027, + [2232] = 2028, + [2233] = 2029, + [2234] = 1981, + [2235] = 1982, + [2236] = 1989, + [2237] = 2011, + [2238] = 1945, + [2239] = 1959, + [2240] = 2010, + [2241] = 2022, + [2242] = 2031, + [2243] = 1935, + [2244] = 1960, + [2245] = 1964, + [2246] = 1970, + [2247] = 2014, + [2248] = 2015, + [2249] = 1976, + [2250] = 1936, + [2251] = 1955, + [2252] = 1971, + [2253] = 1978, + [2254] = 2021, + [2255] = 1957, [2256] = 2256, - [2257] = 2222, - [2258] = 2222, - [2259] = 2222, - [2260] = 2222, - [2261] = 2218, - [2262] = 2222, - [2263] = 2218, - [2264] = 2222, - [2265] = 2218, - [2266] = 2001, - [2267] = 2222, - [2268] = 2218, - [2269] = 2005, - [2270] = 2222, - [2271] = 2218, - [2272] = 2222, - [2273] = 2218, - [2274] = 2222, - [2275] = 2218, - [2276] = 2218, - [2277] = 2222, - [2278] = 2222, - [2279] = 2218, - [2280] = 2222, - [2281] = 2218, - [2282] = 2003, - [2283] = 1303, - [2284] = 2222, - [2285] = 2218, - [2286] = 2286, - [2287] = 2222, - [2288] = 2218, - [2289] = 1312, - [2290] = 2222, - [2291] = 2218, - [2292] = 1304, - [2293] = 2293, - [2294] = 2222, - [2295] = 2218, - [2296] = 2222, - [2297] = 2218, - [2298] = 2298, - [2299] = 2036, - [2300] = 2092, - [2301] = 2032, - [2302] = 2044, - [2303] = 2298, - [2304] = 2071, - [2305] = 2298, - [2306] = 2070, - [2307] = 2298, - [2308] = 2091, - [2309] = 2298, - [2310] = 2054, - [2311] = 2061, - [2312] = 2298, - [2313] = 2038, - [2314] = 2080, - [2315] = 2048, - [2316] = 2050, - [2317] = 2298, - [2318] = 2052, - [2319] = 2096, - [2320] = 2298, - [2321] = 2060, - [2322] = 2068, - [2323] = 2046, - [2324] = 2069, - [2325] = 2298, - [2326] = 2073, - [2327] = 2078, - [2328] = 2079, - [2329] = 2087, - [2330] = 2036, - [2331] = 2051, - [2332] = 2055, - [2333] = 2056, - [2334] = 2058, - [2335] = 2059, - [2336] = 2063, - [2337] = 2066, - [2338] = 2067, - [2339] = 2298, - [2340] = 2088, - [2341] = 2076, - [2342] = 2047, - [2343] = 2082, - [2344] = 2105, - [2345] = 2298, - [2346] = 2049, - [2347] = 2049, - [2348] = 2298, - [2349] = 2057, - [2350] = 2065, - [2351] = 2094, - [2352] = 2031, - [2353] = 2099, - [2354] = 2101, - [2355] = 2103, - [2356] = 2104, - [2357] = 2097, - [2358] = 2298, - [2359] = 2072, - [2360] = 2083, - [2361] = 2045, - [2362] = 2075, - [2363] = 2095, - [2364] = 2081, - [2365] = 2045, - [2366] = 2298, - [2367] = 2041, - [2368] = 2298, - [2369] = 2298, - [2370] = 2298, - [2371] = 2084, - [2372] = 2098, - [2373] = 2298, - [2374] = 2100, - [2375] = 2298, - [2376] = 2034, - [2377] = 2298, - [2378] = 2298, - [2379] = 2043, - [2380] = 2107, - [2381] = 2298, - [2382] = 2037, - [2383] = 2298, - [2384] = 2062, - [2385] = 2298, - [2386] = 2077, - [2387] = 2298, - [2388] = 2298, - [2389] = 1168, - [2390] = 2086, - [2391] = 2038, - [2392] = 2298, - [2393] = 2085, - [2394] = 2053, - [2395] = 2033, - [2396] = 2039, - [2397] = 2089, - [2398] = 2298, - [2399] = 2298, - [2400] = 2298, - [2401] = 1169, - [2402] = 2298, - [2403] = 2035, - [2404] = 1165, - [2405] = 969, - [2406] = 1169, - [2407] = 1210, - [2408] = 910, - [2409] = 925, - [2410] = 927, - [2411] = 930, - [2412] = 918, - [2413] = 1109, - [2414] = 1115, - [2415] = 1220, - [2416] = 955, - [2417] = 1022, - [2418] = 1168, - [2419] = 1219, - [2420] = 1033, - [2421] = 947, - [2422] = 1053, - [2423] = 1063, - [2424] = 1076, - [2425] = 1081, - [2426] = 1166, - [2427] = 1026, - [2428] = 989, - [2429] = 1207, - [2430] = 1201, - [2431] = 955, - [2432] = 1022, - [2433] = 925, - [2434] = 1053, - [2435] = 969, - [2436] = 1033, - [2437] = 989, - [2438] = 918, - [2439] = 947, - [2440] = 1076, - [2441] = 1081, - [2442] = 1176, - [2443] = 1026, - [2444] = 1210, - [2445] = 1201, - [2446] = 1220, - [2447] = 1063, - [2448] = 2005, - [2449] = 1109, - [2450] = 1115, - [2451] = 927, - [2452] = 930, - [2453] = 2003, - [2454] = 2005, - [2455] = 1207, - [2456] = 2003, - [2457] = 1175, - [2458] = 910, - [2459] = 2001, - [2460] = 1219, - [2461] = 2001, - [2462] = 2038, - [2463] = 2049, - [2464] = 2094, - [2465] = 2053, - [2466] = 2072, - [2467] = 2045, - [2468] = 2099, - [2469] = 2082, - [2470] = 2470, - [2471] = 2043, - [2472] = 2105, - [2473] = 2061, - [2474] = 2063, - [2475] = 2470, - [2476] = 2075, - [2477] = 2105, - [2478] = 2078, - [2479] = 2033, - [2480] = 2470, - [2481] = 2039, - [2482] = 2097, - [2483] = 2046, - [2484] = 2036, - [2485] = 2031, - [2486] = 2470, - [2487] = 2069, - [2488] = 2043, - [2489] = 2084, - [2490] = 2100, - [2491] = 2035, - [2492] = 2470, - [2493] = 2470, - [2494] = 2034, - [2495] = 2495, - [2496] = 2066, - [2497] = 2101, - [2498] = 2470, - [2499] = 2103, - [2500] = 2107, - [2501] = 2104, - [2502] = 2050, - [2503] = 2098, - [2504] = 2470, - [2505] = 2079, - [2506] = 2062, - [2507] = 2048, - [2508] = 2077, - [2509] = 2060, - [2510] = 2470, - [2511] = 2092, - [2512] = 2067, - [2513] = 2088, - [2514] = 2086, - [2515] = 2032, - [2516] = 2470, - [2517] = 2044, - [2518] = 2085, - [2519] = 2069, - [2520] = 2087, - [2521] = 2470, - [2522] = 2470, - [2523] = 2073, - [2524] = 2053, - [2525] = 2056, - [2526] = 2038, - [2527] = 2097, - [2528] = 2470, - [2529] = 2078, - [2530] = 2033, - [2531] = 2036, - [2532] = 2039, - [2533] = 2071, - [2534] = 1303, - [2535] = 2058, - [2536] = 2083, - [2537] = 2051, - [2538] = 2062, - [2539] = 2035, - [2540] = 2036, - [2541] = 1304, - [2542] = 2037, - [2543] = 2055, - [2544] = 2056, - [2545] = 2070, - [2546] = 2095, - [2547] = 2058, - [2548] = 2081, - [2549] = 2470, - [2550] = 2073, - [2551] = 2057, - [2552] = 2065, - [2553] = 2077, - [2554] = 2051, - [2555] = 2094, - [2556] = 1305, - [2557] = 2059, - [2558] = 2041, - [2559] = 2054, - [2560] = 2063, - [2561] = 1310, - [2562] = 2099, - [2563] = 2061, - [2564] = 2041, - [2565] = 2057, - [2566] = 2096, - [2567] = 2089, - [2568] = 2032, - [2569] = 2079, - [2570] = 2091, - [2571] = 2052, - [2572] = 2065, - [2573] = 2470, - [2574] = 2087, - [2575] = 2068, - [2576] = 2049, - [2577] = 2293, - [2578] = 2286, - [2579] = 2038, - [2580] = 2045, - [2581] = 1312, - [2582] = 2084, - [2583] = 2470, - [2584] = 1315, - [2585] = 2100, - [2586] = 2034, - [2587] = 2107, - [2588] = 2080, - [2589] = 2096, - [2590] = 2076, - [2591] = 2037, - [2592] = 2086, - [2593] = 2049, - [2594] = 2038, - [2595] = 2089, - [2596] = 2045, - [2597] = 2075, - [2598] = 2048, - [2599] = 2085, - [2600] = 2036, - [2601] = 2044, - [2602] = 2602, - [2603] = 2470, - [2604] = 2066, - [2605] = 2067, - [2606] = 2088, - [2607] = 2091, - [2608] = 1316, - [2609] = 2047, - [2610] = 2101, - [2611] = 2082, - [2612] = 2055, - [2613] = 2049, - [2614] = 2103, - [2615] = 2031, - [2616] = 2045, - [2617] = 2050, - [2618] = 2052, - [2619] = 2104, - [2620] = 2060, - [2621] = 2070, - [2622] = 2081, - [2623] = 2068, - [2624] = 2076, - [2625] = 2047, - [2626] = 2046, - [2627] = 2080, - [2628] = 2083, - [2629] = 2095, - [2630] = 2470, - [2631] = 2054, - [2632] = 2242, - [2633] = 2072, - [2634] = 2071, - [2635] = 2098, - [2636] = 2092, - [2637] = 2059, - [2638] = 2638, - [2639] = 2638, - [2640] = 2640, - [2641] = 1165, - [2642] = 1168, - [2643] = 1166, - [2644] = 1169, - [2645] = 1168, - [2646] = 1169, - [2647] = 2638, - [2648] = 1165, - [2649] = 1166, - [2650] = 2638, - [2651] = 2638, - [2652] = 2638, - [2653] = 2638, - [2654] = 2638, - [2655] = 2638, - [2656] = 2638, - [2657] = 2638, - [2658] = 2638, - [2659] = 2638, - [2660] = 2638, - [2661] = 2638, - [2662] = 2638, - [2663] = 2638, - [2664] = 2638, - [2665] = 1201, - [2666] = 1210, - [2667] = 1207, - [2668] = 1219, - [2669] = 1220, - [2670] = 918, - [2671] = 947, - [2672] = 1026, - [2673] = 1201, - [2674] = 1033, - [2675] = 1081, - [2676] = 1207, - [2677] = 910, - [2678] = 1210, - [2679] = 1175, - [2680] = 969, - [2681] = 1219, - [2682] = 989, - [2683] = 1220, - [2684] = 1109, - [2685] = 1115, - [2686] = 1022, - [2687] = 1053, - [2688] = 1063, - [2689] = 1176, - [2690] = 1176, - [2691] = 918, - [2692] = 947, - [2693] = 925, - [2694] = 1026, - [2695] = 927, - [2696] = 930, - [2697] = 1033, - [2698] = 955, - [2699] = 1081, - [2700] = 910, - [2701] = 969, - [2702] = 989, - [2703] = 1109, - [2704] = 1115, - [2705] = 1022, - [2706] = 1053, - [2707] = 1063, - [2708] = 1076, - [2709] = 925, - [2710] = 927, - [2711] = 930, - [2712] = 955, - [2713] = 1168, - [2714] = 1169, - [2715] = 1175, - [2716] = 1076, - [2717] = 925, - [2718] = 1201, - [2719] = 1315, - [2720] = 1303, - [2721] = 1305, - [2722] = 1063, - [2723] = 1304, - [2724] = 1312, - [2725] = 1053, - [2726] = 1033, - [2727] = 1310, - [2728] = 1081, - [2729] = 1316, - [2730] = 2242, - [2731] = 2293, - [2732] = 1316, - [2733] = 2286, - [2734] = 1207, - [2735] = 1210, - [2736] = 1219, - [2737] = 1315, - [2738] = 2293, - [2739] = 2242, - [2740] = 2286, - [2741] = 918, - [2742] = 1076, - [2743] = 947, - [2744] = 1312, - [2745] = 927, - [2746] = 1026, - [2747] = 930, - [2748] = 955, - [2749] = 1303, - [2750] = 1304, - [2751] = 910, - [2752] = 969, - [2753] = 1305, - [2754] = 989, - [2755] = 1115, - [2756] = 1310, - [2757] = 1109, - [2758] = 1022, - [2759] = 1220, - [2760] = 2760, - [2761] = 2761, - [2762] = 309, - [2763] = 2763, - [2764] = 2764, - [2765] = 2765, - [2766] = 2766, - [2767] = 2767, - [2768] = 2768, - [2769] = 2769, - [2770] = 2770, - [2771] = 2771, - [2772] = 2769, - [2773] = 2773, - [2774] = 2770, - [2775] = 2771, - [2776] = 2769, - [2777] = 2773, - [2778] = 2771, - [2779] = 2770, - [2780] = 2771, - [2781] = 2769, - [2782] = 2773, - [2783] = 2770, - [2784] = 2771, - [2785] = 2785, - [2786] = 2769, - [2787] = 2773, - [2788] = 2770, - [2789] = 2771, - [2790] = 2769, - [2791] = 2773, - [2792] = 2771, - [2793] = 2770, - [2794] = 2771, - [2795] = 2769, - [2796] = 2773, - [2797] = 2769, - [2798] = 2770, - [2799] = 2771, - [2800] = 2769, - [2801] = 2769, - [2802] = 2773, - [2803] = 2770, - [2804] = 2773, - [2805] = 2771, - [2806] = 2769, - [2807] = 2773, - [2808] = 2770, - [2809] = 2771, - [2810] = 2769, - [2811] = 2773, - [2812] = 2771, - [2813] = 2770, - [2814] = 2770, - [2815] = 2771, - [2816] = 2769, - [2817] = 2773, - [2818] = 2770, - [2819] = 2771, - [2820] = 2769, - [2821] = 2773, - [2822] = 2770, - [2823] = 2771, - [2824] = 2771, - [2825] = 2773, - [2826] = 2769, - [2827] = 2773, - [2828] = 2769, - [2829] = 2770, - [2830] = 2773, - [2831] = 2771, - [2832] = 2769, - [2833] = 2773, - [2834] = 2770, - [2835] = 2770, - [2836] = 2771, - [2837] = 2769, - [2838] = 2773, - [2839] = 2770, - [2840] = 2771, - [2841] = 2769, - [2842] = 2773, - [2843] = 2771, - [2844] = 2770, - [2845] = 2773, - [2846] = 2769, - [2847] = 2773, - [2848] = 2769, - [2849] = 2773, - [2850] = 2769, - [2851] = 2770, - [2852] = 2773, - [2853] = 2770, - [2854] = 2770, - [2855] = 2771, - [2856] = 2769, - [2857] = 2773, - [2858] = 2771, - [2859] = 2770, - [2860] = 2770, - [2861] = 2771, - [2862] = 2769, - [2863] = 2773, - [2864] = 2770, - [2865] = 2771, - [2866] = 2769, - [2867] = 2773, - [2868] = 2771, - [2869] = 2770, - [2870] = 2771, - [2871] = 2769, - [2872] = 2773, - [2873] = 2769, - [2874] = 2770, - [2875] = 2773, - [2876] = 2769, - [2877] = 2773, - [2878] = 2771, - [2879] = 2770, - [2880] = 2769, - [2881] = 2773, - [2882] = 2770, - [2883] = 2771, - [2884] = 2770, - [2885] = 2769, - [2886] = 2773, - [2887] = 2770, - [2888] = 2771, - [2889] = 2769, - [2890] = 2773, - [2891] = 2770, - [2892] = 2770, - [2893] = 2771, - [2894] = 2771, - [2895] = 2769, - [2896] = 2773, - [2897] = 2770, - [2898] = 2769, - [2899] = 2773, - [2900] = 1168, - [2901] = 2771, - [2902] = 2773, - [2903] = 1169, - [2904] = 2770, - [2905] = 2771, - [2906] = 2770, - [2907] = 2769, - [2908] = 2773, - [2909] = 2771, - [2910] = 2769, - [2911] = 2771, - [2912] = 925, - [2913] = 955, - [2914] = 1219, - [2915] = 1220, - [2916] = 918, - [2917] = 947, - [2918] = 1219, - [2919] = 1026, - [2920] = 918, - [2921] = 1033, - [2922] = 1081, - [2923] = 947, - [2924] = 1026, - [2925] = 309, - [2926] = 1033, - [2927] = 1081, - [2928] = 1210, - [2929] = 910, - [2930] = 910, - [2931] = 969, - [2932] = 989, - [2933] = 1109, - [2934] = 1115, - [2935] = 1022, - [2936] = 1053, - [2937] = 1063, - [2938] = 925, - [2939] = 927, - [2940] = 930, - [2941] = 969, - [2942] = 955, - [2943] = 989, - [2944] = 1220, - [2945] = 1201, - [2946] = 1109, - [2947] = 1115, - [2948] = 1207, - [2949] = 1022, - [2950] = 1210, - [2951] = 1053, - [2952] = 1063, - [2953] = 1076, - [2954] = 927, - [2955] = 930, - [2956] = 1076, - [2957] = 1407, - [2958] = 1405, - [2959] = 1376, - [2960] = 1383, - [2961] = 2961, - [2962] = 2293, - [2963] = 2242, - [2964] = 2964, - [2965] = 2965, - [2966] = 2966, - [2967] = 2967, - [2968] = 2968, - [2969] = 2969, - [2970] = 2970, - [2971] = 2971, - [2972] = 2972, - [2973] = 2973, - [2974] = 2286, - [2975] = 2975, - [2976] = 2976, - [2977] = 2977, - [2978] = 2978, - [2979] = 2979, - [2980] = 2980, - [2981] = 2981, - [2982] = 2982, - [2983] = 2983, - [2984] = 2984, - [2985] = 2985, - [2986] = 2986, - [2987] = 2987, - [2988] = 1168, - [2989] = 1053, - [2990] = 955, - [2991] = 925, - [2992] = 2992, - [2993] = 927, - [2994] = 989, - [2995] = 1169, - [2996] = 918, - [2997] = 947, - [2998] = 930, - [2999] = 1026, - [3000] = 1109, - [3001] = 1115, - [3002] = 1033, - [3003] = 1081, - [3004] = 3004, - [3005] = 3005, - [3006] = 3006, - [3007] = 3007, - [3008] = 910, - [3009] = 1076, - [3010] = 1063, - [3011] = 1022, - [3012] = 969, - [3013] = 2992, - [3014] = 2992, - [3015] = 1219, - [3016] = 3016, - [3017] = 3004, - [3018] = 2992, - [3019] = 1033, - [3020] = 1201, - [3021] = 927, - [3022] = 3022, - [3023] = 1081, - [3024] = 910, - [3025] = 930, - [3026] = 1207, - [3027] = 1220, - [3028] = 918, - [3029] = 3004, - [3030] = 947, - [3031] = 955, - [3032] = 969, - [3033] = 989, - [3034] = 3034, - [3035] = 1210, - [3036] = 1109, - [3037] = 1115, - [3038] = 1022, - [3039] = 1053, - [3040] = 925, - [3041] = 1026, - [3042] = 1063, - [3043] = 3004, - [3044] = 1076, - [3045] = 1376, - [3046] = 3016, - [3047] = 3034, - [3048] = 3016, - [3049] = 1407, - [3050] = 3016, - [3051] = 3022, - [3052] = 3034, - [3053] = 1405, - [3054] = 3022, - [3055] = 3022, - [3056] = 3034, - [3057] = 1383, - [3058] = 3058, - [3059] = 2980, - [3060] = 1168, - [3061] = 2968, - [3062] = 1115, - [3063] = 1022, - [3064] = 3064, - [3065] = 1169, - [3066] = 2964, - [3067] = 925, - [3068] = 1169, - [3069] = 2981, - [3070] = 3058, - [3071] = 2992, - [3072] = 3058, - [3073] = 3004, - [3074] = 927, - [3075] = 1053, - [3076] = 2992, - [3077] = 2979, - [3078] = 1063, - [3079] = 930, - [3080] = 2286, - [3081] = 1076, - [3082] = 2982, - [3083] = 3004, - [3084] = 2992, - [3085] = 3085, - [3086] = 3058, - [3087] = 2973, - [3088] = 969, - [3089] = 3058, - [3090] = 3004, - [3091] = 2992, - [3092] = 3058, - [3093] = 955, - [3094] = 3058, - [3095] = 2984, - [3096] = 3058, - [3097] = 2975, - [3098] = 3058, - [3099] = 3058, - [3100] = 3058, - [3101] = 2967, - [3102] = 3058, - [3103] = 2970, - [3104] = 3058, - [3105] = 3058, - [3106] = 3058, - [3107] = 3004, - [3108] = 3004, - [3109] = 2978, - [3110] = 3058, - [3111] = 3111, - [3112] = 3058, - [3113] = 2966, - [3114] = 3058, - [3115] = 2987, - [3116] = 3058, - [3117] = 3058, - [3118] = 3058, - [3119] = 2961, - [3120] = 2965, - [3121] = 2976, - [3122] = 2969, - [3123] = 2983, - [3124] = 3124, - [3125] = 2986, - [3126] = 2971, - [3127] = 3127, - [3128] = 3128, - [3129] = 3129, - [3130] = 2242, - [3131] = 3131, - [3132] = 3132, - [3133] = 2293, - [3134] = 989, - [3135] = 2977, - [3136] = 3058, - [3137] = 1168, - [3138] = 2985, - [3139] = 2992, - [3140] = 2972, - [3141] = 1109, - [3142] = 1081, - [3143] = 3034, - [3144] = 927, - [3145] = 947, - [3146] = 3131, - [3147] = 1201, - [3148] = 1022, - [3149] = 918, - [3150] = 947, - [3151] = 1076, - [3152] = 930, - [3153] = 3111, - [3154] = 1026, - [3155] = 3129, - [3156] = 1026, - [3157] = 925, - [3158] = 3085, - [3159] = 1207, - [3160] = 3022, - [3161] = 3016, - [3162] = 3034, - [3163] = 3022, - [3164] = 3111, - [3165] = 3085, - [3166] = 3128, - [3167] = 989, - [3168] = 1033, - [3169] = 3128, - [3170] = 1109, - [3171] = 3131, - [3172] = 1207, - [3173] = 3132, - [3174] = 3022, - [3175] = 3124, - [3176] = 3034, - [3177] = 910, - [3178] = 3016, - [3179] = 1219, - [3180] = 3132, - [3181] = 3111, - [3182] = 3034, - [3183] = 3127, - [3184] = 3085, - [3185] = 969, - [3186] = 989, - [3187] = 3034, - [3188] = 1109, - [3189] = 3124, - [3190] = 1115, - [3191] = 1022, - [3192] = 3129, - [3193] = 1053, - [3194] = 3124, - [3195] = 3016, - [3196] = 1053, - [3197] = 3129, - [3198] = 1063, - [3199] = 1210, - [3200] = 1201, - [3201] = 1076, - [3202] = 1033, - [3203] = 925, - [3204] = 1210, - [3205] = 927, - [3206] = 930, - [3207] = 1115, - [3208] = 1081, - [3209] = 3131, - [3210] = 3127, - [3211] = 955, - [3212] = 3016, - [3213] = 910, - [3214] = 3132, - [3215] = 1220, - [3216] = 3128, - [3217] = 955, - [3218] = 1220, - [3219] = 1219, - [3220] = 3022, - [3221] = 918, - [3222] = 3022, - [3223] = 3016, - [3224] = 3127, - [3225] = 969, - [3226] = 1063, - [3227] = 3227, - [3228] = 1376, - [3229] = 1383, - [3230] = 3230, - [3231] = 3230, - [3232] = 3232, + [2257] = 2257, + [2258] = 2258, + [2259] = 1937, + [2260] = 1938, + [2261] = 2258, + [2262] = 2191, + [2263] = 1949, + [2264] = 1950, + [2265] = 2191, + [2266] = 2191, + [2267] = 2258, + [2268] = 2191, + [2269] = 2258, + [2270] = 2191, + [2271] = 2258, + [2272] = 2191, + [2273] = 2258, + [2274] = 2191, + [2275] = 2258, + [2276] = 2191, + [2277] = 2258, + [2278] = 2191, + [2279] = 2258, + [2280] = 2191, + [2281] = 2258, + [2282] = 2191, + [2283] = 1937, + [2284] = 2258, + [2285] = 2191, + [2286] = 1938, + [2287] = 2258, + [2288] = 2191, + [2289] = 2258, + [2290] = 2191, + [2291] = 2258, + [2292] = 2191, + [2293] = 2258, + [2294] = 2191, + [2295] = 2258, + [2296] = 2191, + [2297] = 2258, + [2298] = 2191, + [2299] = 2258, + [2300] = 2191, + [2301] = 1949, + [2302] = 1950, + [2303] = 2258, + [2304] = 2191, + [2305] = 2258, + [2306] = 2191, + [2307] = 2258, + [2308] = 2191, + [2309] = 2258, + [2310] = 2191, + [2311] = 2258, + [2312] = 2191, + [2313] = 2258, + [2314] = 2191, + [2315] = 2258, + [2316] = 2191, + [2317] = 2258, + [2318] = 2191, + [2319] = 2258, + [2320] = 2191, + [2321] = 2258, + [2322] = 2191, + [2323] = 2258, + [2324] = 2191, + [2325] = 2258, + [2326] = 2191, + [2327] = 2258, + [2328] = 2191, + [2329] = 2258, + [2330] = 2258, + [2331] = 2331, + [2332] = 2331, + [2333] = 2331, + [2334] = 2331, + [2335] = 2331, + [2336] = 2331, + [2337] = 1200, + [2338] = 2331, + [2339] = 2331, + [2340] = 2331, + [2341] = 2331, + [2342] = 2331, + [2343] = 2331, + [2344] = 2331, + [2345] = 1201, + [2346] = 2331, + [2347] = 2331, + [2348] = 2331, + [2349] = 2331, + [2350] = 2331, + [2351] = 2331, + [2352] = 2331, + [2353] = 2331, + [2354] = 2331, + [2355] = 2331, + [2356] = 2331, + [2357] = 2331, + [2358] = 2331, + [2359] = 1201, + [2360] = 2331, + [2361] = 2331, + [2362] = 2331, + [2363] = 2331, + [2364] = 2331, + [2365] = 2331, + [2366] = 1200, + [2367] = 1209, + [2368] = 1212, + [2369] = 1111, + [2370] = 1131, + [2371] = 1210, + [2372] = 1083, + [2373] = 1109, + [2374] = 1116, + [2375] = 1059, + [2376] = 1127, + [2377] = 1212, + [2378] = 1083, + [2379] = 968, + [2380] = 1164, + [2381] = 1131, + [2382] = 927, + [2383] = 968, + [2384] = 1926, + [2385] = 1927, + [2386] = 1928, + [2387] = 1003, + [2388] = 1048, + [2389] = 1213, + [2390] = 1152, + [2391] = 1211, + [2392] = 1210, + [2393] = 1213, + [2394] = 1926, + [2395] = 1061, + [2396] = 1003, + [2397] = 1152, + [2398] = 1061, + [2399] = 927, + [2400] = 1927, + [2401] = 1107, + [2402] = 955, + [2403] = 1129, + [2404] = 1058, + [2405] = 1059, + [2406] = 1111, + [2407] = 1209, + [2408] = 1048, + [2409] = 1127, + [2410] = 1107, + [2411] = 1211, + [2412] = 1058, + [2413] = 955, + [2414] = 1164, + [2415] = 1129, + [2416] = 1109, + [2417] = 1116, + [2418] = 1928, + [2419] = 1977, + [2420] = 1990, + [2421] = 1991, + [2422] = 1992, + [2423] = 1993, + [2424] = 1995, + [2425] = 2006, + [2426] = 2007, + [2427] = 2013, + [2428] = 2016, + [2429] = 2017, + [2430] = 2018, + [2431] = 2019, + [2432] = 2020, + [2433] = 2023, + [2434] = 2025, + [2435] = 1930, + [2436] = 2027, + [2437] = 2028, + [2438] = 2029, + [2439] = 2029, + [2440] = 1981, + [2441] = 1982, + [2442] = 1989, + [2443] = 2011, + [2444] = 1945, + [2445] = 1959, + [2446] = 2010, + [2447] = 2022, + [2448] = 2031, + [2449] = 1935, + [2450] = 1960, + [2451] = 1964, + [2452] = 1970, + [2453] = 2014, + [2454] = 2015, + [2455] = 1976, + [2456] = 1936, + [2457] = 1955, + [2458] = 1971, + [2459] = 1978, + [2460] = 2021, + [2461] = 1957, + [2462] = 1981, + [2463] = 1985, + [2464] = 1982, + [2465] = 1989, + [2466] = 1932, + [2467] = 2011, + [2468] = 2005, + [2469] = 1945, + [2470] = 1959, + [2471] = 2010, + [2472] = 2022, + [2473] = 2031, + [2474] = 1935, + [2475] = 1287, + [2476] = 1960, + [2477] = 1964, + [2478] = 1970, + [2479] = 1934, + [2480] = 1288, + [2481] = 2012, + [2482] = 2159, + [2483] = 2014, + [2484] = 2015, + [2485] = 1289, + [2486] = 1976, + [2487] = 1936, + [2488] = 1955, + [2489] = 1941, + [2490] = 1971, + [2491] = 1978, + [2492] = 2181, + [2493] = 1943, + [2494] = 1946, + [2495] = 2021, + [2496] = 1957, + [2497] = 1947, + [2498] = 1961, + [2499] = 1950, + [2500] = 1290, + [2501] = 1937, + [2502] = 1949, + [2503] = 1950, + [2504] = 1291, + [2505] = 1967, + [2506] = 1969, + [2507] = 1938, + [2508] = 1937, + [2509] = 2000, + [2510] = 1938, + [2511] = 1974, + [2512] = 1975, + [2513] = 1977, + [2514] = 1938, + [2515] = 1949, + [2516] = 1958, + [2517] = 1987, + [2518] = 1988, + [2519] = 1990, + [2520] = 1991, + [2521] = 1937, + [2522] = 1992, + [2523] = 1993, + [2524] = 2126, + [2525] = 1995, + [2526] = 2006, + [2527] = 2007, + [2528] = 1949, + [2529] = 1950, + [2530] = 2024, + [2531] = 2013, + [2532] = 2030, + [2533] = 2016, + [2534] = 2001, + [2535] = 2026, + [2536] = 2017, + [2537] = 1958, + [2538] = 2018, + [2539] = 2000, + [2540] = 2001, + [2541] = 2019, + [2542] = 2005, + [2543] = 2012, + [2544] = 2020, + [2545] = 2024, + [2546] = 2030, + [2547] = 2026, + [2548] = 2023, + [2549] = 1961, + [2550] = 2025, + [2551] = 1937, + [2552] = 1938, + [2553] = 1985, + [2554] = 1932, + [2555] = 1934, + [2556] = 1941, + [2557] = 1943, + [2558] = 1946, + [2559] = 1947, + [2560] = 1930, + [2561] = 2027, + [2562] = 1949, + [2563] = 1950, + [2564] = 1967, + [2565] = 1969, + [2566] = 1973, + [2567] = 1974, + [2568] = 1975, + [2569] = 2028, + [2570] = 1987, + [2571] = 1988, + [2572] = 1973, + [2573] = 2573, + [2574] = 2573, + [2575] = 2573, + [2576] = 2573, + [2577] = 2573, + [2578] = 1200, + [2579] = 2573, + [2580] = 2573, + [2581] = 2573, + [2582] = 2573, + [2583] = 2573, + [2584] = 2573, + [2585] = 2585, + [2586] = 2573, + [2587] = 2573, + [2588] = 2588, + [2589] = 2573, + [2590] = 2573, + [2591] = 1201, + [2592] = 2573, + [2593] = 2573, + [2594] = 2573, + [2595] = 1201, + [2596] = 1200, + [2597] = 2573, + [2598] = 955, + [2599] = 2599, + [2600] = 2600, + [2601] = 2599, + [2602] = 1210, + [2603] = 1131, + [2604] = 1212, + [2605] = 1213, + [2606] = 1048, + [2607] = 1058, + [2608] = 1209, + [2609] = 1209, + [2610] = 1211, + [2611] = 1210, + [2612] = 1058, + [2613] = 1059, + [2614] = 1211, + [2615] = 1048, + [2616] = 1059, + [2617] = 2599, + [2618] = 1213, + [2619] = 1164, + [2620] = 968, + [2621] = 1152, + [2622] = 1003, + [2623] = 1129, + [2624] = 1061, + [2625] = 1083, + [2626] = 1109, + [2627] = 1116, + [2628] = 927, + [2629] = 1127, + [2630] = 1111, + [2631] = 1152, + [2632] = 1061, + [2633] = 927, + [2634] = 1107, + [2635] = 1129, + [2636] = 1111, + [2637] = 1107, + [2638] = 2599, + [2639] = 955, + [2640] = 1164, + [2641] = 2599, + [2642] = 968, + [2643] = 1003, + [2644] = 1083, + [2645] = 1109, + [2646] = 2599, + [2647] = 1116, + [2648] = 1127, + [2649] = 2599, + [2650] = 2599, + [2651] = 2599, + [2652] = 2599, + [2653] = 2599, + [2654] = 1131, + [2655] = 2599, + [2656] = 2599, + [2657] = 2599, + [2658] = 2599, + [2659] = 2599, + [2660] = 2599, + [2661] = 2599, + [2662] = 2599, + [2663] = 1212, + [2664] = 1289, + [2665] = 2181, + [2666] = 1290, + [2667] = 1287, + [2668] = 1288, + [2669] = 1201, + [2670] = 1291, + [2671] = 2159, + [2672] = 1200, + [2673] = 1287, + [2674] = 2126, + [2675] = 2159, + [2676] = 1290, + [2677] = 1291, + [2678] = 1288, + [2679] = 2181, + [2680] = 2126, + [2681] = 1289, + [2682] = 1061, + [2683] = 927, + [2684] = 1116, + [2685] = 1111, + [2686] = 1210, + [2687] = 1058, + [2688] = 1127, + [2689] = 1003, + [2690] = 1212, + [2691] = 1048, + [2692] = 1107, + [2693] = 1164, + [2694] = 1211, + [2695] = 1059, + [2696] = 1109, + [2697] = 1083, + [2698] = 1213, + [2699] = 1131, + [2700] = 1209, + [2701] = 955, + [2702] = 1129, + [2703] = 1152, + [2704] = 968, + [2705] = 318, + [2706] = 2706, + [2707] = 2707, + [2708] = 2708, + [2709] = 2709, + [2710] = 2710, + [2711] = 2711, + [2712] = 2712, + [2713] = 2713, + [2714] = 1201, + [2715] = 1200, + [2716] = 2716, + [2717] = 2717, + [2718] = 927, + [2719] = 2719, + [2720] = 2716, + [2721] = 2721, + [2722] = 2717, + [2723] = 2719, + [2724] = 2716, + [2725] = 2721, + [2726] = 2717, + [2727] = 2719, + [2728] = 2716, + [2729] = 2719, + [2730] = 2721, + [2731] = 2717, + [2732] = 2719, + [2733] = 2719, + [2734] = 2721, + [2735] = 2717, + [2736] = 2721, + [2737] = 2717, + [2738] = 2721, + [2739] = 2716, + [2740] = 2717, + [2741] = 2719, + [2742] = 2721, + [2743] = 2717, + [2744] = 2721, + [2745] = 2717, + [2746] = 2716, + [2747] = 2721, + [2748] = 2716, + [2749] = 2719, + [2750] = 2716, + [2751] = 2721, + [2752] = 2717, + [2753] = 2716, + [2754] = 2719, + [2755] = 2719, + [2756] = 2719, + [2757] = 2721, + [2758] = 2717, + [2759] = 2716, + [2760] = 2719, + [2761] = 2721, + [2762] = 2721, + [2763] = 2717, + [2764] = 2716, + [2765] = 2717, + [2766] = 2716, + [2767] = 1083, + [2768] = 1209, + [2769] = 2716, + [2770] = 1109, + [2771] = 1116, + [2772] = 1127, + [2773] = 2719, + [2774] = 2721, + [2775] = 2719, + [2776] = 2716, + [2777] = 2721, + [2778] = 2717, + [2779] = 2717, + [2780] = 2716, + [2781] = 2721, + [2782] = 2717, + [2783] = 2716, + [2784] = 2719, + [2785] = 1107, + [2786] = 2719, + [2787] = 2721, + [2788] = 2719, + [2789] = 2717, + [2790] = 2717, + [2791] = 2721, + [2792] = 2717, + [2793] = 2716, + [2794] = 2719, + [2795] = 1210, + [2796] = 2716, + [2797] = 2721, + [2798] = 2717, + [2799] = 2716, + [2800] = 2719, + [2801] = 2719, + [2802] = 2716, + [2803] = 2719, + [2804] = 2721, + [2805] = 2717, + [2806] = 2716, + [2807] = 1211, + [2808] = 2717, + [2809] = 2721, + [2810] = 2717, + [2811] = 1131, + [2812] = 2719, + [2813] = 1129, + [2814] = 2716, + [2815] = 2716, + [2816] = 1152, + [2817] = 2716, + [2818] = 2721, + [2819] = 2717, + [2820] = 2719, + [2821] = 2719, + [2822] = 2721, + [2823] = 1048, + [2824] = 2717, + [2825] = 2719, + [2826] = 1058, + [2827] = 2716, + [2828] = 2716, + [2829] = 2719, + [2830] = 1111, + [2831] = 2719, + [2832] = 2721, + [2833] = 2719, + [2834] = 2717, + [2835] = 2716, + [2836] = 2716, + [2837] = 2721, + [2838] = 2721, + [2839] = 2717, + [2840] = 2717, + [2841] = 2721, + [2842] = 2717, + [2843] = 2716, + [2844] = 2716, + [2845] = 2845, + [2846] = 2719, + [2847] = 2719, + [2848] = 1061, + [2849] = 2721, + [2850] = 2717, + [2851] = 2721, + [2852] = 955, + [2853] = 2717, + [2854] = 2719, + [2855] = 1164, + [2856] = 2721, + [2857] = 2716, + [2858] = 1212, + [2859] = 2717, + [2860] = 2716, + [2861] = 2719, + [2862] = 968, + [2863] = 1213, + [2864] = 1059, + [2865] = 2719, + [2866] = 2719, + [2867] = 2721, + [2868] = 2717, + [2869] = 2716, + [2870] = 2716, + [2871] = 2719, + [2872] = 2721, + [2873] = 2717, + [2874] = 2721, + [2875] = 2717, + [2876] = 2721, + [2877] = 2717, + [2878] = 2716, + [2879] = 2716, + [2880] = 1003, + [2881] = 2719, + [2882] = 2721, + [2883] = 2721, + [2884] = 927, + [2885] = 1212, + [2886] = 1003, + [2887] = 1211, + [2888] = 1384, + [2889] = 1083, + [2890] = 1109, + [2891] = 1116, + [2892] = 1213, + [2893] = 1127, + [2894] = 1152, + [2895] = 1389, + [2896] = 955, + [2897] = 1061, + [2898] = 1111, + [2899] = 1390, + [2900] = 1391, + [2901] = 1131, + [2902] = 1048, + [2903] = 1058, + [2904] = 1164, + [2905] = 1059, + [2906] = 968, + [2907] = 1107, + [2908] = 1129, + [2909] = 2909, + [2910] = 2910, + [2911] = 2911, + [2912] = 2912, + [2913] = 2913, + [2914] = 2914, + [2915] = 2915, + [2916] = 2916, + [2917] = 2917, + [2918] = 2918, + [2919] = 2919, + [2920] = 2920, + [2921] = 2921, + [2922] = 2922, + [2923] = 2159, + [2924] = 2924, + [2925] = 2925, + [2926] = 2181, + [2927] = 2927, + [2928] = 2928, + [2929] = 2929, + [2930] = 2930, + [2931] = 2931, + [2932] = 2932, + [2933] = 2933, + [2934] = 2934, + [2935] = 2126, + [2936] = 1200, + [2937] = 2937, + [2938] = 1201, + [2939] = 2939, + [2940] = 1061, + [2941] = 2939, + [2942] = 1164, + [2943] = 1211, + [2944] = 927, + [2945] = 927, + [2946] = 955, + [2947] = 1164, + [2948] = 2948, + [2949] = 1213, + [2950] = 968, + [2951] = 968, + [2952] = 1003, + [2953] = 1083, + [2954] = 1109, + [2955] = 1116, + [2956] = 1127, + [2957] = 1003, + [2958] = 1131, + [2959] = 1048, + [2960] = 2939, + [2961] = 1058, + [2962] = 1059, + [2963] = 2963, + [2964] = 1129, + [2965] = 1107, + [2966] = 1209, + [2967] = 2939, + [2968] = 1131, + [2969] = 1212, + [2970] = 2937, + [2971] = 1107, + [2972] = 1109, + [2973] = 1152, + [2974] = 2974, + [2975] = 1116, + [2976] = 955, + [2977] = 1083, + [2978] = 1061, + [2979] = 2937, + [2980] = 1210, + [2981] = 1152, + [2982] = 1111, + [2983] = 1129, + [2984] = 1059, + [2985] = 1111, + [2986] = 1048, + [2987] = 1127, + [2988] = 1058, + [2989] = 2937, + [2990] = 2974, + [2991] = 2948, + [2992] = 2948, + [2993] = 1390, + [2994] = 2974, + [2995] = 1391, + [2996] = 2963, + [2997] = 2963, + [2998] = 1389, + [2999] = 2948, + [3000] = 2963, + [3001] = 2974, + [3002] = 1384, + [3003] = 2925, + [3004] = 2930, + [3005] = 2126, + [3006] = 1200, + [3007] = 2921, + [3008] = 2939, + [3009] = 2937, + [3010] = 2939, + [3011] = 2912, + [3012] = 3012, + [3013] = 3013, + [3014] = 2181, + [3015] = 2910, + [3016] = 2937, + [3017] = 1201, + [3018] = 2934, + [3019] = 2918, + [3020] = 2939, + [3021] = 2928, + [3022] = 2920, + [3023] = 2922, + [3024] = 3024, + [3025] = 2909, + [3026] = 2939, + [3027] = 2911, + [3028] = 2915, + [3029] = 2939, + [3030] = 2932, + [3031] = 2914, + [3032] = 2931, + [3033] = 2916, + [3034] = 2933, + [3035] = 2159, + [3036] = 3036, + [3037] = 2937, + [3038] = 2937, + [3039] = 1201, + [3040] = 2937, + [3041] = 2929, + [3042] = 2913, + [3043] = 2927, + [3044] = 2924, + [3045] = 2919, + [3046] = 3046, + [3047] = 3047, + [3048] = 3048, + [3049] = 2917, + [3050] = 1200, + [3051] = 3051, + [3052] = 1131, + [3053] = 3047, + [3054] = 1083, + [3055] = 1003, + [3056] = 1109, + [3057] = 1116, + [3058] = 1127, + [3059] = 3036, + [3060] = 1152, + [3061] = 1061, + [3062] = 1083, + [3063] = 927, + [3064] = 2948, + [3065] = 3051, + [3066] = 1131, + [3067] = 1048, + [3068] = 2974, + [3069] = 2948, + [3070] = 1058, + [3071] = 1107, + [3072] = 1129, + [3073] = 1109, + [3074] = 1059, + [3075] = 2963, + [3076] = 1111, + [3077] = 3013, + [3078] = 3048, + [3079] = 955, + [3080] = 1164, + [3081] = 968, + [3082] = 1003, + [3083] = 3048, + [3084] = 1083, + [3085] = 1109, + [3086] = 1116, + [3087] = 1127, + [3088] = 2948, + [3089] = 3024, + [3090] = 3024, + [3091] = 1131, + [3092] = 1048, + [3093] = 1058, + [3094] = 3012, + [3095] = 1059, + [3096] = 2974, + [3097] = 2963, + [3098] = 3098, + [3099] = 3012, + [3100] = 2974, + [3101] = 3036, + [3102] = 3098, + [3103] = 3046, + [3104] = 3013, + [3105] = 3098, + [3106] = 1116, + [3107] = 3046, + [3108] = 3098, + [3109] = 3109, + [3110] = 1111, + [3111] = 3051, + [3112] = 3047, + [3113] = 3051, + [3114] = 3098, + [3115] = 3013, + [3116] = 1127, + [3117] = 3024, + [3118] = 3012, + [3119] = 3098, + [3120] = 1209, + [3121] = 3048, + [3122] = 1212, + [3123] = 3098, + [3124] = 3098, + [3125] = 2974, + [3126] = 1210, + [3127] = 3098, + [3128] = 3036, + [3129] = 1209, + [3130] = 1211, + [3131] = 955, + [3132] = 3098, + [3133] = 2948, + [3134] = 1048, + [3135] = 1058, + [3136] = 3098, + [3137] = 3098, + [3138] = 1059, + [3139] = 3098, + [3140] = 1213, + [3141] = 3098, + [3142] = 2974, + [3143] = 3098, + [3144] = 3098, + [3145] = 3098, + [3146] = 1212, + [3147] = 955, + [3148] = 3098, + [3149] = 2963, + [3150] = 3098, + [3151] = 1213, + [3152] = 3098, + [3153] = 3098, + [3154] = 3098, + [3155] = 3098, + [3156] = 1164, + [3157] = 3046, + [3158] = 1211, + [3159] = 1164, + [3160] = 968, + [3161] = 1210, + [3162] = 1152, + [3163] = 1061, + [3164] = 2963, + [3165] = 927, + [3166] = 1107, + [3167] = 3047, + [3168] = 2948, + [3169] = 968, + [3170] = 1129, + [3171] = 1003, + [3172] = 2963, + [3173] = 1384, + [3174] = 1391, + [3175] = 1390, + [3176] = 1390, + [3177] = 3177, + [3178] = 1389, + [3179] = 1384, + [3180] = 1391, + [3181] = 1389, + [3182] = 2911, + [3183] = 3012, + [3184] = 3048, + [3185] = 3046, + [3186] = 2913, + [3187] = 2920, + [3188] = 3188, + [3189] = 3051, + [3190] = 3190, + [3191] = 2921, + [3192] = 2915, + [3193] = 3013, + [3194] = 2921, + [3195] = 3195, + [3196] = 3024, + [3197] = 2929, + [3198] = 3012, + [3199] = 2910, + [3200] = 3047, + [3201] = 3190, + [3202] = 3202, + [3203] = 3203, + [3204] = 2912, + [3205] = 3205, + [3206] = 3188, + [3207] = 3024, + [3208] = 3048, + [3209] = 3195, + [3210] = 3013, + [3211] = 3211, + [3212] = 3046, + [3213] = 3213, + [3214] = 3205, + [3215] = 2928, + [3216] = 3188, + [3217] = 2912, + [3218] = 3195, + [3219] = 3036, + [3220] = 3202, + [3221] = 2929, + [3222] = 3211, + [3223] = 3213, + [3224] = 3211, + [3225] = 3213, + [3226] = 3013, + [3227] = 2913, + [3228] = 3051, + [3229] = 2928, + [3230] = 2930, + [3231] = 2911, + [3232] = 2915, [3233] = 3233, [3234] = 3233, - [3235] = 3235, - [3236] = 3236, - [3237] = 3227, - [3238] = 3236, - [3239] = 3233, - [3240] = 3235, - [3241] = 3241, - [3242] = 1405, - [3243] = 3233, + [3235] = 3233, + [3236] = 3024, + [3237] = 2922, + [3238] = 2931, + [3239] = 2909, + [3240] = 2916, + [3241] = 3036, + [3242] = 3202, + [3243] = 2919, [3244] = 3244, - [3245] = 3245, - [3246] = 3246, - [3247] = 3244, - [3248] = 3245, - [3249] = 3235, - [3250] = 3232, - [3251] = 3244, - [3252] = 3241, - [3253] = 3245, - [3254] = 3246, - [3255] = 3246, - [3256] = 1407, - [3257] = 3230, - [3258] = 3236, - [3259] = 3241, - [3260] = 3245, - [3261] = 3227, - [3262] = 3246, - [3263] = 3232, - [3264] = 3235, - [3265] = 3232, - [3266] = 1383, - [3267] = 3236, - [3268] = 3241, - [3269] = 1376, - [3270] = 1407, - [3271] = 1405, - [3272] = 3230, - [3273] = 3244, - [3274] = 3227, - [3275] = 2987, - [3276] = 3127, - [3277] = 3111, - [3278] = 2968, - [3279] = 2973, - [3280] = 2975, - [3281] = 3111, - [3282] = 2961, - [3283] = 2242, - [3284] = 2964, - [3285] = 2986, - [3286] = 2968, - [3287] = 2973, - [3288] = 2286, - [3289] = 2975, - [3290] = 2971, - [3291] = 2969, - [3292] = 3129, - [3293] = 3293, - [3294] = 2987, - [3295] = 3124, - [3296] = 2972, - [3297] = 2976, - [3298] = 2980, - [3299] = 3129, - [3300] = 2983, - [3301] = 3124, - [3302] = 2965, - [3303] = 2981, - [3304] = 3085, - [3305] = 3128, - [3306] = 2964, - [3307] = 3111, - [3308] = 2982, - [3309] = 3127, - [3310] = 3127, - [3311] = 3128, - [3312] = 3128, - [3313] = 3129, - [3314] = 3127, - [3315] = 3131, - [3316] = 3131, - [3317] = 2961, - [3318] = 2980, - [3319] = 3132, - [3320] = 3129, - [3321] = 2981, - [3322] = 3131, - [3323] = 2242, - [3324] = 3132, - [3325] = 3111, - [3326] = 2984, - [3327] = 3111, - [3328] = 3085, - [3329] = 2977, - [3330] = 3085, - [3331] = 2982, - [3332] = 3128, - [3333] = 3128, - [3334] = 2966, - [3335] = 2966, - [3336] = 2985, - [3337] = 2986, - [3338] = 3129, - [3339] = 2976, - [3340] = 3132, - [3341] = 2967, - [3342] = 3131, - [3343] = 2984, - [3344] = 3132, - [3345] = 2979, - [3346] = 2970, - [3347] = 3131, - [3348] = 3124, - [3349] = 2293, - [3350] = 3124, - [3351] = 2978, - [3352] = 3132, - [3353] = 2979, - [3354] = 3085, - [3355] = 2967, - [3356] = 2293, - [3357] = 2970, - [3358] = 2969, - [3359] = 2983, - [3360] = 2977, - [3361] = 3085, - [3362] = 2985, - [3363] = 2286, - [3364] = 2972, - [3365] = 2971, - [3366] = 2978, - [3367] = 3127, - [3368] = 3124, - [3369] = 2965, - [3370] = 3370, - [3371] = 1168, + [3245] = 3211, + [3246] = 2934, + [3247] = 3190, + [3248] = 3048, + [3249] = 3012, + [3250] = 2909, + [3251] = 2914, + [3252] = 3012, + [3253] = 3046, + [3254] = 2918, + [3255] = 2159, + [3256] = 3036, + [3257] = 2931, + [3258] = 2919, + [3259] = 2934, + [3260] = 2914, + [3261] = 2918, + [3262] = 3213, + [3263] = 2159, + [3264] = 3036, + [3265] = 3203, + [3266] = 2925, + [3267] = 3046, + [3268] = 2925, + [3269] = 2920, + [3270] = 3048, + [3271] = 2910, + [3272] = 3047, + [3273] = 2932, + [3274] = 2924, + [3275] = 2933, + [3276] = 3036, + [3277] = 2181, + [3278] = 2922, + [3279] = 2916, + [3280] = 2917, + [3281] = 3046, + [3282] = 3244, + [3283] = 2126, + [3284] = 3047, + [3285] = 3051, + [3286] = 3048, + [3287] = 2930, + [3288] = 3013, + [3289] = 2181, + [3290] = 3047, + [3291] = 3024, + [3292] = 3013, + [3293] = 3012, + [3294] = 3244, + [3295] = 3233, + [3296] = 2924, + [3297] = 3051, + [3298] = 2126, + [3299] = 3047, + [3300] = 2927, + [3301] = 3024, + [3302] = 2932, + [3303] = 3190, + [3304] = 2933, + [3305] = 3051, + [3306] = 3202, + [3307] = 3203, + [3308] = 3205, + [3309] = 3203, + [3310] = 3244, + [3311] = 2917, + [3312] = 3188, + [3313] = 3205, + [3314] = 3195, + [3315] = 2927, + [3316] = 3316, + [3317] = 3316, + [3318] = 3318, + [3319] = 3319, + [3320] = 1201, + [3321] = 3316, + [3322] = 3318, + [3323] = 3319, + [3324] = 3316, + [3325] = 1200, + [3326] = 3319, + [3327] = 3319, + [3328] = 3318, + [3329] = 3318, + [3330] = 318, + [3331] = 3331, + [3332] = 1210, + [3333] = 1164, + [3334] = 1129, + [3335] = 1212, + [3336] = 3331, + [3337] = 1116, + [3338] = 1213, + [3339] = 1083, + [3340] = 1127, + [3341] = 1003, + [3342] = 1061, + [3343] = 955, + [3344] = 3331, + [3345] = 1059, + [3346] = 927, + [3347] = 1111, + [3348] = 1131, + [3349] = 1211, + [3350] = 1048, + [3351] = 1209, + [3352] = 1152, + [3353] = 1058, + [3354] = 1107, + [3355] = 968, + [3356] = 1109, + [3357] = 3331, + [3358] = 3358, + [3359] = 3359, + [3360] = 3359, + [3361] = 3359, + [3362] = 3359, + [3363] = 3359, + [3364] = 3364, + [3365] = 3359, + [3366] = 3359, + [3367] = 3359, + [3368] = 3368, + [3369] = 3369, + [3370] = 3369, + [3371] = 3371, [3372] = 3372, - [3373] = 3372, - [3374] = 3374, - [3375] = 3372, - [3376] = 3374, - [3377] = 3370, - [3378] = 3370, - [3379] = 1169, - [3380] = 3374, + [3373] = 3371, + [3374] = 3371, + [3375] = 3369, + [3376] = 3369, + [3377] = 3372, + [3378] = 3372, + [3379] = 3379, + [3380] = 3372, [3381] = 3372, - [3382] = 3374, - [3383] = 3370, - [3384] = 3384, - [3385] = 3384, - [3386] = 1219, - [3387] = 955, - [3388] = 3388, - [3389] = 1053, - [3390] = 918, - [3391] = 989, - [3392] = 3384, - [3393] = 1109, - [3394] = 947, - [3395] = 1201, - [3396] = 969, - [3397] = 1220, - [3398] = 1022, - [3399] = 1063, - [3400] = 1207, - [3401] = 1076, - [3402] = 910, - [3403] = 1210, - [3404] = 925, - [3405] = 927, - [3406] = 1115, - [3407] = 1026, - [3408] = 1081, - [3409] = 930, - [3410] = 3384, - [3411] = 1033, - [3412] = 3412, - [3413] = 3413, - [3414] = 3414, - [3415] = 3415, - [3416] = 3416, - [3417] = 3417, - [3418] = 3417, - [3419] = 3414, - [3420] = 3005, - [3421] = 3421, - [3422] = 3416, - [3423] = 3415, - [3424] = 3414, - [3425] = 3414, - [3426] = 3415, - [3427] = 3417, - [3428] = 3417, - [3429] = 3415, - [3430] = 3417, - [3431] = 3416, - [3432] = 3416, - [3433] = 3416, - [3434] = 3416, - [3435] = 3435, - [3436] = 309, - [3437] = 3416, - [3438] = 3415, + [3382] = 3382, + [3383] = 3371, + [3384] = 3371, + [3385] = 3371, + [3386] = 3369, + [3387] = 3387, + [3388] = 3369, + [3389] = 3369, + [3390] = 3372, + [3391] = 3371, + [3392] = 3369, + [3393] = 3372, + [3394] = 3394, + [3395] = 3369, + [3396] = 3372, + [3397] = 3369, + [3398] = 3372, + [3399] = 3387, + [3400] = 3371, + [3401] = 3401, + [3402] = 3369, + [3403] = 3369, + [3404] = 3371, + [3405] = 3387, + [3406] = 3371, + [3407] = 3369, + [3408] = 3371, + [3409] = 3372, + [3410] = 3410, + [3411] = 3372, + [3412] = 3401, + [3413] = 3372, + [3414] = 3410, + [3415] = 3371, + [3416] = 3371, + [3417] = 3387, + [3418] = 3369, + [3419] = 3401, + [3420] = 3371, + [3421] = 3410, + [3422] = 3369, + [3423] = 3372, + [3424] = 3401, + [3425] = 3410, + [3426] = 3372, + [3427] = 3372, + [3428] = 3372, + [3429] = 3371, + [3430] = 3371, + [3431] = 3431, + [3432] = 3371, + [3433] = 3387, + [3434] = 3369, + [3435] = 3369, + [3436] = 3387, + [3437] = 3369, + [3438] = 3369, [3439] = 3439, - [3440] = 3417, - [3441] = 3414, - [3442] = 3415, - [3443] = 3415, - [3444] = 3417, - [3445] = 3414, - [3446] = 3006, - [3447] = 3414, - [3448] = 3417, - [3449] = 3416, - [3450] = 3417, - [3451] = 3435, - [3452] = 3416, - [3453] = 3417, - [3454] = 3439, - [3455] = 3455, - [3456] = 3415, - [3457] = 3435, - [3458] = 3458, - [3459] = 3439, - [3460] = 3415, - [3461] = 3417, - [3462] = 3415, - [3463] = 3006, - [3464] = 3416, - [3465] = 3416, - [3466] = 3416, - [3467] = 3467, - [3468] = 3414, - [3469] = 3416, - [3470] = 3415, - [3471] = 3416, - [3472] = 3417, - [3473] = 3416, - [3474] = 3417, - [3475] = 3415, - [3476] = 3415, - [3477] = 3415, - [3478] = 3415, - [3479] = 3415, - [3480] = 3416, - [3481] = 3417, - [3482] = 3415, - [3483] = 3416, - [3484] = 3439, - [3485] = 3485, - [3486] = 3416, - [3487] = 3415, - [3488] = 3414, - [3489] = 3414, - [3490] = 3417, - [3491] = 3417, - [3492] = 3417, - [3493] = 3415, - [3494] = 3414, - [3495] = 3435, - [3496] = 3417, - [3497] = 3417, - [3498] = 3416, - [3499] = 309, - [3500] = 3414, - [3501] = 3005, - [3502] = 3007, - [3503] = 3416, - [3504] = 3007, - [3505] = 3415, - [3506] = 3416, - [3507] = 3414, - [3508] = 3416, - [3509] = 3416, - [3510] = 3415, - [3511] = 3417, - [3512] = 3417, - [3513] = 3417, - [3514] = 3415, - [3515] = 3415, - [3516] = 3417, - [3517] = 3417, - [3518] = 3417, - [3519] = 3415, - [3520] = 3416, - [3521] = 3521, - [3522] = 3414, - [3523] = 3414, - [3524] = 3417, - [3525] = 3417, - [3526] = 3417, - [3527] = 3415, - [3528] = 3417, - [3529] = 3415, + [3440] = 3387, + [3441] = 3372, + [3442] = 3371, + [3443] = 3369, + [3444] = 3387, + [3445] = 3371, + [3446] = 3371, + [3447] = 3372, + [3448] = 3387, + [3449] = 3369, + [3450] = 3369, + [3451] = 3371, + [3452] = 3369, + [3453] = 3372, + [3454] = 3372, + [3455] = 3372, + [3456] = 3387, + [3457] = 3369, + [3458] = 3371, + [3459] = 3371, + [3460] = 3387, + [3461] = 3371, + [3462] = 3369, + [3463] = 3372, + [3464] = 3464, + [3465] = 3372, + [3466] = 3371, + [3467] = 3372, + [3468] = 3369, + [3469] = 3387, + [3470] = 3372, + [3471] = 3369, + [3472] = 3371, + [3473] = 3387, + [3474] = 3369, + [3475] = 3372, + [3476] = 3372, + [3477] = 3477, + [3478] = 3387, + [3479] = 3371, + [3480] = 3372, + [3481] = 3371, + [3482] = 3371, + [3483] = 3387, + [3484] = 3372, + [3485] = 3369, + [3486] = 3369, + [3487] = 3372, + [3488] = 3371, + [3489] = 3371, + [3490] = 3369, + [3491] = 3491, + [3492] = 3372, + [3493] = 3372, + [3494] = 3387, + [3495] = 3371, + [3496] = 3372, + [3497] = 3369, + [3498] = 3387, + [3499] = 3369, + [3500] = 3369, + [3501] = 3369, + [3502] = 3371, + [3503] = 3387, + [3504] = 3369, + [3505] = 3387, + [3506] = 3506, + [3507] = 3507, + [3508] = 3507, + [3509] = 3506, + [3510] = 3506, + [3511] = 3506, + [3512] = 3506, + [3513] = 3507, + [3514] = 3514, + [3515] = 3506, + [3516] = 3506, + [3517] = 3507, + [3518] = 3518, + [3519] = 3519, + [3520] = 3506, + [3521] = 3507, + [3522] = 3506, + [3523] = 3506, + [3524] = 3507, + [3525] = 3506, + [3526] = 3506, + [3527] = 3519, + [3528] = 3514, + [3529] = 3506, [3530] = 3530, - [3531] = 3416, - [3532] = 3416, - [3533] = 3415, - [3534] = 3416, - [3535] = 3417, - [3536] = 3415, - [3537] = 3537, - [3538] = 3415, - [3539] = 3417, - [3540] = 3417, - [3541] = 3417, - [3542] = 3416, - [3543] = 3415, - [3544] = 3414, - [3545] = 3416, - [3546] = 3414, - [3547] = 3415, - [3548] = 3417, - [3549] = 3414, - [3550] = 3416, - [3551] = 3416, - [3552] = 3417, - [3553] = 3415, - [3554] = 3416, - [3555] = 3555, - [3556] = 3556, - [3557] = 3556, - [3558] = 3556, - [3559] = 3559, - [3560] = 3556, - [3561] = 3556, - [3562] = 3562, - [3563] = 3562, - [3564] = 3556, - [3565] = 3565, - [3566] = 3555, - [3567] = 3562, - [3568] = 3556, - [3569] = 3556, - [3570] = 3556, - [3571] = 3571, - [3572] = 3556, - [3573] = 3556, - [3574] = 3556, - [3575] = 3556, + [3531] = 3507, + [3532] = 3507, + [3533] = 3506, + [3534] = 3506, + [3535] = 3506, + [3536] = 3507, + [3537] = 3506, + [3538] = 3507, + [3539] = 3506, + [3540] = 3506, + [3541] = 3518, + [3542] = 3506, + [3543] = 3506, + [3544] = 3506, + [3545] = 3507, + [3546] = 3514, + [3547] = 3507, + [3548] = 3506, + [3549] = 3549, + [3550] = 3514, + [3551] = 3506, + [3552] = 3518, + [3553] = 3506, + [3554] = 3514, + [3555] = 3506, + [3556] = 3507, + [3557] = 3519, + [3558] = 3507, + [3559] = 3518, + [3560] = 3506, + [3561] = 3506, + [3562] = 3507, + [3563] = 3506, + [3564] = 3519, + [3565] = 3507, + [3566] = 3507, + [3567] = 3507, + [3568] = 3506, + [3569] = 3507, + [3570] = 3506, + [3571] = 3514, + [3572] = 3514, + [3573] = 3514, + [3574] = 3514, + [3575] = 3506, [3576] = 3576, - [3577] = 3555, - [3578] = 3556, - [3579] = 3556, - [3580] = 3556, - [3581] = 3576, - [3582] = 3555, - [3583] = 3562, - [3584] = 3562, - [3585] = 3556, - [3586] = 3556, - [3587] = 3556, - [3588] = 3562, - [3589] = 3576, - [3590] = 3556, - [3591] = 3556, - [3592] = 3562, - [3593] = 3559, - [3594] = 3556, - [3595] = 3576, - [3596] = 3562, - [3597] = 3559, - [3598] = 3562, - [3599] = 3562, - [3600] = 3556, - [3601] = 3559, - [3602] = 3562, - [3603] = 3562, - [3604] = 3556, - [3605] = 3556, - [3606] = 3562, - [3607] = 3562, - [3608] = 3556, - [3609] = 3562, - [3610] = 3562, - [3611] = 3556, - [3612] = 3556, - [3613] = 3562, - [3614] = 3556, - [3615] = 3556, - [3616] = 3562, - [3617] = 3559, - [3618] = 3559, - [3619] = 3559, - [3620] = 3559, - [3621] = 3559, - [3622] = 3556, + [3577] = 3577, + [3578] = 3578, + [3579] = 3579, + [3580] = 3580, + [3581] = 3579, + [3582] = 3582, + [3583] = 3583, + [3584] = 3584, + [3585] = 3580, + [3586] = 3586, + [3587] = 3587, + [3588] = 3582, + [3589] = 3582, + [3590] = 3590, + [3591] = 3591, + [3592] = 3590, + [3593] = 3582, + [3594] = 3594, + [3595] = 3578, + [3596] = 3596, + [3597] = 3580, + [3598] = 3579, + [3599] = 3599, + [3600] = 3600, + [3601] = 3601, + [3602] = 3602, + [3603] = 3603, + [3604] = 3590, + [3605] = 3605, + [3606] = 3606, + [3607] = 3590, + [3608] = 3582, + [3609] = 3609, + [3610] = 3580, + [3611] = 3590, + [3612] = 3577, + [3613] = 3582, + [3614] = 3614, + [3615] = 3578, + [3616] = 3577, + [3617] = 3580, + [3618] = 3590, + [3619] = 3582, + [3620] = 3603, + [3621] = 3590, + [3622] = 3584, [3623] = 3623, - [3624] = 3624, + [3624] = 3580, [3625] = 3625, - [3626] = 3626, - [3627] = 3627, - [3628] = 3628, - [3629] = 3629, - [3630] = 3628, - [3631] = 3631, - [3632] = 3627, + [3626] = 3582, + [3627] = 3578, + [3628] = 3603, + [3629] = 3584, + [3630] = 3590, + [3631] = 3590, + [3632] = 3582, [3633] = 3633, - [3634] = 3634, - [3635] = 3633, - [3636] = 3629, + [3634] = 3594, + [3635] = 3603, + [3636] = 3584, [3637] = 3637, - [3638] = 3633, - [3639] = 3639, - [3640] = 3634, - [3641] = 3641, - [3642] = 3624, - [3643] = 3627, - [3644] = 3625, - [3645] = 3627, - [3646] = 3633, - [3647] = 3627, - [3648] = 3629, - [3649] = 3633, - [3650] = 3627, - [3651] = 3651, - [3652] = 3633, - [3653] = 3633, - [3654] = 3633, - [3655] = 3633, - [3656] = 3628, - [3657] = 3629, - [3658] = 3625, - [3659] = 3627, - [3660] = 3624, - [3661] = 3661, - [3662] = 3627, + [3638] = 3582, + [3639] = 3578, + [3640] = 3579, + [3641] = 3582, + [3642] = 3642, + [3643] = 3579, + [3644] = 3600, + [3645] = 3580, + [3646] = 3591, + [3647] = 3599, + [3648] = 3582, + [3649] = 3590, + [3650] = 3603, + [3651] = 3590, + [3652] = 3584, + [3653] = 3578, + [3654] = 3580, + [3655] = 3579, + [3656] = 3580, + [3657] = 3582, + [3658] = 3590, + [3659] = 3623, + [3660] = 3586, + [3661] = 3580, + [3662] = 3633, [3663] = 3637, - [3664] = 3651, - [3665] = 3637, - [3666] = 3651, - [3667] = 3651, - [3668] = 3627, - [3669] = 3627, - [3670] = 3633, + [3664] = 3580, + [3665] = 3582, + [3666] = 3590, + [3667] = 3633, + [3668] = 3668, + [3669] = 3580, + [3670] = 3580, [3671] = 3625, - [3672] = 3633, - [3673] = 3639, - [3674] = 3624, - [3675] = 3625, - [3676] = 3676, - [3677] = 3637, - [3678] = 3661, - [3679] = 3627, - [3680] = 3631, - [3681] = 3639, - [3682] = 3639, - [3683] = 3624, - [3684] = 3684, - [3685] = 3625, - [3686] = 3639, - [3687] = 3627, - [3688] = 3688, - [3689] = 3689, - [3690] = 3624, - [3691] = 3691, - [3692] = 3692, - [3693] = 3693, - [3694] = 3694, - [3695] = 3695, - [3696] = 3627, - [3697] = 3625, - [3698] = 3639, - [3699] = 3633, - [3700] = 3637, - [3701] = 3627, - [3702] = 3688, - [3703] = 3703, - [3704] = 3704, - [3705] = 3624, - [3706] = 3706, - [3707] = 3639, - [3708] = 3633, - [3709] = 3709, - [3710] = 3633, - [3711] = 3711, - [3712] = 3627, - [3713] = 3684, - [3714] = 3625, - [3715] = 3651, - [3716] = 3633, - [3717] = 3624, - [3718] = 3625, - [3719] = 3625, - [3720] = 3637, - [3721] = 3651, - [3722] = 3637, - [3723] = 3625, - [3724] = 3684, - [3725] = 3637, - [3726] = 3625, - [3727] = 3639, - [3728] = 3639, - [3729] = 3633, - [3730] = 3624, - [3731] = 3637, - [3732] = 3639, - [3733] = 3624, - [3734] = 3625, - [3735] = 3651, - [3736] = 3628, - [3737] = 3629, - [3738] = 3651, - [3739] = 3651, - [3740] = 3624, - [3741] = 3627, - [3742] = 3639, - [3743] = 3709, - [3744] = 3625, - [3745] = 3689, - [3746] = 3624, - [3747] = 3625, - [3748] = 3627, - [3749] = 3627, - [3750] = 3639, - [3751] = 3627, - [3752] = 3624, - [3753] = 3627, - [3754] = 3625, - [3755] = 3627, - [3756] = 3633, - [3757] = 3625, - [3758] = 3627, - [3759] = 3625, - [3760] = 3760, - [3761] = 3626, - [3762] = 3633, - [3763] = 3633, - [3764] = 3633, - [3765] = 3627, - [3766] = 3625, - [3767] = 3633, - [3768] = 3633, - [3769] = 3633, - [3770] = 3676, - [3771] = 3771, - [3772] = 3625, - [3773] = 3637, - [3774] = 3651, - [3775] = 3661, - [3776] = 3637, - [3777] = 3676, - [3778] = 3778, - [3779] = 3628, - [3780] = 3661, - [3781] = 3625, - [3782] = 3629, - [3783] = 3651, - [3784] = 3684, - [3785] = 3637, - [3786] = 3651, - [3787] = 3684, - [3788] = 3633, - [3789] = 3627, - [3790] = 3703, - [3791] = 3689, - [3792] = 3627, - [3793] = 3691, - [3794] = 3692, - [3795] = 3639, - [3796] = 3694, - [3797] = 3695, - [3798] = 3689, - [3799] = 3799, - [3800] = 3691, - [3801] = 3692, - [3802] = 3639, - [3803] = 3688, - [3804] = 3703, - [3805] = 3704, - [3806] = 3624, - [3807] = 3625, - [3808] = 3623, - [3809] = 3627, - [3810] = 3709, - [3811] = 3637, - [3812] = 3651, - [3813] = 3694, - [3814] = 3695, - [3815] = 3627, - [3816] = 3637, - [3817] = 3651, - [3818] = 3633, - [3819] = 3627, - [3820] = 3633, - [3821] = 3626, - [3822] = 3633, - [3823] = 3625, - [3824] = 3688, - [3825] = 3633, - [3826] = 3639, - [3827] = 3624, - [3828] = 3625, - [3829] = 3703, - [3830] = 3628, - [3831] = 3629, - [3832] = 3631, - [3833] = 3633, - [3834] = 3637, - [3835] = 3634, - [3836] = 3627, - [3837] = 3704, - [3838] = 3627, - [3839] = 3637, - [3840] = 3651, - [3841] = 3633, - [3842] = 3692, - [3843] = 3625, - [3844] = 3627, - [3845] = 3639, - [3846] = 3624, - [3847] = 3625, - [3848] = 3639, - [3849] = 3624, - [3850] = 3639, - [3851] = 3625, - [3852] = 3709, - [3853] = 3624, - [3854] = 3684, - [3855] = 3633, - [3856] = 3625, - [3857] = 3623, - [3858] = 3625, - [3859] = 3859, - [3860] = 3624, - [3861] = 3693, - [3862] = 3637, - [3863] = 3627, - [3864] = 3627, - [3865] = 3627, - [3866] = 3623, - [3867] = 3637, - [3868] = 3637, - [3869] = 3625, - [3870] = 3693, - [3871] = 3651, - [3872] = 3633, - [3873] = 3637, - [3874] = 3651, - [3875] = 3623, - [3876] = 3628, - [3877] = 3626, - [3878] = 3676, - [3879] = 3693, - [3880] = 3694, - [3881] = 3633, - [3882] = 3651, - [3883] = 3651, - [3884] = 3623, - [3885] = 3637, - [3886] = 3631, - [3887] = 3637, - [3888] = 3623, - [3889] = 3651, - [3890] = 3639, - [3891] = 3624, - [3892] = 3623, - [3893] = 3634, - [3894] = 3625, - [3895] = 3628, - [3896] = 3623, - [3897] = 3639, - [3898] = 3629, - [3899] = 3651, - [3900] = 3633, - [3901] = 3684, - [3902] = 3627, - [3903] = 3691, - [3904] = 3623, - [3905] = 3625, - [3906] = 3623, - [3907] = 3625, - [3908] = 3623, - [3909] = 3639, - [3910] = 3623, - [3911] = 3651, - [3912] = 3623, - [3913] = 3624, - [3914] = 3623, - [3915] = 3695, - [3916] = 3623, - [3917] = 3625, - [3918] = 3623, - [3919] = 3625, - [3920] = 3623, - [3921] = 3627, - [3922] = 3623, - [3923] = 3623, - [3924] = 3623, - [3925] = 3623, - [3926] = 3623, - [3927] = 3623, - [3928] = 3623, - [3929] = 3623, - [3930] = 3623, - [3931] = 3623, - [3932] = 3623, - [3933] = 3623, - [3934] = 3623, - [3935] = 3623, - [3936] = 3639, - [3937] = 3624, - [3938] = 3625, - [3939] = 3633, - [3940] = 3704, - [3941] = 3684, + [3672] = 3578, + [3673] = 3603, + [3674] = 3668, + [3675] = 3603, + [3676] = 3603, + [3677] = 3642, + [3678] = 3584, + [3679] = 3578, + [3680] = 3584, + [3681] = 3579, + [3682] = 3590, + [3683] = 3600, + [3684] = 3582, + [3685] = 3578, + [3686] = 3637, + [3687] = 3578, + [3688] = 3579, + [3689] = 3582, + [3690] = 3580, + [3691] = 3578, + [3692] = 3637, + [3693] = 3579, + [3694] = 3582, + [3695] = 3582, + [3696] = 3668, + [3697] = 3590, + [3698] = 3584, + [3699] = 3623, + [3700] = 3582, + [3701] = 3600, + [3702] = 3580, + [3703] = 3578, + [3704] = 3579, + [3705] = 3603, + [3706] = 3578, + [3707] = 3602, + [3708] = 3590, + [3709] = 3600, + [3710] = 3590, + [3711] = 3590, + [3712] = 3668, + [3713] = 3601, + [3714] = 3584, + [3715] = 3579, + [3716] = 3590, + [3717] = 3580, + [3718] = 3587, + [3719] = 3579, + [3720] = 3602, + [3721] = 3580, + [3722] = 3603, + [3723] = 3584, + [3724] = 3578, + [3725] = 3579, + [3726] = 3580, + [3727] = 3590, + [3728] = 3668, + [3729] = 3580, + [3730] = 3582, + [3731] = 3601, + [3732] = 3579, + [3733] = 3633, + [3734] = 3580, + [3735] = 3578, + [3736] = 3578, + [3737] = 3579, + [3738] = 3582, + [3739] = 3590, + [3740] = 3582, + [3741] = 3601, + [3742] = 3633, + [3743] = 3637, + [3744] = 3590, + [3745] = 3579, + [3746] = 3578, + [3747] = 3590, + [3748] = 3580, + [3749] = 3603, + [3750] = 3580, + [3751] = 3582, + [3752] = 3637, + [3753] = 3584, + [3754] = 3584, + [3755] = 3590, + [3756] = 3582, + [3757] = 3582, + [3758] = 3587, + [3759] = 3596, + [3760] = 3614, + [3761] = 3579, + [3762] = 3580, + [3763] = 3582, + [3764] = 3668, + [3765] = 3579, + [3766] = 3603, + [3767] = 3584, + [3768] = 3603, + [3769] = 3578, + [3770] = 3579, + [3771] = 3582, + [3772] = 3633, + [3773] = 3580, + [3774] = 3590, + [3775] = 3578, + [3776] = 3578, + [3777] = 3579, + [3778] = 3582, + [3779] = 3579, + [3780] = 3637, + [3781] = 3590, + [3782] = 3582, + [3783] = 3590, + [3784] = 3580, + [3785] = 3590, + [3786] = 3786, + [3787] = 3633, + [3788] = 3584, + [3789] = 3590, + [3790] = 3586, + [3791] = 3590, + [3792] = 3600, + [3793] = 3637, + [3794] = 3580, + [3795] = 3580, + [3796] = 3603, + [3797] = 3603, + [3798] = 3590, + [3799] = 3580, + [3800] = 3596, + [3801] = 3590, + [3802] = 3580, + [3803] = 3625, + [3804] = 3591, + [3805] = 3602, + [3806] = 3582, + [3807] = 3590, + [3808] = 3594, + [3809] = 3580, + [3810] = 3603, + [3811] = 3584, + [3812] = 3600, + [3813] = 3584, + [3814] = 3580, + [3815] = 3582, + [3816] = 3603, + [3817] = 3642, + [3818] = 3818, + [3819] = 3584, + [3820] = 3578, + [3821] = 3579, + [3822] = 3582, + [3823] = 3587, + [3824] = 3576, + [3825] = 3600, + [3826] = 3584, + [3827] = 3614, + [3828] = 3786, + [3829] = 3580, + [3830] = 3582, + [3831] = 3609, + [3832] = 3582, + [3833] = 3576, + [3834] = 3590, + [3835] = 3577, + [3836] = 3836, + [3837] = 3786, + [3838] = 3599, + [3839] = 3590, + [3840] = 3668, + [3841] = 3582, + [3842] = 3576, + [3843] = 3623, + [3844] = 3580, + [3845] = 3578, + [3846] = 3786, + [3847] = 3596, + [3848] = 3603, + [3849] = 3584, + [3850] = 3582, + [3851] = 3576, + [3852] = 3590, + [3853] = 3853, + [3854] = 3580, + [3855] = 3576, + [3856] = 3603, + [3857] = 3584, + [3858] = 3586, + [3859] = 3576, + [3860] = 3580, + [3861] = 3633, + [3862] = 3862, + [3863] = 3576, + [3864] = 3864, + [3865] = 3603, + [3866] = 3584, + [3867] = 3576, + [3868] = 3625, + [3869] = 3591, + [3870] = 3603, + [3871] = 3576, + [3872] = 3584, + [3873] = 3576, + [3874] = 3590, + [3875] = 3576, + [3876] = 3576, + [3877] = 3576, + [3878] = 3580, + [3879] = 3576, + [3880] = 3594, + [3881] = 3576, + [3882] = 3642, + [3883] = 3576, + [3884] = 3609, + [3885] = 3576, + [3886] = 3603, + [3887] = 3576, + [3888] = 3578, + [3889] = 3576, + [3890] = 3579, + [3891] = 3576, + [3892] = 3576, + [3893] = 3576, + [3894] = 3576, + [3895] = 3576, + [3896] = 3576, + [3897] = 3576, + [3898] = 3584, + [3899] = 3576, + [3900] = 3576, + [3901] = 3576, + [3902] = 3576, + [3903] = 3576, + [3904] = 3576, + [3905] = 3668, + [3906] = 3603, + [3907] = 3599, + [3908] = 3582, + [3909] = 3614, + [3910] = 3609, }; static const TSSymbol ts_supertype_symbols[SUPERTYPE_COUNT] = { @@ -5836,7 +5833,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '$', 823, '%', 487, '&', 340, - '\'', 163, + '\'', 166, '(', 353, ')', 354, '*', 823, @@ -5853,7 +5850,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 823, '@', 823, '[', 391, - '\\', 41, + '\\', 42, ']', 394, '^', 505, '_', 823, @@ -5876,7 +5873,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '~', 503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(318); + lookahead == ' ') SKIP(321); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(824); if (('A' <= lookahead && lookahead <= 'Z') || ('g' <= lookahead && lookahead <= 'z')) ADVANCE(800); @@ -5893,7 +5890,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '$', 813, '%', 487, '&', 340, - '\'', 163, + '\'', 166, '(', 353, ')', 354, '*', 481, @@ -5910,7 +5907,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 511, '@', 829, '[', 391, - '\\', 41, + '\\', 42, ']', 394, '^', 505, 'a', 768, @@ -5948,7 +5945,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 842, '$', 813, '&', 339, - '\'', 163, + '\'', 166, '(', 352, ')', 354, '-', 615, @@ -5957,9 +5954,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 609, '>', 418, '[', 722, - '\\', 73, + '\\', 76, ']', 611, - '{', 207, + '{', 210, '|', 346, '}', 358, ); @@ -5981,15 +5978,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 815, '#', 837, '$', 813, - '&', 250, - '\'', 163, + '&', 253, + '\'', 166, '(', 353, ')', 354, - ';', 162, + ';', 165, '<', 410, '>', 416, '[', 391, - '\\', 43, + '\\', 44, 'a', 658, 'b', 686, 'c', 612, @@ -6025,14 +6022,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 815, '#', 837, '$', 813, - '&', 250, - '\'', 163, + '&', 253, + '\'', 166, '(', 353, - ';', 162, + ';', 165, '<', 410, '>', 416, '[', 391, - '\\', 47, + '\\', 48, 'a', 658, 'b', 686, 'c', 612, @@ -6068,13 +6065,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 815, '#', 837, '$', 813, - '&', 250, - '\'', 163, + '&', 253, + '\'', 166, '(', 353, '<', 410, '>', 416, '[', 391, - '\\', 45, + '\\', 46, 'a', 658, 'b', 686, 'c', 612, @@ -6112,19 +6109,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 815, '#', 837, '$', 813, - '&', 250, - '\'', 163, + '&', 253, + '\'', 166, '(', 353, '<', 410, '>', 416, '[', 391, - '\\', 101, + '\\', 106, 'a', 658, 'b', 686, 'c', 612, - 'd', 628, + 'd', 629, 'e', 704, - 'f', 678, + 'f', 649, 'i', 644, 'l', 630, 'r', 631, @@ -6156,19 +6153,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 815, '#', 837, '$', 813, - '&', 250, - '\'', 163, + '&', 253, + '\'', 166, '(', 353, '<', 410, '>', 416, '[', 391, - '\\', 121, + '\\', 126, 'a', 658, 'b', 686, 'c', 612, - 'd', 629, + 'd', 628, 'e', 704, - 'f', 649, + 'f', 678, 'i', 644, 'l', 630, 'r', 631, @@ -6200,13 +6197,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 815, '#', 837, '$', 813, - '&', 250, - '\'', 163, + '&', 253, + '\'', 166, '(', 353, '<', 410, '>', 416, '[', 391, - '\\', 135, + '\\', 138, 'a', 658, 'b', 686, 'c', 612, @@ -6245,13 +6242,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 837, '$', 813, '&', 341, - '\'', 163, + '\'', 166, '(', 353, ';', 336, '<', 410, '>', 416, '[', 391, - '\\', 103, + '\\', 108, 'a', 658, 'b', 686, 'c', 612, @@ -6288,16 +6285,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ')', 354, ';', 337, '<', 410, '>', 416, '[', 722, - '\\', 53, + '\\', 52, 'e', 693, - '{', 208, + '{', 211, '|', 346, '}', 358, ); @@ -6320,15 +6317,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ')', 354, ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 55, - '{', 208, + '\\', 60, + '{', 211, '|', 346, '}', 358, ); @@ -6351,14 +6348,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ';', 337, '<', 410, '>', 416, '[', 722, - '\\', 61, - '{', 208, + '\\', 58, + '{', 211, '|', 346, ); if (lookahead == '\t' || @@ -6382,16 +6379,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 59, + '\\', 56, 'e', 663, 'f', 650, - '{', 208, + '{', 211, '|', 346, ); if (lookahead == '\t' || @@ -6415,15 +6412,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 63, - 'd', 677, - '{', 208, + '\\', 66, + 'd', 682, + '{', 211, '|', 346, ); if (lookahead == '\t' || @@ -6447,15 +6444,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 65, - 't', 648, - '{', 208, + '\\', 68, + 'f', 650, + '{', 211, '|', 346, ); if (lookahead == '\t' || @@ -6479,15 +6476,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 67, - 'f', 650, - '{', 208, + '\\', 70, + 't', 648, + '{', 211, '|', 346, ); if (lookahead == '\t' || @@ -6511,15 +6508,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 141, - 'd', 682, - '{', 208, + '\\', 144, + 'd', 677, + '{', 211, '|', 346, ); if (lookahead == '\t' || @@ -6538,22 +6535,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 18: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ')', 354, - ';', 336, + ';', 337, '<', 410, '>', 416, '[', 722, - '\\', 105, - '{', 207, + '\\', 64, + '{', 210, '|', 346, - '}', 358, ); if (lookahead == '\t' || lookahead == ' ') SKIP(18); @@ -6564,26 +6560,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(812); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != '`') ADVANCE(708); + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(708); END_STATE(); case 19: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, - ';', 337, + ')', 354, + ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 57, - 'e', 693, - '{', 207, + '\\', 114, + '{', 210, '|', 346, + '}', 358, ); if (lookahead == '\t' || lookahead == ' ') SKIP(19); @@ -6594,26 +6592,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9')) ADVANCE(812); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '&' || '+' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(708); + lookahead != '`') ADVANCE(708); END_STATE(); case 20: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ';', 337, '<', 410, '>', 416, '[', 722, - '\\', 111, - '{', 207, + '\\', 62, + 'e', 693, + '{', 210, '|', 346, ); if (lookahead == '\t' || @@ -6632,21 +6629,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 21: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 109, + '\\', 110, 'e', 663, 'f', 650, - '{', 207, + '{', 210, '|', 346, ); if (lookahead == '\t' || @@ -6665,20 +6662,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 22: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 117, - 'f', 650, - '{', 207, + '\\', 118, + 'd', 682, + '{', 210, '|', 346, ); if (lookahead == '\t' || @@ -6697,20 +6694,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 23: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 113, - 'd', 682, - '{', 207, + '\\', 120, + 'f', 650, + '{', 210, '|', 346, ); if (lookahead == '\t' || @@ -6729,20 +6726,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 24: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 129, - 'd', 677, - '{', 207, + '\\', 122, + 't', 648, + '{', 210, '|', 346, ); if (lookahead == '\t' || @@ -6761,20 +6758,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 25: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 115, - 't', 648, - '{', 207, + '\\', 132, + 'd', 677, + '{', 210, '|', 346, ); if (lookahead == '\t' || @@ -6793,20 +6790,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 26: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 339, - '\'', 163, + '\'', 166, '(', 352, ')', 354, ';', 336, - '<', 167, - '>', 168, + '<', 170, + '>', 171, '[', 722, - '\\', 123, - '{', 207, + '\\', 130, + '{', 210, '|', 346, '}', 358, ); @@ -6824,20 +6821,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 27: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 339, - '\'', 163, + '\'', 166, '(', 352, ';', 337, - '<', 167, - '>', 168, + '<', 170, + '>', 171, '[', 722, - '\\', 107, + '\\', 116, 'e', 693, - '{', 207, + '{', 210, '|', 346, ); if (lookahead == '\t' || @@ -6856,19 +6853,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 28: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 339, - '\'', 163, + '\'', 166, '(', 352, ';', 337, - '<', 167, - '>', 168, + '<', 170, + '>', 171, '[', 722, - '\\', 127, - '{', 207, + '\\', 112, + '{', 210, '|', 346, ); if (lookahead == '\t' || @@ -6887,21 +6884,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 29: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 339, - '\'', 163, + '\'', 166, '(', 352, ';', 336, - '<', 167, - '>', 168, + '<', 170, + '>', 171, '[', 722, - '\\', 125, + '\\', 128, 'e', 663, 'f', 650, - '{', 207, + '{', 210, '|', 346, ); if (lookahead == '\t' || @@ -6920,20 +6917,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 30: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 339, - '\'', 163, + '\'', 166, '(', 352, ';', 336, - '<', 167, - '>', 168, + '<', 170, + '>', 171, '[', 722, - '\\', 131, + '\\', 136, 't', 648, - '{', 207, + '{', 210, '|', 346, ); if (lookahead == '\t' || @@ -6952,20 +6949,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 31: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 339, - '\'', 163, + '\'', 166, '(', 352, ';', 336, - '<', 167, - '>', 168, + '<', 170, + '>', 171, '[', 722, - '\\', 137, + '\\', 140, 'd', 677, - '{', 207, + '{', 210, '|', 346, ); if (lookahead == '\t' || @@ -6984,20 +6981,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 32: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 339, - '\'', 163, + '\'', 166, '(', 352, ';', 336, - '<', 167, - '>', 168, + '<', 170, + '>', 171, '[', 722, - '\\', 139, + '\\', 142, 'd', 682, - '{', 207, + '{', 210, '|', 346, ); if (lookahead == '\t' || @@ -7016,20 +7013,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 33: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 339, - '\'', 163, + '\'', 166, '(', 352, ';', 336, - '<', 167, - '>', 168, + '<', 170, + '>', 171, '[', 722, - '\\', 133, + '\\', 134, 'f', 650, - '{', 207, + '{', 210, '|', 346, ); if (lookahead == '\t' || @@ -7048,19 +7045,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 34: ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 338, - '\'', 163, + '\'', 166, ')', 354, ';', 336, - '<', 167, - '>', 168, + '<', 170, + '>', 171, '[', 722, - '\\', 79, - '{', 207, + '\\', 82, + '{', 210, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); @@ -7079,11 +7076,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(335); if (lookahead == '#') ADVANCE(842); if (lookahead == '&') ADVANCE(340); - if (lookahead == ';') ADVANCE(336); + if (lookahead == ';') ADVANCE(337); if (lookahead == '<') ADVANCE(411); if (lookahead == '>') ADVANCE(417); - if (lookahead == '\\') SKIP(84); - if (lookahead == 'd') ADVANCE(299); + if (lookahead == '\\') SKIP(85); + if (lookahead == 'd') ADVANCE(302); + if (lookahead == 'e') ADVANCE(303); if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == ' ') SKIP(35); @@ -7091,24 +7089,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 36: if (lookahead == '\n') ADVANCE(335); if (lookahead == '#') ADVANCE(842); - if (lookahead == '&') ADVANCE(250); - if (lookahead == ')') ADVANCE(354); - if (lookahead == '<') ADVANCE(412); + if (lookahead == '&') ADVANCE(340); + if (lookahead == ';') ADVANCE(336); + if (lookahead == '<') ADVANCE(411); if (lookahead == '>') ADVANCE(417); - if (lookahead == '\\') SKIP(91); - if (lookahead == 'i') ADVANCE(295); - if (lookahead == '|') ADVANCE(345); + if (lookahead == '\\') SKIP(89); + if (lookahead == 'd') ADVANCE(302); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == ' ') SKIP(36); END_STATE(); case 37: if (lookahead == '\n') ADVANCE(335); if (lookahead == '#') ADVANCE(842); - if (lookahead == '&') ADVANCE(339); - if (lookahead == ';') ADVANCE(337); - if (lookahead == '\\') SKIP(89); - if (lookahead == 'e') ADVANCE(300); - if (lookahead == '|') ADVANCE(346); + if (lookahead == '&') ADVANCE(253); + if (lookahead == ')') ADVANCE(354); + if (lookahead == '<') ADVANCE(412); + if (lookahead == '>') ADVANCE(417); + if (lookahead == '\\') SKIP(98); + if (lookahead == 'i') ADVANCE(298); + if (lookahead == '|') ADVANCE(345); if (lookahead == '\t' || lookahead == ' ') SKIP(37); END_STATE(); @@ -7116,9 +7116,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(335); if (lookahead == '#') ADVANCE(842); if (lookahead == '&') ADVANCE(339); - if (lookahead == ';') ADVANCE(336); - if (lookahead == '\\') SKIP(93); - if (lookahead == 'd') ADVANCE(299); + if (lookahead == ';') ADVANCE(337); + if (lookahead == '\\') SKIP(94); + if (lookahead == 'e') ADVANCE(303); if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == ' ') SKIP(38); @@ -7126,416 +7126,434 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 39: if (lookahead == '\n') ADVANCE(335); if (lookahead == '#') ADVANCE(842); - if (lookahead == '&') ADVANCE(338); + if (lookahead == '&') ADVANCE(339); if (lookahead == ';') ADVANCE(336); - if (lookahead == '\\') SKIP(95); - if (lookahead == 'i') ADVANCE(295); + if (lookahead == '\\') SKIP(96); + if (lookahead == 'd') ADVANCE(302); + if (lookahead == '|') ADVANCE(346); if (lookahead == '\t' || lookahead == ' ') SKIP(39); END_STATE(); case 40: - if (lookahead == '\n') SKIP(1); + if (lookahead == '\n') ADVANCE(335); + if (lookahead == '#') ADVANCE(842); + if (lookahead == '&') ADVANCE(338); + if (lookahead == ';') ADVANCE(336); + if (lookahead == '\\') SKIP(100); + if (lookahead == 'i') ADVANCE(298); + if (lookahead == '\t' || + lookahead == ' ') SKIP(40); END_STATE(); case 41: if (lookahead == '\n') SKIP(1); - if (lookahead == '\r') SKIP(40); - if (lookahead != 0) ADVANCE(708); END_STATE(); case 42: - if (lookahead == '\n') SKIP(3); + if (lookahead == '\n') SKIP(1); + if (lookahead == '\r') SKIP(41); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 43: if (lookahead == '\n') SKIP(3); - if (lookahead == '\r') SKIP(42); - if (lookahead != 0) ADVANCE(708); END_STATE(); case 44: - if (lookahead == '\n') SKIP(5); + if (lookahead == '\n') SKIP(3); + if (lookahead == '\r') SKIP(43); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 45: if (lookahead == '\n') SKIP(5); - if (lookahead == '\r') SKIP(44); - if (lookahead != 0) ADVANCE(708); END_STATE(); case 46: - if (lookahead == '\n') SKIP(4); + if (lookahead == '\n') SKIP(5); + if (lookahead == '\r') SKIP(45); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 47: if (lookahead == '\n') SKIP(4); - if (lookahead == '\r') SKIP(46); - if (lookahead != 0) ADVANCE(708); END_STATE(); case 48: - if (lookahead == '\n') SKIP(153); + if (lookahead == '\n') SKIP(4); + if (lookahead == '\r') SKIP(47); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 49: - if (lookahead == '\n') SKIP(153); - if (lookahead == '\r') SKIP(48); + if (lookahead == '\n') SKIP(156); END_STATE(); case 50: - if (lookahead == '\n') SKIP(152); + if (lookahead == '\n') SKIP(156); + if (lookahead == '\r') SKIP(49); END_STATE(); case 51: - if (lookahead == '\n') SKIP(152); - if (lookahead == '\r') SKIP(50); + if (lookahead == '\n') SKIP(10); END_STATE(); case 52: if (lookahead == '\n') SKIP(10); + if (lookahead == '\r') SKIP(51); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 53: - if (lookahead == '\n') SKIP(10); - if (lookahead == '\r') SKIP(52); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(155); END_STATE(); case 54: - if (lookahead == '\n') SKIP(11); + if (lookahead == '\n') SKIP(155); + if (lookahead == '\r') SKIP(53); END_STATE(); case 55: - if (lookahead == '\n') SKIP(11); - if (lookahead == '\r') SKIP(54); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(13); END_STATE(); case 56: - if (lookahead == '\n') SKIP(19); + if (lookahead == '\n') SKIP(13); + if (lookahead == '\r') SKIP(55); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 57: - if (lookahead == '\n') SKIP(19); - if (lookahead == '\r') SKIP(56); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(12); END_STATE(); case 58: - if (lookahead == '\n') SKIP(13); + if (lookahead == '\n') SKIP(12); + if (lookahead == '\r') SKIP(57); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 59: - if (lookahead == '\n') SKIP(13); - if (lookahead == '\r') SKIP(58); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(11); END_STATE(); case 60: - if (lookahead == '\n') SKIP(12); + if (lookahead == '\n') SKIP(11); + if (lookahead == '\r') SKIP(59); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 61: - if (lookahead == '\n') SKIP(12); - if (lookahead == '\r') SKIP(60); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(20); END_STATE(); case 62: - if (lookahead == '\n') SKIP(14); + if (lookahead == '\n') SKIP(20); + if (lookahead == '\r') SKIP(61); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 63: - if (lookahead == '\n') SKIP(14); - if (lookahead == '\r') SKIP(62); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(18); END_STATE(); case 64: - if (lookahead == '\n') SKIP(15); + if (lookahead == '\n') SKIP(18); + if (lookahead == '\r') SKIP(63); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 65: - if (lookahead == '\n') SKIP(15); - if (lookahead == '\r') SKIP(64); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(14); END_STATE(); case 66: - if (lookahead == '\n') SKIP(16); + if (lookahead == '\n') SKIP(14); + if (lookahead == '\r') SKIP(65); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 67: - if (lookahead == '\n') SKIP(16); - if (lookahead == '\r') SKIP(66); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(15); END_STATE(); case 68: - if (lookahead == '\n') SKIP(150); + if (lookahead == '\n') SKIP(15); + if (lookahead == '\r') SKIP(67); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 69: - if (lookahead == '\n') SKIP(150); - if (lookahead == '\r') SKIP(68); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(16); END_STATE(); case 70: - if (lookahead == '\n') SKIP(149); + if (lookahead == '\n') SKIP(16); + if (lookahead == '\r') SKIP(69); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 71: - if (lookahead == '\n') SKIP(149); - if (lookahead == '\r') SKIP(70); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(153); END_STATE(); case 72: - if (lookahead == '\n') SKIP(2); + if (lookahead == '\n') SKIP(153); + if (lookahead == '\r') SKIP(71); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 73: - if (lookahead == '\n') SKIP(2); - if (lookahead == '\r') SKIP(72); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(152); END_STATE(); case 74: - if (lookahead == '\n') SKIP(147); + if (lookahead == '\n') SKIP(152); + if (lookahead == '\r') SKIP(73); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 75: - if (lookahead == '\n') SKIP(147); - if (lookahead == '\r') SKIP(74); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(2); END_STATE(); case 76: - if (lookahead == '\n') SKIP(148); + if (lookahead == '\n') SKIP(2); + if (lookahead == '\r') SKIP(75); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 77: - if (lookahead == '\n') SKIP(148); - if (lookahead == '\r') SKIP(76); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(150); END_STATE(); case 78: - if (lookahead == '\n') SKIP(34); + if (lookahead == '\n') SKIP(150); + if (lookahead == '\r') SKIP(77); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 79: - if (lookahead == '\n') SKIP(34); - if (lookahead == '\r') SKIP(78); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(151); END_STATE(); case 80: - if (lookahead == '\n') SKIP(155); - if (lookahead == '\r') ADVANCE(461); - if (lookahead != 0) ADVANCE(470); + if (lookahead == '\n') SKIP(151); + if (lookahead == '\r') SKIP(79); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 81: - if (lookahead == '\n') SKIP(158); + if (lookahead == '\n') SKIP(34); END_STATE(); case 82: - if (lookahead == '\n') SKIP(158); + if (lookahead == '\n') SKIP(34); if (lookahead == '\r') SKIP(81); - if (lookahead != 0) ADVANCE(805); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 83: - if (lookahead == '\n') SKIP(35); + if (lookahead == '\n') SKIP(158); + if (lookahead == '\r') ADVANCE(461); + if (lookahead != 0) ADVANCE(470); END_STATE(); case 84: if (lookahead == '\n') SKIP(35); - if (lookahead == '\r') SKIP(83); END_STATE(); case 85: - if (lookahead == '\n') SKIP(159); + if (lookahead == '\n') SKIP(35); + if (lookahead == '\r') SKIP(84); END_STATE(); case 86: - if (lookahead == '\n') SKIP(159); - if (lookahead == '\r') SKIP(85); - if (lookahead != 0) ADVANCE(827); + if (lookahead == '\n') SKIP(161); END_STATE(); case 87: - if (lookahead == '\n') ADVANCE(816); - if (lookahead == '\r') ADVANCE(822); - if (lookahead != 0) ADVANCE(822); + if (lookahead == '\n') SKIP(161); + if (lookahead == '\r') SKIP(86); + if (lookahead != 0) ADVANCE(805); END_STATE(); case 88: - if (lookahead == '\n') SKIP(37); + if (lookahead == '\n') SKIP(36); END_STATE(); case 89: - if (lookahead == '\n') SKIP(37); + if (lookahead == '\n') SKIP(36); if (lookahead == '\r') SKIP(88); END_STATE(); case 90: - if (lookahead == '\n') SKIP(36); + if (lookahead == '\n') SKIP(162); END_STATE(); case 91: - if (lookahead == '\n') SKIP(36); + if (lookahead == '\n') SKIP(162); if (lookahead == '\r') SKIP(90); + if (lookahead != 0) ADVANCE(827); END_STATE(); case 92: - if (lookahead == '\n') SKIP(38); + if (lookahead == '\n') ADVANCE(816); + if (lookahead == '\r') ADVANCE(822); + if (lookahead != 0) ADVANCE(822); END_STATE(); case 93: if (lookahead == '\n') SKIP(38); - if (lookahead == '\r') SKIP(92); END_STATE(); case 94: - if (lookahead == '\n') SKIP(39); + if (lookahead == '\n') SKIP(38); + if (lookahead == '\r') SKIP(93); END_STATE(); case 95: if (lookahead == '\n') SKIP(39); - if (lookahead == '\r') SKIP(94); END_STATE(); case 96: - if (lookahead == '\n') SKIP(157); + if (lookahead == '\n') SKIP(39); + if (lookahead == '\r') SKIP(95); END_STATE(); case 97: - if (lookahead == '\n') SKIP(157); - if (lookahead == '\r') SKIP(96); + if (lookahead == '\n') SKIP(37); END_STATE(); case 98: - if (lookahead == '\n') SKIP(154); + if (lookahead == '\n') SKIP(37); + if (lookahead == '\r') SKIP(97); END_STATE(); case 99: - if (lookahead == '\n') SKIP(154); - if (lookahead == '\r') SKIP(98); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(40); END_STATE(); case 100: - if (lookahead == '\n') SKIP(6); + if (lookahead == '\n') SKIP(40); + if (lookahead == '\r') SKIP(99); END_STATE(); case 101: - if (lookahead == '\n') SKIP(6); - if (lookahead == '\r') SKIP(100); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(160); END_STATE(); case 102: - if (lookahead == '\n') SKIP(9); + if (lookahead == '\n') SKIP(160); + if (lookahead == '\r') SKIP(101); END_STATE(); case 103: - if (lookahead == '\n') SKIP(9); - if (lookahead == '\r') SKIP(102); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(157); END_STATE(); case 104: - if (lookahead == '\n') SKIP(18); + if (lookahead == '\n') SKIP(157); + if (lookahead == '\r') SKIP(103); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 105: - if (lookahead == '\n') SKIP(18); - if (lookahead == '\r') SKIP(104); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(6); END_STATE(); case 106: - if (lookahead == '\n') SKIP(27); + if (lookahead == '\n') SKIP(6); + if (lookahead == '\r') SKIP(105); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 107: - if (lookahead == '\n') SKIP(27); - if (lookahead == '\r') SKIP(106); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(9); END_STATE(); case 108: - if (lookahead == '\n') SKIP(21); + if (lookahead == '\n') SKIP(9); + if (lookahead == '\r') SKIP(107); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 109: if (lookahead == '\n') SKIP(21); - if (lookahead == '\r') SKIP(108); - if (lookahead != 0) ADVANCE(708); END_STATE(); case 110: - if (lookahead == '\n') SKIP(20); + if (lookahead == '\n') SKIP(21); + if (lookahead == '\r') SKIP(109); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 111: - if (lookahead == '\n') SKIP(20); - if (lookahead == '\r') SKIP(110); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(28); END_STATE(); case 112: - if (lookahead == '\n') SKIP(23); + if (lookahead == '\n') SKIP(28); + if (lookahead == '\r') SKIP(111); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 113: - if (lookahead == '\n') SKIP(23); - if (lookahead == '\r') SKIP(112); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(19); END_STATE(); case 114: - if (lookahead == '\n') SKIP(25); + if (lookahead == '\n') SKIP(19); + if (lookahead == '\r') SKIP(113); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 115: - if (lookahead == '\n') SKIP(25); - if (lookahead == '\r') SKIP(114); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(27); END_STATE(); case 116: - if (lookahead == '\n') SKIP(22); + if (lookahead == '\n') SKIP(27); + if (lookahead == '\r') SKIP(115); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 117: if (lookahead == '\n') SKIP(22); - if (lookahead == '\r') SKIP(116); - if (lookahead != 0) ADVANCE(708); END_STATE(); case 118: - if (lookahead == '\n') SKIP(151); + if (lookahead == '\n') SKIP(22); + if (lookahead == '\r') SKIP(117); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 119: - if (lookahead == '\n') SKIP(151); - if (lookahead == '\r') SKIP(118); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(23); END_STATE(); case 120: - if (lookahead == '\n') SKIP(7); + if (lookahead == '\n') SKIP(23); + if (lookahead == '\r') SKIP(119); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 121: - if (lookahead == '\n') SKIP(7); - if (lookahead == '\r') SKIP(120); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(24); END_STATE(); case 122: - if (lookahead == '\n') SKIP(26); + if (lookahead == '\n') SKIP(24); + if (lookahead == '\r') SKIP(121); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 123: - if (lookahead == '\n') SKIP(26); - if (lookahead == '\r') SKIP(122); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(154); END_STATE(); case 124: - if (lookahead == '\n') SKIP(29); + if (lookahead == '\n') SKIP(154); + if (lookahead == '\r') SKIP(123); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 125: - if (lookahead == '\n') SKIP(29); - if (lookahead == '\r') SKIP(124); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(7); END_STATE(); case 126: - if (lookahead == '\n') SKIP(28); + if (lookahead == '\n') SKIP(7); + if (lookahead == '\r') SKIP(125); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 127: - if (lookahead == '\n') SKIP(28); - if (lookahead == '\r') SKIP(126); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(29); END_STATE(); case 128: - if (lookahead == '\n') SKIP(24); + if (lookahead == '\n') SKIP(29); + if (lookahead == '\r') SKIP(127); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 129: - if (lookahead == '\n') SKIP(24); - if (lookahead == '\r') SKIP(128); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(26); END_STATE(); case 130: - if (lookahead == '\n') SKIP(30); + if (lookahead == '\n') SKIP(26); + if (lookahead == '\r') SKIP(129); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 131: - if (lookahead == '\n') SKIP(30); - if (lookahead == '\r') SKIP(130); - if (lookahead != 0) ADVANCE(708); + if (lookahead == '\n') SKIP(25); END_STATE(); case 132: - if (lookahead == '\n') SKIP(33); + if (lookahead == '\n') SKIP(25); + if (lookahead == '\r') SKIP(131); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 133: if (lookahead == '\n') SKIP(33); - if (lookahead == '\r') SKIP(132); - if (lookahead != 0) ADVANCE(708); END_STATE(); case 134: - if (lookahead == '\n') SKIP(8); + if (lookahead == '\n') SKIP(33); + if (lookahead == '\r') SKIP(133); + if (lookahead != 0) ADVANCE(708); END_STATE(); case 135: + if (lookahead == '\n') SKIP(30); + END_STATE(); + case 136: + if (lookahead == '\n') SKIP(30); + if (lookahead == '\r') SKIP(135); + if (lookahead != 0) ADVANCE(708); + END_STATE(); + case 137: + if (lookahead == '\n') SKIP(8); + END_STATE(); + case 138: if (lookahead == '\n') SKIP(8); - if (lookahead == '\r') SKIP(134); + if (lookahead == '\r') SKIP(137); if (lookahead != 0) ADVANCE(708); END_STATE(); - case 136: + case 139: if (lookahead == '\n') SKIP(31); END_STATE(); - case 137: + case 140: if (lookahead == '\n') SKIP(31); - if (lookahead == '\r') SKIP(136); + if (lookahead == '\r') SKIP(139); if (lookahead != 0) ADVANCE(708); END_STATE(); - case 138: + case 141: if (lookahead == '\n') SKIP(32); END_STATE(); - case 139: + case 142: if (lookahead == '\n') SKIP(32); - if (lookahead == '\r') SKIP(138); + if (lookahead == '\r') SKIP(141); if (lookahead != 0) ADVANCE(708); END_STATE(); - case 140: + case 143: if (lookahead == '\n') SKIP(17); END_STATE(); - case 141: + case 144: if (lookahead == '\n') SKIP(17); - if (lookahead == '\r') SKIP(140); + if (lookahead == '\r') SKIP(143); if (lookahead != 0) ADVANCE(708); END_STATE(); - case 142: + case 145: ADVANCE_MAP( '\r', 461, '(', 465, @@ -7552,7 +7570,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(445); END_STATE(); - case 143: + case 146: if (lookahead == '\r') ADVANCE(461); if (lookahead == '\t' || lookahead == 0x0b || @@ -7563,7 +7581,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(452); END_STATE(); - case 144: + case 147: ADVANCE_MAP( '\r', 461, '\t', 470, @@ -7578,12 +7596,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(465); END_STATE(); - case 145: + case 148: if (lookahead == '\r') ADVANCE(461); if (lookahead != 0 && lookahead != '\n') ADVANCE(470); END_STATE(); - case 146: + case 149: ADVANCE_MAP( '!', 823, '"', 815, @@ -7591,7 +7609,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '$', 823, '%', 489, '&', 338, - '\'', 163, + '\'', 166, '(', 352, ')', 354, '*', 823, @@ -7607,15 +7625,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 823, '@', 823, '[', 722, - '\\', 69, + '\\', 72, '^', 505, '_', 823, - '{', 207, + '{', 210, '|', 345, '}', 358, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(150); + lookahead == ' ') SKIP(153); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(824); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(800); @@ -7623,14 +7641,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\t' || '\r' < lookahead) && (lookahead < '^' || '}' < lookahead)) ADVANCE(708); END_STATE(); - case 147: + case 150: ADVANCE_MAP( '!', 350, '"', 815, '#', 842, '$', 813, - '&', 161, - '\'', 163, + '&', 164, + '\'', 166, '(', 352, ')', 354, '-', 615, @@ -7638,12 +7656,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 609, '>', 418, '[', 722, - '\\', 75, - '{', 207, - '|', 302, + '\\', 78, + '{', 210, + '|', 305, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(147); + lookahead == ' ') SKIP(150); if (lookahead == '*' || lookahead == '+' || lookahead == '?' || @@ -7655,27 +7673,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && (lookahead < '{' || '}' < lookahead)) ADVANCE(708); END_STATE(); - case 148: + case 151: ADVANCE_MAP( '!', 350, '"', 815, '#', 842, '$', 813, - '\'', 163, + '\'', 166, '(', 352, ')', 354, '-', 615, - '<', 167, + '<', 170, '=', 396, - '>', 168, + '>', 171, '[', 722, - '\\', 77, + '\\', 80, ']', 394, - '{', 207, + '{', 210, '|', 345, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(148); + lookahead == ' ') SKIP(151); if (lookahead == '*' || lookahead == '+' || lookahead == '?' || @@ -7688,7 +7706,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && (lookahead < '{' || '}' < lookahead)) ADVANCE(708); END_STATE(); - case 149: + case 152: ADVANCE_MAP( '!', 349, '"', 815, @@ -7696,7 +7714,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '$', 813, '%', 489, '&', 338, - '\'', 163, + '\'', 166, '(', 352, ')', 354, '*', 482, @@ -7712,20 +7730,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 511, '@', 829, '[', 392, - '\\', 71, + '\\', 74, '^', 505, - '{', 207, + '{', 210, '|', 345, '}', 358, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(149); + lookahead == ' ') SKIP(152); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(812); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '`') ADVANCE(708); END_STATE(); - case 150: + case 153: ADVANCE_MAP( '!', 349, '"', 815, @@ -7733,7 +7751,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '$', 813, '%', 489, '&', 338, - '\'', 163, + '\'', 166, '(', 352, ')', 354, '*', 482, @@ -7749,14 +7767,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 511, '@', 829, '[', 722, - '\\', 69, + '\\', 72, '^', 505, - '{', 207, + '{', 210, '|', 345, '}', 358, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(150); + lookahead == ' ') SKIP(153); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(812); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -7765,7 +7783,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\t' || '\r' < lookahead) && (lookahead < '^' || '}' < lookahead)) ADVANCE(708); END_STATE(); - case 151: + case 154: ADVANCE_MAP( '!', 349, '"', 815, @@ -7773,7 +7791,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '$', 813, '%', 489, '&', 338, - '\'', 163, + '\'', 166, '(', 352, ')', 354, '*', 482, @@ -7789,20 +7807,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 511, '@', 829, '[', 722, - '\\', 119, + '\\', 124, '^', 505, - '{', 207, + '{', 210, '|', 345, '}', 358, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(151); + lookahead == ' ') SKIP(154); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(812); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '`') ADVANCE(708); END_STATE(); - case 152: + case 155: ADVANCE_MAP( '!', 351, '"', 815, @@ -7810,7 +7828,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '$', 813, '%', 488, '&', 339, - '\'', 163, + '\'', 166, '(', 352, ')', 354, '*', 483, @@ -7825,18 +7843,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 419, '?', 510, ); - if (lookahead == '\\') SKIP(51); + if (lookahead == '\\') SKIP(54); if (lookahead == '^') ADVANCE(504); if (lookahead == '|') ADVANCE(347); if (lookahead == '~') ADVANCE(502); if (lookahead == '\t' || - lookahead == ' ') SKIP(152); + lookahead == ' ') SKIP(155); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(800); END_STATE(); - case 153: + case 156: ADVANCE_MAP( '!', 351, '"', 815, @@ -7844,9 +7862,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '$', 813, '%', 488, '&', 339, - '\'', 163, + '\'', 166, '(', 352, - ')', 201, + ')', 204, '*', 483, '+', 477, ',', 514, @@ -7860,41 +7878,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 419, '?', 510, ); - if (lookahead == '\\') SKIP(49); + if (lookahead == '\\') SKIP(50); if (lookahead == ']') ADVANCE(393); if (lookahead == '^') ADVANCE(504); if (lookahead == '|') ADVANCE(347); if (lookahead == '~') ADVANCE(502); if (lookahead == '\t' || - lookahead == ' ') SKIP(153); + lookahead == ' ') SKIP(156); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(800); END_STATE(); - case 154: - if (lookahead == '!') ADVANCE(166); + case 157: + if (lookahead == '!') ADVANCE(169); if (lookahead == '#') ADVANCE(842); - if (lookahead == '(') ADVANCE(165); + if (lookahead == '(') ADVANCE(168); if (lookahead == '[') ADVANCE(722); - if (lookahead == '\\') ADVANCE(99); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(104); + if (lookahead == '{') ADVANCE(304); if (lookahead == '\t' || - lookahead == ' ') SKIP(154); + lookahead == ' ') SKIP(157); if (lookahead == '*' || lookahead == '+' || lookahead == '?' || lookahead == '@') ADVANCE(518); if ((!eof && set_contains(sym_word_character_set_3, 10, lookahead))) ADVANCE(708); END_STATE(); - case 155: + case 158: ADVANCE_MAP( '!', 443, '"', 815, '#', 462, '$', 441, '&', 440, - '\'', 163, + '\'', 166, '(', 461, ')', 461, '-', 468, @@ -7902,13 +7920,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 459, '>', 454, '[', 716, - '\\', 80, + '\\', 83, ']', 611, '{', 456, '|', 460, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(155); + lookahead == ' ') SKIP(158); if (lookahead == ';' || lookahead == '`' || lookahead == '}') ADVANCE(461); @@ -7920,13 +7938,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(470); END_STATE(); - case 156: + case 159: if (lookahead == '"') ADVANCE(815); if (lookahead == '#') ADVANCE(823); - if (lookahead == '\\') SKIP(97); + if (lookahead == '\\') SKIP(102); if (lookahead == '_') ADVANCE(823); if (lookahead == '\t' || - lookahead == ' ') SKIP(157); + lookahead == ' ') SKIP(160); if (('!' <= lookahead && lookahead <= '$') || lookahead == '*' || lookahead == '-' || @@ -7936,31 +7954,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(800); END_STATE(); - case 157: + case 160: if (lookahead == '"') ADVANCE(815); if (lookahead == '#') ADVANCE(842); - if (lookahead == '\\') SKIP(97); + if (lookahead == '\\') SKIP(102); if (lookahead == '\t' || - lookahead == ' ') SKIP(157); + lookahead == ' ') SKIP(160); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(800); END_STATE(); - case 158: + case 161: ADVANCE_MAP( '"', 815, '#', 806, '$', 813, - '\'', 163, + '\'', 166, ',', 514, - '<', 167, - '>', 168, - '\\', 82, - '{', 215, + '<', 170, + '>', 171, + '\\', 87, + '{', 218, '}', 358, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(158); + lookahead == ' ') SKIP(161); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(804); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -7971,216 +7989,216 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '`' && (lookahead < '{' || '}' < lookahead)) ADVANCE(805); END_STATE(); - case 159: + case 162: ADVANCE_MAP( '"', 815, '#', 828, '$', 813, - '\'', 163, - '<', 167, - '>', 168, - '\\', 86, + '\'', 166, + '<', 170, + '>', 171, + '\\', 91, ']', 393, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(159); + lookahead == ' ') SKIP(162); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(811); if ((!eof && set_contains(sym__index_word_character_set_1, 11, lookahead))) ADVANCE(827); END_STATE(); - case 160: + case 163: if (lookahead == '"') ADVANCE(815); if (lookahead == '#') ADVANCE(818); if (lookahead == '$') ADVANCE(814); - if (lookahead == '\\') ADVANCE(87); + if (lookahead == '\\') ADVANCE(92); if (lookahead == '\t' || lookahead == ' ') ADVANCE(817); if (lookahead != 0 && lookahead != '`') ADVANCE(819); END_STATE(); - case 161: + case 164: if (lookahead == '&') ADVANCE(343); END_STATE(); - case 162: + case 165: if (lookahead == '&') ADVANCE(377); if (lookahead == ';') ADVANCE(376); END_STATE(); - case 163: + case 166: if (lookahead == '\'') ADVANCE(820); - if (lookahead != 0) ADVANCE(163); + if (lookahead != 0) ADVANCE(166); END_STATE(); - case 164: + case 167: if (lookahead == '\'') ADVANCE(821); - if (lookahead == '\\') ADVANCE(316); - if (lookahead != 0) ADVANCE(164); + if (lookahead == '\\') ADVANCE(319); + if (lookahead != 0) ADVANCE(167); END_STATE(); - case 165: + case 168: if (lookahead == '(') ADVANCE(381); END_STATE(); - case 166: - if (lookahead == '(') ADVANCE(200); + case 169: + if (lookahead == '(') ADVANCE(203); END_STATE(); - case 167: + case 170: if (lookahead == '(') ADVANCE(834); END_STATE(); - case 168: + case 171: if (lookahead == '(') ADVANCE(835); END_STATE(); - case 169: - if (lookahead == '(') ADVANCE(273); + case 172: + if (lookahead == '(') ADVANCE(276); if (lookahead == ')') ADVANCE(710); - if (lookahead == ':') ADVANCE(186); + if (lookahead == ':') ADVANCE(189); if (lookahead == ']') ADVANCE(584); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(170); + lookahead != ' ') ADVANCE(173); END_STATE(); - case 170: - if (lookahead == '(') ADVANCE(273); + case 173: + if (lookahead == '(') ADVANCE(276); if (lookahead == ')') ADVANCE(710); if (lookahead == ']') ADVANCE(584); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(170); + lookahead != ' ') ADVANCE(173); END_STATE(); - case 171: - if (lookahead == '(') ADVANCE(273); + case 174: + if (lookahead == '(') ADVANCE(276); if (lookahead == ')') ADVANCE(722); - if (lookahead == ':') ADVANCE(186); + if (lookahead == ':') ADVANCE(189); if (lookahead == ']') ADVANCE(584); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(172); + lookahead != ' ') ADVANCE(175); END_STATE(); - case 172: - if (lookahead == '(') ADVANCE(273); + case 175: + if (lookahead == '(') ADVANCE(276); if (lookahead == ')') ADVANCE(722); if (lookahead == ']') ADVANCE(584); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(172); + lookahead != ' ') ADVANCE(175); END_STATE(); - case 173: - if (lookahead == '(') ADVANCE(303); + case 176: + if (lookahead == '(') ADVANCE(306); if (lookahead == ')') ADVANCE(712); - if (lookahead == ':') ADVANCE(192); + if (lookahead == ':') ADVANCE(195); if (lookahead == '}') ADVANCE(584); if (lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(200); + lookahead == '{') ADVANCE(203); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(175); + lookahead != ' ') ADVANCE(178); END_STATE(); - case 174: - if (lookahead == '(') ADVANCE(303); + case 177: + if (lookahead == '(') ADVANCE(306); if (lookahead == ')') ADVANCE(712); if (lookahead == '{') ADVANCE(585); if (lookahead == '}') ADVANCE(584); if (lookahead == ',' || - lookahead == '.') ADVANCE(200); + lookahead == '.') ADVANCE(203); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(175); + lookahead != ' ') ADVANCE(178); END_STATE(); - case 175: - if (lookahead == '(') ADVANCE(303); + case 178: + if (lookahead == '(') ADVANCE(306); if (lookahead == ')') ADVANCE(712); if (lookahead == '}') ADVANCE(584); if (lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(200); + lookahead == '{') ADVANCE(203); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(175); + lookahead != ' ') ADVANCE(178); END_STATE(); - case 176: + case 179: ADVANCE_MAP( - '(', 277, + '(', 280, ')', 730, - ':', 189, + ':', 192, ']', 526, '}', 523, - ',', 172, - '.', 172, - '{', 172, + ',', 175, + '.', 175, + '{', 175, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(178); + lookahead != ' ') ADVANCE(181); END_STATE(); - case 177: - if (lookahead == '(') ADVANCE(277); + case 180: + if (lookahead == '(') ADVANCE(280); if (lookahead == ')') ADVANCE(730); if (lookahead == ']') ADVANCE(526); if (lookahead == '{') ADVANCE(524); if (lookahead == '}') ADVANCE(523); if (lookahead == ',' || - lookahead == '.') ADVANCE(172); + lookahead == '.') ADVANCE(175); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(178); + lookahead != ' ') ADVANCE(181); END_STATE(); - case 178: - if (lookahead == '(') ADVANCE(277); + case 181: + if (lookahead == '(') ADVANCE(280); if (lookahead == ')') ADVANCE(730); if (lookahead == ']') ADVANCE(526); if (lookahead == '}') ADVANCE(523); if (lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(172); + lookahead == '{') ADVANCE(175); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(178); + lookahead != ' ') ADVANCE(181); END_STATE(); - case 179: - if (lookahead == '(') ADVANCE(255); + case 182: + if (lookahead == '(') ADVANCE(258); if (lookahead == ')') ADVANCE(716); - if (lookahead == '[') ADVANCE(171); + if (lookahead == '[') ADVANCE(174); if (lookahead == ']') ADVANCE(452); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(179); + lookahead == ' ') ADVANCE(255); + if (lookahead != 0) ADVANCE(182); END_STATE(); - case 180: - if (lookahead == '(') ADVANCE(255); + case 183: + if (lookahead == '(') ADVANCE(258); if (lookahead == ')') ADVANCE(727); - if (lookahead == '[') ADVANCE(169); + if (lookahead == '[') ADVANCE(172); if (lookahead == ']') ADVANCE(452); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(180); + lookahead == ' ') ADVANCE(255); + if (lookahead != 0) ADVANCE(183); END_STATE(); - case 181: + case 184: ADVANCE_MAP( - '(', 257, + '(', 260, ')', 720, - '[', 173, + '[', 176, ']', 448, '{', 587, '}', 586, - ',', 203, - '.', 203, + ',', 206, + '.', 206, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(182); + lookahead == ' ') ADVANCE(255); + if (lookahead != 0) ADVANCE(185); END_STATE(); - case 182: + case 185: ADVANCE_MAP( - '(', 257, + '(', 260, ')', 720, - '[', 173, + '[', 176, ']', 448, '}', 586, - ',', 203, - '.', 203, - '{', 203, + ',', 206, + '.', 206, + '{', 206, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(182); + lookahead == ' ') ADVANCE(255); + if (lookahead != 0) ADVANCE(185); END_STATE(); - case 183: + case 186: if (lookahead == '(') ADVANCE(464); if (lookahead == ')') ADVANCE(465); if (lookahead == '}') ADVANCE(452); @@ -8193,234 +8211,234 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(448); END_STATE(); - case 184: + case 187: ADVANCE_MAP( - '(', 254, + '(', 257, ')', 728, - '[', 176, + '[', 179, ']', 445, '{', 538, '}', 537, - ',', 179, - '.', 179, + ',', 182, + '.', 182, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(185); + lookahead == ' ') ADVANCE(255); + if (lookahead != 0) ADVANCE(188); END_STATE(); - case 185: + case 188: ADVANCE_MAP( - '(', 254, + '(', 257, ')', 728, - '[', 176, + '[', 179, ']', 445, '}', 537, - ',', 179, - '.', 179, - '{', 179, + ',', 182, + '.', 182, + '{', 182, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(185); + lookahead == ' ') ADVANCE(255); + if (lookahead != 0) ADVANCE(188); END_STATE(); - case 186: - if (lookahead == '(') ADVANCE(232); + case 189: + if (lookahead == '(') ADVANCE(235); if (lookahead == ')') ADVANCE(594); - if (lookahead == ':') ADVANCE(187); + if (lookahead == ':') ADVANCE(190); if (lookahead == ']') ADVANCE(584); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); - if (lookahead != 0) ADVANCE(186); + lookahead == ' ') ADVANCE(231); + if (lookahead != 0) ADVANCE(189); END_STATE(); - case 187: - if (lookahead == '(') ADVANCE(232); + case 190: + if (lookahead == '(') ADVANCE(235); if (lookahead == ')') ADVANCE(594); - if (lookahead == ':') ADVANCE(187); + if (lookahead == ':') ADVANCE(190); if (lookahead == ']') ADVANCE(586); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); - if (lookahead != 0) ADVANCE(186); + lookahead == ' ') ADVANCE(231); + if (lookahead != 0) ADVANCE(189); END_STATE(); - case 188: + case 191: ADVANCE_MAP( - '(', 235, + '(', 238, ')', 602, - ':', 190, + ':', 193, ']', 526, '{', 550, '}', 549, - ',', 186, - '.', 186, + ',', 189, + '.', 189, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); - if (lookahead != 0) ADVANCE(189); + lookahead == ' ') ADVANCE(231); + if (lookahead != 0) ADVANCE(192); END_STATE(); - case 189: + case 192: ADVANCE_MAP( - '(', 235, + '(', 238, ')', 602, - ':', 190, + ':', 193, ']', 526, '}', 549, - ',', 186, - '.', 186, - '{', 186, + ',', 189, + '.', 189, + '{', 189, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); - if (lookahead != 0) ADVANCE(189); + lookahead == ' ') ADVANCE(231); + if (lookahead != 0) ADVANCE(192); END_STATE(); - case 190: + case 193: ADVANCE_MAP( - '(', 235, + '(', 238, ')', 602, - ':', 190, + ':', 193, ']', 543, '}', 549, - ',', 186, - '.', 186, - '{', 186, + ',', 189, + '.', 189, + '{', 189, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); - if (lookahead != 0) ADVANCE(189); + lookahead == ' ') ADVANCE(231); + if (lookahead != 0) ADVANCE(192); END_STATE(); - case 191: + case 194: ADVANCE_MAP( - '(', 238, + '(', 241, ')', 605, - ':', 193, - ']', 175, + ':', 196, + ']', 178, '{', 589, '}', 588, - ',', 204, - '.', 204, + ',', 207, + '.', 207, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); - if (lookahead != 0) ADVANCE(192); + lookahead == ' ') ADVANCE(231); + if (lookahead != 0) ADVANCE(195); END_STATE(); - case 192: + case 195: ADVANCE_MAP( - '(', 238, + '(', 241, ')', 605, - ':', 193, - ']', 175, + ':', 196, + ']', 178, '}', 588, - ',', 204, - '.', 204, - '{', 204, + ',', 207, + '.', 207, + '{', 207, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); - if (lookahead != 0) ADVANCE(192); + lookahead == ' ') ADVANCE(231); + if (lookahead != 0) ADVANCE(195); END_STATE(); - case 193: + case 196: ADVANCE_MAP( - '(', 238, + '(', 241, ')', 605, - ':', 193, - ']', 182, + ':', 196, + ']', 185, '}', 588, - ',', 204, - '.', 204, - '{', 204, + ',', 207, + '.', 207, + '{', 207, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); - if (lookahead != 0) ADVANCE(192); + lookahead == ' ') ADVANCE(231); + if (lookahead != 0) ADVANCE(195); END_STATE(); - case 194: + case 197: ADVANCE_MAP( - '(', 276, + '(', 279, ')', 714, - ':', 189, + ':', 192, ']', 526, '}', 520, - ',', 170, - '.', 170, - '{', 170, + ',', 173, + '.', 173, + '{', 173, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(196); + lookahead != ' ') ADVANCE(199); END_STATE(); - case 195: - if (lookahead == '(') ADVANCE(276); + case 198: + if (lookahead == '(') ADVANCE(279); if (lookahead == ')') ADVANCE(714); if (lookahead == ']') ADVANCE(526); if (lookahead == '{') ADVANCE(521); if (lookahead == '}') ADVANCE(520); if (lookahead == ',' || - lookahead == '.') ADVANCE(170); + lookahead == '.') ADVANCE(173); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(196); + lookahead != ' ') ADVANCE(199); END_STATE(); - case 196: - if (lookahead == '(') ADVANCE(276); + case 199: + if (lookahead == '(') ADVANCE(279); if (lookahead == ')') ADVANCE(714); if (lookahead == ']') ADVANCE(526); if (lookahead == '}') ADVANCE(520); if (lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(170); + lookahead == '{') ADVANCE(173); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(196); + lookahead != ' ') ADVANCE(199); END_STATE(); - case 197: + case 200: ADVANCE_MAP( - '(', 268, + '(', 271, ')', 719, - '[', 194, + '[', 197, ']', 445, '{', 540, '}', 539, - ',', 180, - '.', 180, + ',', 183, + '.', 183, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(198); + lookahead == ' ') ADVANCE(255); + if (lookahead != 0) ADVANCE(201); END_STATE(); - case 198: + case 201: ADVANCE_MAP( - '(', 268, + '(', 271, ')', 719, - '[', 194, + '[', 197, ']', 445, '}', 539, - ',', 180, - '.', 180, - '{', 180, + ',', 183, + '.', 183, + '{', 183, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(198); + lookahead == ' ') ADVANCE(255); + if (lookahead != 0) ADVANCE(201); END_STATE(); - case 199: + case 202: if (lookahead == ')') ADVANCE(708); - if (lookahead == ':') ADVANCE(204); + if (lookahead == ':') ADVANCE(207); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && - lookahead != ')') ADVANCE(200); + lookahead != ')') ADVANCE(203); END_STATE(); - case 200: + case 203: if (lookahead == ')') ADVANCE(708); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && - lookahead != ')') ADVANCE(200); + lookahead != ')') ADVANCE(203); END_STATE(); - case 201: + case 204: if (lookahead == ')') ADVANCE(382); END_STATE(); - case 202: + case 205: if (lookahead == ')') ADVANCE(470); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || @@ -8429,71 +8447,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(451); END_STATE(); - case 203: + case 206: if (lookahead == ')') ADVANCE(724); - if (lookahead == '[') ADVANCE(199); + if (lookahead == '[') ADVANCE(202); if (lookahead == ']') ADVANCE(451); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '(') ADVANCE(252); - if (lookahead != 0) ADVANCE(203); + lookahead == '(') ADVANCE(255); + if (lookahead != 0) ADVANCE(206); END_STATE(); - case 204: + case 207: if (lookahead == ')') ADVANCE(597); - if (lookahead == ':') ADVANCE(205); - if (lookahead == ']') ADVANCE(200); + if (lookahead == ':') ADVANCE(208); + if (lookahead == ']') ADVANCE(203); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '(') ADVANCE(228); - if (lookahead != 0) ADVANCE(204); + lookahead == '(') ADVANCE(231); + if (lookahead != 0) ADVANCE(207); END_STATE(); - case 205: + case 208: if (lookahead == ')') ADVANCE(597); - if (lookahead == ':') ADVANCE(205); - if (lookahead == ']') ADVANCE(203); + if (lookahead == ':') ADVANCE(208); + if (lookahead == ']') ADVANCE(206); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '(') ADVANCE(228); - if (lookahead != 0) ADVANCE(204); + lookahead == '(') ADVANCE(231); + if (lookahead != 0) ADVANCE(207); END_STATE(); - case 206: - if (lookahead == ',') ADVANCE(215); - if (lookahead == '.') ADVANCE(216); - if (lookahead == ':') ADVANCE(212); + case 209: + if (lookahead == ',') ADVANCE(218); + if (lookahead == '.') ADVANCE(219); + if (lookahead == ':') ADVANCE(215); if (lookahead == '}') ADVANCE(708); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '{') ADVANCE(209); + lookahead != '{') ADVANCE(212); END_STATE(); - case 207: - if (lookahead == ',') ADVANCE(215); - if (lookahead == '.') ADVANCE(216); + case 210: + if (lookahead == ',') ADVANCE(218); + if (lookahead == '.') ADVANCE(219); if (lookahead == '{') ADVANCE(709); if (lookahead == '}') ADVANCE(708); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(209); + lookahead != ' ') ADVANCE(212); END_STATE(); - case 208: - if (lookahead == ',') ADVANCE(215); - if (lookahead == '.') ADVANCE(216); + case 211: + if (lookahead == ',') ADVANCE(218); + if (lookahead == '.') ADVANCE(219); if (lookahead == '{') ADVANCE(709); if (lookahead == '}') ADVANCE(389); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(209); + lookahead != ' ') ADVANCE(212); END_STATE(); - case 209: - if (lookahead == ',') ADVANCE(215); - if (lookahead == '.') ADVANCE(216); + case 212: + if (lookahead == ',') ADVANCE(218); + if (lookahead == '.') ADVANCE(219); if (lookahead == '}') ADVANCE(708); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '{') ADVANCE(209); + lookahead != '{') ADVANCE(212); END_STATE(); - case 210: + case 213: if (lookahead == ',') ADVANCE(457); if (lookahead == '.') ADVANCE(458); if (lookahead == '}') ADVANCE(470); @@ -8504,60 +8522,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(455); END_STATE(); - case 211: - if (lookahead == ',') ADVANCE(218); - if (lookahead == '.') ADVANCE(219); - if (lookahead == '[') ADVANCE(206); + case 214: + if (lookahead == ',') ADVANCE(221); + if (lookahead == '.') ADVANCE(222); + if (lookahead == '[') ADVANCE(209); if (lookahead == ']') ADVANCE(455); if (lookahead == '}') ADVANCE(724); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '{') ADVANCE(252); - if (lookahead != 0) ADVANCE(211); + lookahead == '{') ADVANCE(255); + if (lookahead != 0) ADVANCE(214); END_STATE(); - case 212: - if (lookahead == ',') ADVANCE(220); - if (lookahead == '.') ADVANCE(222); - if (lookahead == ':') ADVANCE(213); - if (lookahead == ']') ADVANCE(209); + case 215: + if (lookahead == ',') ADVANCE(223); + if (lookahead == '.') ADVANCE(225); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ']') ADVANCE(212); if (lookahead == '}') ADVANCE(597); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '{') ADVANCE(228); - if (lookahead != 0) ADVANCE(212); + lookahead == '{') ADVANCE(231); + if (lookahead != 0) ADVANCE(215); END_STATE(); - case 213: - if (lookahead == ',') ADVANCE(220); - if (lookahead == '.') ADVANCE(222); - if (lookahead == ':') ADVANCE(213); - if (lookahead == ']') ADVANCE(211); + case 216: + if (lookahead == ',') ADVANCE(223); + if (lookahead == '.') ADVANCE(225); + if (lookahead == ':') ADVANCE(216); + if (lookahead == ']') ADVANCE(214); if (lookahead == '}') ADVANCE(597); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '{') ADVANCE(228); - if (lookahead != 0) ADVANCE(212); + lookahead == '{') ADVANCE(231); + if (lookahead != 0) ADVANCE(215); END_STATE(); - case 214: - if (lookahead == '.') ADVANCE(216); - if (lookahead == ':') ADVANCE(220); + case 217: + if (lookahead == '.') ADVANCE(219); + if (lookahead == ':') ADVANCE(223); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '{' && - lookahead != '}') ADVANCE(215); + lookahead != '}') ADVANCE(218); END_STATE(); - case 215: - if (lookahead == '.') ADVANCE(216); + case 218: + if (lookahead == '.') ADVANCE(219); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '{' && - lookahead != '}') ADVANCE(215); + lookahead != '}') ADVANCE(218); END_STATE(); - case 216: - if (lookahead == '.') ADVANCE(304); + case 219: + if (lookahead == '.') ADVANCE(307); END_STATE(); - case 217: + case 220: if (lookahead == '.') ADVANCE(458); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || @@ -8567,228 +8585,228 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(457); END_STATE(); - case 218: - if (lookahead == '.') ADVANCE(219); - if (lookahead == '[') ADVANCE(214); + case 221: + if (lookahead == '.') ADVANCE(222); + if (lookahead == '[') ADVANCE(217); if (lookahead == ']') ADVANCE(457); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '{' || - lookahead == '}') ADVANCE(252); - if (lookahead != 0) ADVANCE(218); + lookahead == '}') ADVANCE(255); + if (lookahead != 0) ADVANCE(221); END_STATE(); - case 219: - if (lookahead == '.') ADVANCE(260); - if (lookahead == '[') ADVANCE(223); + case 222: + if (lookahead == '.') ADVANCE(263); + if (lookahead == '[') ADVANCE(226); if (lookahead == ']') ADVANCE(461); - if (lookahead != 0) ADVANCE(252); + if (lookahead != 0) ADVANCE(255); END_STATE(); - case 220: - if (lookahead == '.') ADVANCE(222); - if (lookahead == ':') ADVANCE(221); - if (lookahead == ']') ADVANCE(215); + case 223: + if (lookahead == '.') ADVANCE(225); + if (lookahead == ':') ADVANCE(224); + if (lookahead == ']') ADVANCE(218); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '{' || - lookahead == '}') ADVANCE(228); - if (lookahead != 0) ADVANCE(220); + lookahead == '}') ADVANCE(231); + if (lookahead != 0) ADVANCE(223); END_STATE(); - case 221: - if (lookahead == '.') ADVANCE(222); - if (lookahead == ':') ADVANCE(221); - if (lookahead == ']') ADVANCE(218); + case 224: + if (lookahead == '.') ADVANCE(225); + if (lookahead == ':') ADVANCE(224); + if (lookahead == ']') ADVANCE(221); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '{' || - lookahead == '}') ADVANCE(228); - if (lookahead != 0) ADVANCE(220); + lookahead == '}') ADVANCE(231); + if (lookahead != 0) ADVANCE(223); END_STATE(); - case 222: - if (lookahead == '.') ADVANCE(241); - if (lookahead == ':') ADVANCE(227); + case 225: + if (lookahead == '.') ADVANCE(244); + if (lookahead == ':') ADVANCE(230); if (lookahead != 0 && - lookahead != ']') ADVANCE(228); + lookahead != ']') ADVANCE(231); END_STATE(); - case 223: - if (lookahead == ':') ADVANCE(228); + case 226: + if (lookahead == ':') ADVANCE(231); END_STATE(); - case 224: - if (lookahead == ':') ADVANCE(232); + case 227: + if (lookahead == ':') ADVANCE(235); if (lookahead == ']') ADVANCE(708); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(273); + lookahead != ' ') ADVANCE(276); END_STATE(); - case 225: - if (lookahead == ':') ADVANCE(235); + case 228: + if (lookahead == ':') ADVANCE(238); if (lookahead == ']') ADVANCE(712); if (lookahead == '}') ADVANCE(710); if (lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(273); + lookahead == '{') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(276); + lookahead != ' ') ADVANCE(279); END_STATE(); - case 226: - if (lookahead == ':') ADVANCE(235); + case 229: + if (lookahead == ':') ADVANCE(238); if (lookahead == ']') ADVANCE(712); if (lookahead == '}') ADVANCE(722); if (lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(273); + lookahead == '{') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(277); + lookahead != ' ') ADVANCE(280); END_STATE(); - case 227: - if (lookahead == ':') ADVANCE(227); - if (lookahead == ']') ADVANCE(252); - if (lookahead != 0) ADVANCE(228); + case 230: + if (lookahead == ':') ADVANCE(230); + if (lookahead == ']') ADVANCE(255); + if (lookahead != 0) ADVANCE(231); END_STATE(); - case 228: - if (lookahead == ':') ADVANCE(227); + case 231: + if (lookahead == ':') ADVANCE(230); if (lookahead != 0 && - lookahead != ']') ADVANCE(228); + lookahead != ']') ADVANCE(231); END_STATE(); - case 229: - if (lookahead == ':') ADVANCE(238); + case 232: + if (lookahead == ':') ADVANCE(241); if (lookahead == '}') ADVANCE(708); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != ',' && lookahead != '.' && - lookahead != '{') ADVANCE(303); + lookahead != '{') ADVANCE(306); END_STATE(); - case 230: - if (lookahead == ':') ADVANCE(241); + case 233: + if (lookahead == ':') ADVANCE(244); if (lookahead == '}') ADVANCE(801); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '{') ADVANCE(304); + lookahead != '{') ADVANCE(307); END_STATE(); - case 231: + case 234: if (lookahead == ':') ADVANCE(596); if (lookahead == ']') ADVANCE(708); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(228); + lookahead == '\r') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') ADVANCE(597); if (lookahead != 0) ADVANCE(594); END_STATE(); - case 232: - if (lookahead == ':') ADVANCE(233); + case 235: + if (lookahead == ':') ADVANCE(236); if (lookahead == ']') ADVANCE(708); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); - if (lookahead != 0) ADVANCE(232); + lookahead == ' ') ADVANCE(231); + if (lookahead != 0) ADVANCE(235); END_STATE(); - case 233: - if (lookahead == ':') ADVANCE(233); + case 236: + if (lookahead == ':') ADVANCE(236); if (lookahead == ']') ADVANCE(724); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); - if (lookahead != 0) ADVANCE(232); + lookahead == ' ') ADVANCE(231); + if (lookahead != 0) ADVANCE(235); END_STATE(); - case 234: - if (lookahead == ':') ADVANCE(236); + case 237: + if (lookahead == ':') ADVANCE(239); if (lookahead == ']') ADVANCE(712); if (lookahead == '{') ADVANCE(595); if (lookahead == '}') ADVANCE(594); if (lookahead == ',' || - lookahead == '.') ADVANCE(232); + lookahead == '.') ADVANCE(235); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); - if (lookahead != 0) ADVANCE(235); + lookahead == ' ') ADVANCE(231); + if (lookahead != 0) ADVANCE(238); END_STATE(); - case 235: - if (lookahead == ':') ADVANCE(236); + case 238: + if (lookahead == ':') ADVANCE(239); if (lookahead == ']') ADVANCE(712); if (lookahead == '}') ADVANCE(594); if (lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(232); + lookahead == '{') ADVANCE(235); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); - if (lookahead != 0) ADVANCE(235); + lookahead == ' ') ADVANCE(231); + if (lookahead != 0) ADVANCE(238); END_STATE(); - case 236: - if (lookahead == ':') ADVANCE(236); + case 239: + if (lookahead == ':') ADVANCE(239); if (lookahead == ']') ADVANCE(720); if (lookahead == '}') ADVANCE(594); if (lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(232); + lookahead == '{') ADVANCE(235); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); - if (lookahead != 0) ADVANCE(235); + lookahead == ' ') ADVANCE(231); + if (lookahead != 0) ADVANCE(238); END_STATE(); - case 237: - if (lookahead == ':') ADVANCE(239); - if (lookahead == ']') ADVANCE(303); + case 240: + if (lookahead == ':') ADVANCE(242); + if (lookahead == ']') ADVANCE(306); if (lookahead == '{') ADVANCE(598); if (lookahead == '}') ADVANCE(597); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == ',' || - lookahead == '.') ADVANCE(228); - if (lookahead != 0) ADVANCE(238); + lookahead == '.') ADVANCE(231); + if (lookahead != 0) ADVANCE(241); END_STATE(); - case 238: - if (lookahead == ':') ADVANCE(239); - if (lookahead == ']') ADVANCE(303); + case 241: + if (lookahead == ':') ADVANCE(242); + if (lookahead == ']') ADVANCE(306); if (lookahead == '}') ADVANCE(597); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(228); - if (lookahead != 0) ADVANCE(238); + lookahead == '{') ADVANCE(231); + if (lookahead != 0) ADVANCE(241); END_STATE(); - case 239: - if (lookahead == ':') ADVANCE(239); - if (lookahead == ']') ADVANCE(257); + case 242: + if (lookahead == ':') ADVANCE(242); + if (lookahead == ']') ADVANCE(260); if (lookahead == '}') ADVANCE(597); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(228); - if (lookahead != 0) ADVANCE(238); + lookahead == '{') ADVANCE(231); + if (lookahead != 0) ADVANCE(241); END_STATE(); - case 240: + case 243: if (lookahead == ':') ADVANCE(599); if (lookahead == ']') ADVANCE(708); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(228); + lookahead == '\r') ADVANCE(231); if (lookahead != 0) ADVANCE(597); END_STATE(); - case 241: - if (lookahead == ':') ADVANCE(242); - if (lookahead == ']') ADVANCE(304); + case 244: + if (lookahead == ':') ADVANCE(245); + if (lookahead == ']') ADVANCE(307); if (lookahead == '}') ADVANCE(802); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '{') ADVANCE(228); - if (lookahead != 0) ADVANCE(241); + lookahead == '{') ADVANCE(231); + if (lookahead != 0) ADVANCE(244); END_STATE(); - case 242: - if (lookahead == ':') ADVANCE(242); - if (lookahead == ']') ADVANCE(260); + case 245: + if (lookahead == ':') ADVANCE(245); + if (lookahead == ']') ADVANCE(263); if (lookahead == '}') ADVANCE(802); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '{') ADVANCE(228); - if (lookahead != 0) ADVANCE(241); + lookahead == '{') ADVANCE(231); + if (lookahead != 0) ADVANCE(244); END_STATE(); - case 243: + case 246: ADVANCE_MAP( ':', 551, ']', 584, - '\n', 228, - '\r', 228, + '\n', 231, + '\r', 231, '(', 594, ')', 594, '\t', 597, @@ -8798,12 +8816,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(549); END_STATE(); - case 244: + case 247: ADVANCE_MAP( ':', 590, ']', 584, - '\n', 228, - '\r', 228, + '\n', 231, + '\r', 231, '\t', 597, 0x0b, 597, '\f', 597, @@ -8813,12 +8831,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(588); END_STATE(); - case 245: + case 248: ADVANCE_MAP( ':', 604, ']', 712, - '\n', 228, - '\r', 228, + '\n', 231, + '\r', 231, '\t', 597, 0x0b, 597, '\f', 597, @@ -8830,12 +8848,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(602); END_STATE(); - case 246: + case 249: ADVANCE_MAP( ':', 554, ']', 526, - '\n', 228, - '\r', 228, + '\n', 231, + '\r', 231, '(', 602, ')', 602, '\t', 597, @@ -8849,12 +8867,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(552); END_STATE(); - case 247: + case 250: ADVANCE_MAP( ':', 607, ']', 712, - '\n', 228, - '\r', 228, + '\n', 231, + '\r', 231, '\t', 597, 0x0b, 597, '\f', 597, @@ -8866,12 +8884,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(605); END_STATE(); - case 248: + case 251: ADVANCE_MAP( ':', 559, ']', 526, - '\n', 228, - '\r', 228, + '\n', 231, + '\r', 231, '(', 605, ')', 605, '\t', 597, @@ -8885,90 +8903,90 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(557); END_STATE(); - case 249: + case 252: if (lookahead == '=') ADVANCE(399); END_STATE(); - case 250: + case 253: if (lookahead == '>') ADVANCE(421); END_STATE(); - case 251: + case 254: if (lookahead == '[') ADVANCE(592); if (lookahead == ']') ADVANCE(470); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(252); + lookahead == '\r') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') ADVANCE(724); if (lookahead != 0) ADVANCE(716); END_STATE(); - case 252: - if (lookahead == '[') ADVANCE(223); + case 255: + if (lookahead == '[') ADVANCE(226); if (lookahead == ']') ADVANCE(461); - if (lookahead != 0) ADVANCE(252); + if (lookahead != 0) ADVANCE(255); END_STATE(); - case 253: - if (lookahead == '[') ADVANCE(226); + case 256: + if (lookahead == '[') ADVANCE(229); if (lookahead == ']') ADVANCE(465); if (lookahead == '{') ADVANCE(717); if (lookahead == '}') ADVANCE(716); if (lookahead == ',' || - lookahead == '.') ADVANCE(255); + lookahead == '.') ADVANCE(258); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(254); + lookahead == ' ') ADVANCE(255); + if (lookahead != 0) ADVANCE(257); END_STATE(); - case 254: - if (lookahead == '[') ADVANCE(226); + case 257: + if (lookahead == '[') ADVANCE(229); if (lookahead == ']') ADVANCE(465); if (lookahead == '}') ADVANCE(716); if (lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(255); + lookahead == '{') ADVANCE(258); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(254); + lookahead == ' ') ADVANCE(255); + if (lookahead != 0) ADVANCE(257); END_STATE(); - case 255: - if (lookahead == '[') ADVANCE(224); + case 258: + if (lookahead == '[') ADVANCE(227); if (lookahead == ']') ADVANCE(470); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(255); + lookahead == ' ') ADVANCE(255); + if (lookahead != 0) ADVANCE(258); END_STATE(); - case 256: - if (lookahead == '[') ADVANCE(229); + case 259: + if (lookahead == '[') ADVANCE(232); if (lookahead == ']') ADVANCE(464); if (lookahead == '{') ADVANCE(725); if (lookahead == '}') ADVANCE(724); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == ',' || - lookahead == '.') ADVANCE(252); - if (lookahead != 0) ADVANCE(257); + lookahead == '.') ADVANCE(255); + if (lookahead != 0) ADVANCE(260); END_STATE(); - case 257: - if (lookahead == '[') ADVANCE(229); + case 260: + if (lookahead == '[') ADVANCE(232); if (lookahead == ']') ADVANCE(464); if (lookahead == '}') ADVANCE(724); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(252); - if (lookahead != 0) ADVANCE(257); + lookahead == '{') ADVANCE(255); + if (lookahead != 0) ADVANCE(260); END_STATE(); - case 258: + case 261: if (lookahead == '[') ADVANCE(593); if (lookahead == ']') ADVANCE(470); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(252); + lookahead == '\r') ADVANCE(255); if (lookahead != 0) ADVANCE(724); END_STATE(); - case 259: + case 262: ADVANCE_MAP( '[', 600, ']', 465, - '\n', 252, - '\r', 252, + '\n', 255, + '\r', 255, '\t', 724, 0x0b, 724, '\f', 724, @@ -8980,21 +8998,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(719); END_STATE(); - case 260: - if (lookahead == '[') ADVANCE(230); + case 263: + if (lookahead == '[') ADVANCE(233); if (lookahead == ']') ADVANCE(467); if (lookahead == '}') ADVANCE(803); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '{') ADVANCE(252); - if (lookahead != 0) ADVANCE(260); + lookahead == '{') ADVANCE(255); + if (lookahead != 0) ADVANCE(263); END_STATE(); - case 261: + case 264: ADVANCE_MAP( '[', 519, ']', 452, - '\n', 252, - '\r', 252, + '\n', 255, + '\r', 255, '(', 727, ')', 727, '\t', 724, @@ -9004,12 +9022,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(539); END_STATE(); - case 262: + case 265: ADVANCE_MAP( '[', 608, ']', 465, - '\n', 252, - '\r', 252, + '\n', 255, + '\r', 255, '\t', 724, 0x0b, 724, '\f', 724, @@ -9021,12 +9039,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(720); END_STATE(); - case 263: + case 266: ADVANCE_MAP( '[', 583, ']', 452, - '\n', 252, - '\r', 252, + '\n', 255, + '\r', 255, '\t', 724, 0x0b, 724, '\f', 724, @@ -9036,12 +9054,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(586); END_STATE(); - case 264: + case 267: ADVANCE_MAP( '[', 566, ']', 445, - '\n', 252, - '\r', 252, + '\n', 255, + '\r', 255, '(', 719, ')', 719, '\t', 724, @@ -9055,12 +9073,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(573); END_STATE(); - case 265: + case 268: ADVANCE_MAP( '[', 525, ']', 445, - '\n', 252, - '\r', 252, + '\n', 255, + '\r', 255, '(', 720, ')', 720, '\t', 724, @@ -9074,43 +9092,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(543); END_STATE(); - case 266: + case 269: if (lookahead == '[') ADVANCE(591); if (lookahead == ']') ADVANCE(470); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(252); + lookahead == '\r') ADVANCE(255); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') ADVANCE(724); if (lookahead != 0) ADVANCE(727); END_STATE(); - case 267: - if (lookahead == '[') ADVANCE(225); + case 270: + if (lookahead == '[') ADVANCE(228); if (lookahead == ']') ADVANCE(465); if (lookahead == '{') ADVANCE(726); if (lookahead == '}') ADVANCE(727); if (lookahead == ',' || - lookahead == '.') ADVANCE(255); + lookahead == '.') ADVANCE(258); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') ADVANCE(255); + if (lookahead != 0) ADVANCE(271); END_STATE(); - case 268: - if (lookahead == '[') ADVANCE(225); + case 271: + if (lookahead == '[') ADVANCE(228); if (lookahead == ']') ADVANCE(465); if (lookahead == '}') ADVANCE(727); if (lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(255); + lookahead == '{') ADVANCE(258); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); - if (lookahead != 0) ADVANCE(268); + lookahead == ' ') ADVANCE(255); + if (lookahead != 0) ADVANCE(271); END_STATE(); - case 269: + case 272: ADVANCE_MAP( '[', 601, ']', 465, - '\n', 252, - '\r', 252, + '\n', 255, + '\r', 255, '\t', 724, 0x0b, 724, '\f', 724, @@ -9122,12 +9140,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(728); END_STATE(); - case 270: + case 273: ADVANCE_MAP( '[', 522, ']', 452, - '\n', 252, - '\r', 252, + '\n', 255, + '\r', 255, '(', 716, ')', 716, '\t', 724, @@ -9137,12 +9155,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(537); END_STATE(); - case 271: + case 274: ADVANCE_MAP( '[', 528, ']', 445, - '\n', 252, - '\r', 252, + '\n', 255, + '\r', 255, '(', 728, ')', 728, '\t', 724, @@ -9156,7 +9174,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (lookahead != 0) ADVANCE(545); END_STATE(); - case 272: + case 275: if (lookahead == ']') ADVANCE(708); if (lookahead == '\t' || lookahead == 0x0b || @@ -9165,53 +9183,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(722); END_STATE(); - case 273: + case 276: if (lookahead == ']') ADVANCE(708); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(273); + lookahead != ' ') ADVANCE(276); END_STATE(); - case 274: + case 277: if (lookahead == ']') ADVANCE(712); if (lookahead == '{') ADVANCE(723); if (lookahead == '}') ADVANCE(722); if (lookahead == ',' || - lookahead == '.') ADVANCE(273); + lookahead == '.') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(277); + lookahead != ' ') ADVANCE(280); END_STATE(); - case 275: + case 278: if (lookahead == ']') ADVANCE(712); if (lookahead == '{') ADVANCE(711); if (lookahead == '}') ADVANCE(710); if (lookahead == ',' || - lookahead == '.') ADVANCE(273); + lookahead == '.') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(276); + lookahead != ' ') ADVANCE(279); END_STATE(); - case 276: + case 279: if (lookahead == ']') ADVANCE(712); if (lookahead == '}') ADVANCE(710); if (lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(273); + lookahead == '{') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(276); + lookahead != ' ') ADVANCE(279); END_STATE(); - case 277: + case 280: if (lookahead == ']') ADVANCE(712); if (lookahead == '}') ADVANCE(722); if (lookahead == ',' || lookahead == '.' || - lookahead == '{') ADVANCE(273); + lookahead == '{') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(277); + lookahead != ' ') ADVANCE(280); END_STATE(); - case 278: + case 281: ADVANCE_MAP( ']', 712, '\t', 708, @@ -9226,7 +9244,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(714); END_STATE(); - case 279: + case 282: ADVANCE_MAP( ']', 712, '\t', 708, @@ -9241,7 +9259,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(730); END_STATE(); - case 280: + case 283: if (lookahead == ']') ADVANCE(584); if (lookahead == '(' || lookahead == ')') ADVANCE(710); @@ -9252,7 +9270,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(520); END_STATE(); - case 281: + case 284: if (lookahead == ']') ADVANCE(584); if (lookahead == '(' || lookahead == ')') ADVANCE(722); @@ -9263,7 +9281,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(523); END_STATE(); - case 282: + case 285: ADVANCE_MAP( ']', 526, '(', 714, @@ -9280,7 +9298,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(567); END_STATE(); - case 283: + case 286: ADVANCE_MAP( ']', 526, '(', 730, @@ -9297,88 +9315,88 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(529); END_STATE(); - case 284: - if (lookahead == 'a') ADVANCE(285); - END_STATE(); - case 285: - if (lookahead == 'c') ADVANCE(374); - END_STATE(); - case 286: - if (lookahead == 'e') ADVANCE(370); - END_STATE(); case 287: - if (lookahead == 'e') ADVANCE(361); + if (lookahead == 'a') ADVANCE(288); END_STATE(); case 288: - if (lookahead == 'e') ADVANCE(296); + if (lookahead == 'c') ADVANCE(374); END_STATE(); case 289: - if (lookahead == 'f') ADVANCE(368); + if (lookahead == 'e') ADVANCE(370); END_STATE(); case 290: - if (lookahead == 'h') ADVANCE(288); + if (lookahead == 'e') ADVANCE(361); END_STATE(); case 291: - if (lookahead == 'i') ADVANCE(366); + if (lookahead == 'e') ADVANCE(299); END_STATE(); case 292: - if (lookahead == 'i') ADVANCE(289); - if (lookahead == 's') ADVANCE(286); + if (lookahead == 'f') ADVANCE(368); END_STATE(); case 293: - if (lookahead == 'l') ADVANCE(292); + if (lookahead == 'h') ADVANCE(291); END_STATE(); case 294: - if (lookahead == 'l') ADVANCE(292); - if (lookahead == 's') ADVANCE(284); + if (lookahead == 'i') ADVANCE(366); END_STATE(); case 295: - if (lookahead == 'n') ADVANCE(373); + if (lookahead == 'i') ADVANCE(292); + if (lookahead == 's') ADVANCE(289); END_STATE(); case 296: - if (lookahead == 'n') ADVANCE(364); + if (lookahead == 'l') ADVANCE(295); END_STATE(); case 297: - if (lookahead == 'n') ADVANCE(287); + if (lookahead == 'l') ADVANCE(295); + if (lookahead == 's') ADVANCE(287); END_STATE(); case 298: - if (lookahead == 'o') ADVANCE(359); + if (lookahead == 'n') ADVANCE(373); END_STATE(); case 299: - if (lookahead == 'o') ADVANCE(297); + if (lookahead == 'n') ADVANCE(364); END_STATE(); case 300: - if (lookahead == 's') ADVANCE(284); + if (lookahead == 'n') ADVANCE(290); END_STATE(); case 301: + if (lookahead == 'o') ADVANCE(359); + END_STATE(); + case 302: + if (lookahead == 'o') ADVANCE(300); + END_STATE(); + case 303: + if (lookahead == 's') ADVANCE(287); + END_STATE(); + case 304: if (lookahead == '{') ADVANCE(709); if (lookahead == '}') ADVANCE(708); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != ',' && - lookahead != '.') ADVANCE(303); + lookahead != '.') ADVANCE(306); END_STATE(); - case 302: + case 305: if (lookahead == '|') ADVANCE(344); END_STATE(); - case 303: + case 306: if (lookahead == '}') ADVANCE(708); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != ',' && lookahead != '.' && - lookahead != '{') ADVANCE(303); + lookahead != '{') ADVANCE(306); END_STATE(); - case 304: + case 307: if (lookahead == '}') ADVANCE(801); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '{') ADVANCE(304); + lookahead != '{') ADVANCE(307); END_STATE(); - case 305: + case 308: if (lookahead == '}') ADVANCE(470); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || @@ -9389,7 +9407,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(464); END_STATE(); - case 306: + case 309: if (lookahead == '}') ADVANCE(461); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || @@ -9398,7 +9416,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(467); END_STATE(); - case 307: + case 310: ADVANCE_MAP( '(', 712, ')', 712, @@ -9414,7 +9432,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(526); END_STATE(); - case 308: + case 311: if (lookahead == '\t' || lookahead == 0x0b || lookahead == '\f' || @@ -9423,7 +9441,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(710); END_STATE(); - case 309: + case 312: if (lookahead == '\t' || lookahead == 0x0b || lookahead == '\f' || @@ -9433,7 +9451,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(584); END_STATE(); - case 310: + case 313: if (lookahead == '\t' || lookahead == 0x0b || lookahead == '\f' || @@ -9445,41 +9463,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead)) ADVANCE(712); END_STATE(); - case 311: + case 314: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(473); END_STATE(); - case 312: + case 315: if (('0' <= lookahead && lookahead <= '9') || ('@' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(474); END_STATE(); - case 313: + case 316: if (lookahead != 0 && lookahead != '\n' && lookahead != '\r') ADVANCE(708); END_STATE(); - case 314: + case 317: if (lookahead != 0 && lookahead != '\n' && lookahead != '\r') ADVANCE(805); END_STATE(); - case 315: + case 318: if (lookahead != 0 && lookahead != '\n' && lookahead != '\r') ADVANCE(827); END_STATE(); - case 316: + case 319: if (lookahead != 0 && - lookahead != '\n') ADVANCE(164); + lookahead != '\n') ADVANCE(167); END_STATE(); - case 317: + case 320: if (lookahead != 0 && lookahead != '\n') ADVANCE(461); END_STATE(); - case 318: + case 321: if (eof) ADVANCE(334); ADVANCE_MAP( '\n', 335, @@ -9489,7 +9507,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '$', 813, '%', 487, '&', 340, - '\'', 163, + '\'', 166, '(', 353, ')', 354, '*', 481, @@ -9506,7 +9524,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '?', 511, '@', 829, '[', 391, - '\\', 41, + '\\', 42, ']', 394, '^', 505, 'a', 768, @@ -9528,7 +9546,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '~', 503, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(318); + lookahead == ' ') SKIP(321); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); if (('A' <= lookahead && lookahead <= '_') || ('g' <= lookahead && lookahead <= 'z')) ADVANCE(800); @@ -9536,7 +9554,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\t' || '\r' < lookahead) && (lookahead < '/' || '~' < lookahead)) ADVANCE(708); END_STATE(); - case 319: + case 322: if (eof) ADVANCE(334); ADVANCE_MAP( '\n', 335, @@ -9545,7 +9563,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 842, '$', 813, '&', 339, - '\'', 163, + '\'', 166, '(', 352, ')', 354, '-', 615, @@ -9554,14 +9572,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '=', 609, '>', 418, '[', 722, - '\\', 73, + '\\', 76, ']', 611, - '{', 207, + '{', 210, '|', 346, '}', 358, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(319); + lookahead == ' ') SKIP(322); if (lookahead == '*' || lookahead == '+' || lookahead == '?' || @@ -9571,7 +9589,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\t' || '\r' < lookahead) && lookahead != '`') ADVANCE(708); END_STATE(); - case 320: + case 323: if (eof) ADVANCE(334); ADVANCE_MAP( '\n', 335, @@ -9579,15 +9597,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '"', 815, '#', 837, '$', 813, - '&', 250, - '\'', 163, + '&', 253, + '\'', 166, '(', 353, ')', 354, - ';', 162, + ';', 165, '<', 410, '>', 416, '[', 391, - '\\', 43, + '\\', 44, 'a', 658, 'b', 686, 'c', 612, @@ -9605,7 +9623,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 358, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(320); + lookahead == ' ') SKIP(323); if (lookahead == '*' || lookahead == '+' || lookahead == '?' || @@ -9616,7 +9634,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '`' || 'f' < lookahead) && (lookahead < '{' || '}' < lookahead)) ADVANCE(708); END_STATE(); - case 321: + case 324: if (eof) ADVANCE(334); ADVANCE_MAP( '\n', 335, @@ -9625,21 +9643,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ')', 354, ';', 337, '<', 410, '>', 416, '[', 722, - '\\', 53, + '\\', 52, 'e', 693, - '{', 208, + '{', 211, '|', 346, '}', 358, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(321); + lookahead == ' ') SKIP(324); if (lookahead == '*' || lookahead == '+' || lookahead == '?' || @@ -9649,7 +9667,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\t' || '\r' < lookahead) && lookahead != '`') ADVANCE(708); END_STATE(); - case 322: + case 325: if (eof) ADVANCE(334); ADVANCE_MAP( '\n', 335, @@ -9658,20 +9676,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ')', 354, ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 55, - '{', 208, + '\\', 60, + '{', 211, '|', 346, '}', 358, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(322); + lookahead == ' ') SKIP(325); if (lookahead == '*' || lookahead == '+' || lookahead == '?' || @@ -9681,29 +9699,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\t' || '\r' < lookahead) && lookahead != '`') ADVANCE(708); END_STATE(); - case 323: + case 326: if (eof) ADVANCE(334); ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 340, - '\'', 163, + '\'', 166, '(', 352, ')', 354, ';', 336, '<', 410, '>', 416, '[', 722, - '\\', 105, - '{', 207, + '\\', 114, + '{', 210, '|', 346, '}', 358, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(323); + lookahead == ' ') SKIP(326); if (lookahead == '*' || lookahead == '+' || lookahead == '?' || @@ -9713,29 +9731,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\t' || '\r' < lookahead) && lookahead != '`') ADVANCE(708); END_STATE(); - case 324: + case 327: if (eof) ADVANCE(334); ADVANCE_MAP( '\n', 335, - '!', 166, + '!', 169, '"', 815, '#', 842, '$', 813, '&', 339, - '\'', 163, + '\'', 166, '(', 352, ')', 354, ';', 336, - '<', 167, - '>', 168, + '<', 170, + '>', 171, '[', 722, - '\\', 123, - '{', 207, + '\\', 130, + '{', 210, '|', 346, '}', 358, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(324); + lookahead == ' ') SKIP(327); if (lookahead == '*' || lookahead == '+' || lookahead == '?' || @@ -9745,7 +9763,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\t' || '\r' < lookahead) && lookahead != '`') ADVANCE(708); END_STATE(); - case 325: + case 328: if (eof) ADVANCE(334); ADVANCE_MAP( '\n', 335, @@ -9753,7 +9771,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '&', 340, '(', 352, ')', 354, - '+', 249, + '+', 252, ',', 514, ';', 336, '<', 411, @@ -9761,43 +9779,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '>', 417, '[', 390, ); - if (lookahead == '\\') SKIP(329); - if (lookahead == 'd') ADVANCE(298); - if (lookahead == 'e') ADVANCE(294); - if (lookahead == 'f') ADVANCE(291); - if (lookahead == 'i') ADVANCE(295); - if (lookahead == 't') ADVANCE(290); - if (lookahead == '{') ADVANCE(355); - if (lookahead == '|') ADVANCE(346); - if (lookahead == '}') ADVANCE(358); - if (lookahead == '\t' || - lookahead == ' ') SKIP(325); - END_STATE(); - case 326: - if (eof) ADVANCE(334); - ADVANCE_MAP( - '\n', 335, - '#', 842, - '&', 340, - '(', 352, - ')', 354, - ';', 337, - '<', 411, - '>', 417, - ); if (lookahead == '\\') SKIP(331); - if (lookahead == 'd') ADVANCE(298); - if (lookahead == 'e') ADVANCE(294); - if (lookahead == 'f') ADVANCE(291); - if (lookahead == 'i') ADVANCE(295); - if (lookahead == 't') ADVANCE(290); + if (lookahead == 'd') ADVANCE(301); + if (lookahead == 'e') ADVANCE(297); + if (lookahead == 'f') ADVANCE(294); + if (lookahead == 'i') ADVANCE(298); + if (lookahead == 't') ADVANCE(293); if (lookahead == '{') ADVANCE(355); if (lookahead == '|') ADVANCE(346); if (lookahead == '}') ADVANCE(358); if (lookahead == '\t' || - lookahead == ' ') SKIP(326); + lookahead == ' ') SKIP(328); END_STATE(); - case 327: + case 329: if (eof) ADVANCE(334); if (lookahead == '\n') ADVANCE(335); if (lookahead == '#') ADVANCE(842); @@ -9805,40 +9799,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ')') ADVANCE(354); if (lookahead == ';') ADVANCE(336); if (lookahead == '\\') SKIP(333); - if (lookahead == 'd') ADVANCE(298); - if (lookahead == 'e') ADVANCE(293); - if (lookahead == 'f') ADVANCE(291); - if (lookahead == 't') ADVANCE(290); + if (lookahead == 'd') ADVANCE(301); + if (lookahead == 'e') ADVANCE(296); + if (lookahead == 'f') ADVANCE(294); + if (lookahead == 't') ADVANCE(293); if (lookahead == '|') ADVANCE(346); if (lookahead == '}') ADVANCE(358); if (lookahead == '\t' || - lookahead == ' ') SKIP(327); - END_STATE(); - case 328: - if (eof) ADVANCE(334); - if (lookahead == '\n') SKIP(325); - END_STATE(); - case 329: - if (eof) ADVANCE(334); - if (lookahead == '\n') SKIP(325); - if (lookahead == '\r') SKIP(328); + lookahead == ' ') SKIP(329); END_STATE(); case 330: if (eof) ADVANCE(334); - if (lookahead == '\n') SKIP(326); + if (lookahead == '\n') SKIP(328); END_STATE(); case 331: if (eof) ADVANCE(334); - if (lookahead == '\n') SKIP(326); + if (lookahead == '\n') SKIP(328); if (lookahead == '\r') SKIP(330); END_STATE(); case 332: if (eof) ADVANCE(334); - if (lookahead == '\n') SKIP(327); + if (lookahead == '\n') SKIP(329); END_STATE(); case 333: if (eof) ADVANCE(334); - if (lookahead == '\n') SKIP(327); + if (lookahead == '\n') SKIP(329); if (lookahead == '\r') SKIP(332); END_STATE(); case 334: @@ -9900,11 +9885,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 349: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '(') ADVANCE(200); + if (lookahead == '(') ADVANCE(203); END_STATE(); case 350: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '(') ADVANCE(200); + if (lookahead == '(') ADVANCE(203); if (lookahead == '=') ADVANCE(434); END_STATE(); case 351: @@ -9926,23 +9911,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 356: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == ',') ADVANCE(215); - if (lookahead == '.') ADVANCE(216); + if (lookahead == ',') ADVANCE(218); + if (lookahead == '.') ADVANCE(219); if (lookahead == '{') ADVANCE(709); if (lookahead == '}') ADVANCE(708); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(209); + lookahead != ' ') ADVANCE(212); END_STATE(); case 357: ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == ',') ADVANCE(215); - if (lookahead == '.') ADVANCE(216); + if (lookahead == ',') ADVANCE(218); + if (lookahead == '.') ADVANCE(219); if (lookahead == '{') ADVANCE(709); if (lookahead == '}') ADVANCE(389); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(209); + lookahead != ' ') ADVANCE(212); END_STATE(); case 358: ACCEPT_TOKEN(anon_sym_RBRACE); @@ -9953,8 +9938,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 360: ACCEPT_TOKEN(anon_sym_do); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -9968,8 +9953,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 362: ACCEPT_TOKEN(anon_sym_done); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -9980,8 +9965,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 363: ACCEPT_TOKEN(anon_sym_if); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -9995,8 +9980,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 365: ACCEPT_TOKEN(anon_sym_then); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10010,8 +9995,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 367: ACCEPT_TOKEN(anon_sym_fi); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10025,8 +10010,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 369: ACCEPT_TOKEN(anon_sym_elif); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10040,8 +10025,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 371: ACCEPT_TOKEN(anon_sym_else); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10052,8 +10037,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 372: ACCEPT_TOKEN(anon_sym_case); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10070,8 +10055,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 375: ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10092,8 +10077,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 379: ACCEPT_TOKEN(anon_sym_for); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10104,8 +10089,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 380: ACCEPT_TOKEN(anon_sym_select); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10122,8 +10107,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 383: ACCEPT_TOKEN(anon_sym_while); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10134,8 +10119,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 384: ACCEPT_TOKEN(anon_sym_until); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10146,8 +10131,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 385: ACCEPT_TOKEN(anon_sym_return); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10158,8 +10143,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 386: ACCEPT_TOKEN(anon_sym_break); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10170,8 +10155,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 387: ACCEPT_TOKEN(anon_sym_continue); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10182,8 +10167,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 388: ACCEPT_TOKEN(anon_sym_function); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10194,8 +10179,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 389: ACCEPT_TOKEN(anon_sym_LBRACE_RBRACE); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10209,9 +10194,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 391: ACCEPT_TOKEN(anon_sym_LBRACK); if (lookahead == '[') ADVANCE(432); - if (lookahead == '\\') ADVANCE(272); + if (lookahead == '\\') ADVANCE(275); if (lookahead == ']') ADVANCE(708); - if (lookahead == '{') ADVANCE(274); + if (lookahead == '{') ADVANCE(277); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10225,7 +10210,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(273); + lookahead == '}') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(722); @@ -10233,9 +10218,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 392: ACCEPT_TOKEN(anon_sym_LBRACK); if (lookahead == '[') ADVANCE(722); - if (lookahead == '\\') ADVANCE(272); + if (lookahead == '\\') ADVANCE(275); if (lookahead == ']') ADVANCE(708); - if (lookahead == '{') ADVANCE(274); + if (lookahead == '{') ADVANCE(277); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10249,7 +10234,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(273); + lookahead == '}') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(722); @@ -10260,8 +10245,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 394: ACCEPT_TOKEN(anon_sym_RBRACK); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10276,8 +10261,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '=') ADVANCE(436); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10292,8 +10277,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 398: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10307,8 +10292,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 400: ACCEPT_TOKEN(anon_sym_PLUS_EQ); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10319,8 +10304,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 401: ACCEPT_TOKEN(anon_sym_declare); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10331,8 +10316,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 402: ACCEPT_TOKEN(anon_sym_typeset); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10343,8 +10328,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 403: ACCEPT_TOKEN(anon_sym_export); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10355,8 +10340,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 404: ACCEPT_TOKEN(anon_sym_readonly); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10367,8 +10352,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 405: ACCEPT_TOKEN(anon_sym_local); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10379,8 +10364,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 406: ACCEPT_TOKEN(anon_sym_eval); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10391,8 +10376,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 407: ACCEPT_TOKEN(anon_sym_alias); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10403,8 +10388,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 408: ACCEPT_TOKEN(anon_sym_let); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10523,9 +10508,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 432: ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); if (lookahead == '[') ADVANCE(722); - if (lookahead == '\\') ADVANCE(272); + if (lookahead == '\\') ADVANCE(275); if (lookahead == ']') ADVANCE(708); - if (lookahead == '{') ADVANCE(274); + if (lookahead == '{') ADVANCE(277); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10539,7 +10524,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(273); + lookahead == '}') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(722); @@ -10547,8 +10532,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 433: ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10565,8 +10550,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 436: ACCEPT_TOKEN(anon_sym_EQ_EQ); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10577,8 +10562,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 437: ACCEPT_TOKEN(anon_sym_DASHa); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10589,8 +10574,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 438: ACCEPT_TOKEN(anon_sym_DASHo); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10601,8 +10586,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 439: ACCEPT_TOKEN(anon_sym_EQ_TILDE); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -10613,8 +10598,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 440: ACCEPT_TOKEN(aux_sym__conditional_token1); if (lookahead == '&') ADVANCE(461); - if (lookahead == '[') ADVANCE(252); - if (lookahead == '\\') ADVANCE(317); + if (lookahead == '[') ADVANCE(255); + if (lookahead == '\\') ADVANCE(320); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10627,7 +10612,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__conditional_token1); if (lookahead == '(') ADVANCE(454); if (lookahead == '[') ADVANCE(833); - if (lookahead == '\\') ADVANCE(317); + if (lookahead == '\\') ADVANCE(320); if (lookahead == '{') ADVANCE(461); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -10643,7 +10628,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '(', 451, ')', 470, '[', 539, - '\\', 143, + '\\', 146, '{', 447, '!', 442, '*', 442, @@ -10669,8 +10654,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__conditional_token1); if (lookahead == '(') ADVANCE(451); if (lookahead == '=') ADVANCE(461); - if (lookahead == '[') ADVANCE(252); - if (lookahead == '\\') ADVANCE(317); + if (lookahead == '[') ADVANCE(255); + if (lookahead == '\\') ADVANCE(320); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10684,7 +10669,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '(', 451, '[', 727, - '\\', 145, + '\\', 148, '{', 463, '!', 444, '*', 444, @@ -10713,7 +10698,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '(', 464, ')', 465, '[', 573, - '\\', 142, + '\\', 145, '{', 447, ',', 452, '.', 452, @@ -10743,7 +10728,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '(', 464, ')', 465, '[', 573, - '\\', 142, + '\\', 145, '{', 446, ',', 452, '.', 452, @@ -10772,8 +10757,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '(', 464, ')', 465, - '[', 182, - '\\', 183, + '[', 185, + '\\', 186, '{', 453, '}', 452, ',', 451, @@ -10791,8 +10776,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '(', 464, ')', 465, - '[', 182, - '\\', 183, + '[', 185, + '\\', 186, '}', 452, ',', 451, '.', 451, @@ -10811,7 +10796,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '(', 448, ')', 465, '[', 573, - '\\', 142, + '\\', 145, '{', 447, ',', 452, '.', 452, @@ -10840,7 +10825,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '(', 448, '[', 719, - '\\', 144, + '\\', 147, '{', 463, ',', 470, '.', 470, @@ -10869,8 +10854,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__conditional_token1); if (lookahead == '(') ADVANCE(461); if (lookahead == ')') ADVANCE(470); - if (lookahead == '[') ADVANCE(203); - if (lookahead == '\\') ADVANCE(202); + if (lookahead == '[') ADVANCE(206); + if (lookahead == '\\') ADVANCE(205); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10884,7 +10869,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '(', 461, ')', 470, '[', 539, - '\\', 143, + '\\', 146, '{', 447, '!', 442, '*', 442, @@ -10912,7 +10897,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '(', 461, ')', 470, '[', 539, - '\\', 143, + '\\', 146, '{', 446, '!', 442, '*', 442, @@ -10937,8 +10922,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 454: ACCEPT_TOKEN(aux_sym__conditional_token1); if (lookahead == '(') ADVANCE(461); - if (lookahead == '[') ADVANCE(252); - if (lookahead == '\\') ADVANCE(317); + if (lookahead == '[') ADVANCE(255); + if (lookahead == '\\') ADVANCE(320); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -10952,13 +10937,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ',', 457, '.', 458, - '[', 211, - '\\', 210, + '[', 214, + '\\', 213, '{', 461, '}', 470, - '"', 209, - '\'', 209, - ']', 209, + '"', 212, + '\'', 212, + ']', 212, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -10969,13 +10954,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ',', 457, '.', 458, - '[', 211, - '\\', 210, + '[', 214, + '\\', 213, '{', 471, '}', 470, - '"', 209, - '\'', 209, - ']', 209, + '"', 212, + '\'', 212, + ']', 212, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -10985,13 +10970,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__conditional_token1); ADVANCE_MAP( '.', 458, - '[', 218, - '\\', 217, + '[', 221, + '\\', 220, '{', 461, '}', 461, - '"', 215, - '\'', 215, - ']', 215, + '"', 218, + '\'', 218, + ']', 218, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -11000,8 +10985,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 458: ACCEPT_TOKEN(aux_sym__conditional_token1); if (lookahead == '.') ADVANCE(467); - if (lookahead == '[') ADVANCE(252); - if (lookahead == '\\') ADVANCE(317); + if (lookahead == '[') ADVANCE(255); + if (lookahead == '\\') ADVANCE(320); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -11014,7 +10999,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '=', 470, '[', 727, - '\\', 145, + '\\', 148, '{', 463, '~', 470, '!', 444, @@ -11041,8 +11026,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 460: ACCEPT_TOKEN(aux_sym__conditional_token1); - if (lookahead == '[') ADVANCE(252); - if (lookahead == '\\') ADVANCE(317); + if (lookahead == '[') ADVANCE(255); + if (lookahead == '\\') ADVANCE(320); if (lookahead == '|') ADVANCE(461); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -11053,8 +11038,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 461: ACCEPT_TOKEN(aux_sym__conditional_token1); - if (lookahead == '[') ADVANCE(252); - if (lookahead == '\\') ADVANCE(317); + if (lookahead == '[') ADVANCE(255); + if (lookahead == '\\') ADVANCE(320); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -11075,8 +11060,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 463: ACCEPT_TOKEN(aux_sym__conditional_token1); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(305); + if (lookahead == '[') ADVANCE(260); + if (lookahead == '\\') ADVANCE(308); if (lookahead == '{') ADVANCE(471); if (lookahead == '}') ADVANCE(470); if (lookahead == ',' || @@ -11090,8 +11075,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 464: ACCEPT_TOKEN(aux_sym__conditional_token1); - if (lookahead == '[') ADVANCE(257); - if (lookahead == '\\') ADVANCE(305); + if (lookahead == '[') ADVANCE(260); + if (lookahead == '\\') ADVANCE(308); if (lookahead == '}') ADVANCE(470); if (lookahead == ',' || lookahead == '.' || @@ -11107,7 +11092,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__conditional_token1); ADVANCE_MAP( '[', 719, - '\\', 144, + '\\', 147, '{', 463, ',', 470, '.', 470, @@ -11137,7 +11122,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__conditional_token1); ADVANCE_MAP( '[', 719, - '\\', 144, + '\\', 147, '{', 466, ',', 470, '.', 470, @@ -11165,13 +11150,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 467: ACCEPT_TOKEN(aux_sym__conditional_token1); - if (lookahead == '[') ADVANCE(260); - if (lookahead == '\\') ADVANCE(306); + if (lookahead == '[') ADVANCE(263); + if (lookahead == '\\') ADVANCE(309); if (lookahead == '{') ADVANCE(461); if (lookahead == '}') ADVANCE(461); if (lookahead == '"' || lookahead == '\'' || - lookahead == ']') ADVANCE(304); + lookahead == ']') ADVANCE(307); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ') ADVANCE(467); @@ -11180,7 +11165,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__conditional_token1); ADVANCE_MAP( '[', 727, - '\\', 145, + '\\', 148, 'a', 470, 'o', 470, '{', 463, @@ -11210,7 +11195,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__conditional_token1); ADVANCE_MAP( '[', 727, - '\\', 145, + '\\', 148, '{', 463, '!', 444, '*', 444, @@ -11239,7 +11224,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__conditional_token1); ADVANCE_MAP( '[', 727, - '\\', 145, + '\\', 148, '{', 463, '!', 444, '*', 444, @@ -11267,7 +11252,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym__conditional_token1); ADVANCE_MAP( '[', 727, - '\\', 145, + '\\', 148, '{', 466, '!', 444, '*', 444, @@ -11315,12 +11300,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 475: ACCEPT_TOKEN(anon_sym_PLUS); ADVANCE_MAP( - '(', 200, + '(', 203, '+', 507, '=', 400, '[', 710, - '\\', 313, - '{', 301, + '\\', 316, + '{', 304, '!', 518, '*', 518, '?', 518, @@ -11330,10 +11315,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 476: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '(') ADVANCE(200); + if (lookahead == '(') ADVANCE(203); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11352,8 +11337,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 509, '=', 493, '[', 710, - '\\', 313, - '{', 301, + '\\', 316, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -11370,8 +11355,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 480: ACCEPT_TOKEN(anon_sym_DASH); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11382,12 +11367,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 481: ACCEPT_TOKEN(anon_sym_STAR); ADVANCE_MAP( - '(', 200, + '(', 203, '*', 491, '=', 495, '[', 710, - '\\', 313, - '{', 301, + '\\', 316, + '{', 304, '!', 518, '+', 518, '?', 518, @@ -11397,10 +11382,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 482: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '(') ADVANCE(200); + if (lookahead == '(') ADVANCE(203); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11417,8 +11402,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '=') ADVANCE(497); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11433,8 +11418,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 486: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11446,8 +11431,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '=') ADVANCE(499); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11462,8 +11447,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 489: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11476,10 +11461,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 491: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '(') ADVANCE(200); + if (lookahead == '(') ADVANCE(203); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11493,8 +11478,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 493: ACCEPT_TOKEN(anon_sym_DASH_EQ); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11508,8 +11493,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 495: ACCEPT_TOKEN(anon_sym_STAR_EQ); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11523,8 +11508,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 497: ACCEPT_TOKEN(anon_sym_SLASH_EQ); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11538,8 +11523,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 499: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11559,8 +11544,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 503: ACCEPT_TOKEN(anon_sym_TILDE); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11574,8 +11559,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 505: ACCEPT_TOKEN(anon_sym_CARET); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11588,10 +11573,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 507: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '(') ADVANCE(200); + if (lookahead == '(') ADVANCE(203); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11605,8 +11590,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 509: ACCEPT_TOKEN(anon_sym_DASH_DASH); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11619,10 +11604,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 511: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '(') ADVANCE(200); + if (lookahead == '(') ADVANCE(203); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11636,8 +11621,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 513: ACCEPT_TOKEN(anon_sym_COLON); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11651,8 +11636,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 515: ACCEPT_TOKEN(anon_sym_COMMA); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11666,26 +11651,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 517: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 200, + '(', 203, ')', 708, '[', 520, - '\\', 309, - '{', 174, + '\\', 312, + '{', 177, '!', 517, '*', 517, '+', 517, '?', 517, '@', 517, - '"', 200, - '$', 200, - '&', 200, - '\'', 200, - ';', 200, - '<', 200, - '>', 200, - '`', 200, - '|', 200, - '}', 200, + '"', 203, + '$', 203, + '&', 203, + '\'', 203, + ';', 203, + '<', 203, + '>', 203, + '`', 203, + '|', 203, + '}', 203, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -11693,10 +11678,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 518: ACCEPT_TOKEN(sym_word); - if (lookahead == '(') ADVANCE(200); + if (lookahead == '(') ADVANCE(203); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -11707,28 +11692,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 519: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 273, + '(', 276, ')', 710, ':', 549, '[', 520, - '\\', 280, + '\\', 283, ']', 584, - '{', 195, + '{', 198, '!', 569, '*', 569, '+', 569, '?', 569, '@', 569, - '"', 170, - '$', 170, - '&', 170, - '\'', 170, - ';', 170, - '<', 170, - '>', 170, - '`', 170, - '|', 170, - '}', 170, + '"', 173, + '$', 173, + '&', 173, + '\'', 173, + ';', 173, + '<', 173, + '>', 173, + '`', 173, + '|', 173, + '}', 173, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -11737,27 +11722,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 520: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 273, + '(', 276, ')', 710, '[', 520, - '\\', 280, + '\\', 283, ']', 584, - '{', 195, + '{', 198, '!', 569, '*', 569, '+', 569, '?', 569, '@', 569, - '"', 170, - '$', 170, - '&', 170, - '\'', 170, - ';', 170, - '<', 170, - '>', 170, - '`', 170, - '|', 170, - '}', 170, + '"', 173, + '$', 173, + '&', 173, + '\'', 173, + ';', 173, + '<', 173, + '>', 173, + '`', 173, + '|', 173, + '}', 173, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -11766,10 +11751,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 521: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 273, + '(', 276, ')', 710, '[', 520, - '\\', 280, + '\\', 283, ']', 584, '{', 568, '!', 569, @@ -11777,16 +11762,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 569, '?', 569, '@', 569, - '"', 170, - '$', 170, - '&', 170, - '\'', 170, - ';', 170, - '<', 170, - '>', 170, - '`', 170, - '|', 170, - '}', 170, + '"', 173, + '$', 173, + '&', 173, + '\'', 173, + ';', 173, + '<', 173, + '>', 173, + '`', 173, + '|', 173, + '}', 173, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -11795,28 +11780,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 522: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 273, + '(', 276, ')', 722, ':', 549, '[', 523, - '\\', 281, + '\\', 284, ']', 584, - '{', 177, + '{', 180, '!', 531, '*', 531, '+', 531, '?', 531, '@', 531, - '"', 172, - '$', 172, - '&', 172, - '\'', 172, - ';', 172, - '<', 172, - '>', 172, - '`', 172, - '|', 172, - '}', 172, + '"', 175, + '$', 175, + '&', 175, + '\'', 175, + ';', 175, + '<', 175, + '>', 175, + '`', 175, + '|', 175, + '}', 175, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -11825,27 +11810,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 523: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 273, + '(', 276, ')', 722, '[', 523, - '\\', 281, + '\\', 284, ']', 584, - '{', 177, + '{', 180, '!', 531, '*', 531, '+', 531, '?', 531, '@', 531, - '"', 172, - '$', 172, - '&', 172, - '\'', 172, - ';', 172, - '<', 172, - '>', 172, - '`', 172, - '|', 172, - '}', 172, + '"', 175, + '$', 175, + '&', 175, + '\'', 175, + ';', 175, + '<', 175, + '>', 175, + '`', 175, + '|', 175, + '}', 175, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -11854,10 +11839,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 524: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 273, + '(', 276, ')', 722, '[', 523, - '\\', 281, + '\\', 284, ']', 584, '{', 530, '!', 531, @@ -11865,16 +11850,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 531, '?', 531, '@', 531, - '"', 172, - '$', 172, - '&', 172, - '\'', 172, - ';', 172, - '<', 172, - '>', 172, - '`', 172, - '|', 172, - '}', 172, + '"', 175, + '$', 175, + '&', 175, + '\'', 175, + ';', 175, + '<', 175, + '>', 175, + '`', 175, + '|', 175, + '}', 175, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -11883,12 +11868,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 525: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 303, + '(', 306, ')', 712, ':', 557, '[', 567, - '\\', 307, - '{', 174, + '\\', 310, + '{', 177, ',', 584, '.', 584, '}', 584, @@ -11897,15 +11882,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 533, '?', 533, '@', 533, - '"', 175, - '$', 175, - '&', 175, - '\'', 175, - ';', 175, - '<', 175, - '>', 175, - '`', 175, - '|', 175, + '"', 178, + '$', 178, + '&', 178, + '\'', 178, + ';', 178, + '<', 178, + '>', 178, + '`', 178, + '|', 178, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -11914,11 +11899,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 526: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 303, + '(', 306, ')', 712, '[', 567, - '\\', 307, - '{', 174, + '\\', 310, + '{', 177, ',', 584, '.', 584, '}', 584, @@ -11927,15 +11912,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 533, '?', 533, '@', 533, - '"', 175, - '$', 175, - '&', 175, - '\'', 175, - ';', 175, - '<', 175, - '>', 175, - '`', 175, - '|', 175, + '"', 178, + '$', 178, + '&', 178, + '\'', 178, + ';', 178, + '<', 178, + '>', 178, + '`', 178, + '|', 178, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -11944,10 +11929,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 527: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 303, + '(', 306, ')', 712, '[', 567, - '\\', 307, + '\\', 310, '{', 527, ',', 584, '.', 584, @@ -11957,15 +11942,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 533, '?', 533, '@', 533, - '"', 175, - '$', 175, - '&', 175, - '\'', 175, - ';', 175, - '<', 175, - '>', 175, - '`', 175, - '|', 175, + '"', 178, + '$', 178, + '&', 178, + '\'', 178, + ';', 178, + '<', 178, + '>', 178, + '`', 178, + '|', 178, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -11974,13 +11959,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 528: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 277, + '(', 280, ')', 730, ':', 552, '[', 529, - '\\', 283, + '\\', 286, ']', 526, - '{', 177, + '{', 180, ',', 523, '.', 523, '}', 523, @@ -11989,15 +11974,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 571, '?', 571, '@', 571, - '"', 178, - '$', 178, - '&', 178, - '\'', 178, - ';', 178, - '<', 178, - '>', 178, - '`', 178, - '|', 178, + '"', 181, + '$', 181, + '&', 181, + '\'', 181, + ';', 181, + '<', 181, + '>', 181, + '`', 181, + '|', 181, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -12006,12 +11991,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 529: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 277, + '(', 280, ')', 730, '[', 529, - '\\', 283, + '\\', 286, ']', 526, - '{', 177, + '{', 180, ',', 523, '.', 523, '}', 523, @@ -12020,15 +12005,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 571, '?', 571, '@', 571, - '"', 178, - '$', 178, - '&', 178, - '\'', 178, - ';', 178, - '<', 178, - '>', 178, - '`', 178, - '|', 178, + '"', 181, + '$', 181, + '&', 181, + '\'', 181, + ';', 181, + '<', 181, + '>', 181, + '`', 181, + '|', 181, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -12037,10 +12022,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 530: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 277, + '(', 280, ')', 730, '[', 529, - '\\', 283, + '\\', 286, ']', 526, '{', 530, ',', 523, @@ -12051,15 +12036,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 571, '?', 571, '@', 571, - '"', 178, - '$', 178, - '&', 178, - '\'', 178, - ';', 178, - '<', 178, - '>', 178, - '`', 178, - '|', 178, + '"', 181, + '$', 181, + '&', 181, + '\'', 181, + ';', 181, + '<', 181, + '>', 181, + '`', 181, + '|', 181, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -12068,27 +12053,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 531: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 172, + '(', 175, ')', 722, '[', 523, - '\\', 281, + '\\', 284, ']', 584, - '{', 177, + '{', 180, '!', 531, '*', 531, '+', 531, '?', 531, '@', 531, - '"', 172, - '$', 172, - '&', 172, - '\'', 172, - ';', 172, - '<', 172, - '>', 172, - '`', 172, - '|', 172, - '}', 172, + '"', 175, + '$', 175, + '&', 175, + '\'', 175, + ';', 175, + '<', 175, + '>', 175, + '`', 175, + '|', 175, + '}', 175, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -12097,27 +12082,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 532: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 172, + '(', 175, '[', 722, - '\\', 272, + '\\', 275, ']', 708, - '{', 274, + '{', 277, '!', 532, '*', 532, '+', 532, '?', 532, '@', 532, - '"', 273, - '$', 273, - '&', 273, - '\'', 273, - ')', 273, - ';', 273, - '<', 273, - '>', 273, - '`', 273, - '|', 273, - '}', 273, + '"', 276, + '$', 276, + '&', 276, + '\'', 276, + ')', 276, + ';', 276, + '<', 276, + '>', 276, + '`', 276, + '|', 276, + '}', 276, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -12126,11 +12111,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 533: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 175, + '(', 178, ')', 712, '[', 567, - '\\', 307, - '{', 174, + '\\', 310, + '{', 177, ',', 584, '.', 584, '}', 584, @@ -12139,15 +12124,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 533, '?', 533, '@', 533, - '"', 175, - '$', 175, - '&', 175, - '\'', 175, - ';', 175, - '<', 175, - '>', 175, - '`', 175, - '|', 175, + '"', 178, + '$', 178, + '&', 178, + '\'', 178, + ';', 178, + '<', 178, + '>', 178, + '`', 178, + '|', 178, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -12156,10 +12141,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 534: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 175, + '(', 178, '[', 714, - '\\', 310, - '{', 301, + '\\', 313, + '{', 304, ',', 708, '.', 708, '}', 708, @@ -12168,16 +12153,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 534, '?', 534, '@', 534, - '"', 303, - '$', 303, - '&', 303, - '\'', 303, - ')', 303, - ';', 303, - '<', 303, - '>', 303, - '`', 303, - '|', 303, + '"', 306, + '$', 306, + '&', 306, + '\'', 306, + ')', 306, + ';', 306, + '<', 306, + '>', 306, + '`', 306, + '|', 306, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -12186,12 +12171,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 535: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 196, + '(', 199, ')', 714, '[', 567, - '\\', 282, + '\\', 285, ']', 526, - '{', 195, + '{', 198, ',', 520, '.', 520, '}', 520, @@ -12200,15 +12185,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 535, '?', 535, '@', 535, - '"', 196, - '$', 196, - '&', 196, - '\'', 196, - ';', 196, - '<', 196, - '>', 196, - '`', 196, - '|', 196, + '"', 199, + '$', 199, + '&', 199, + '\'', 199, + ';', 199, + '<', 199, + '>', 199, + '`', 199, + '|', 199, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -12217,11 +12202,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 536: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 196, + '(', 199, '[', 714, - '\\', 278, + '\\', 281, ']', 712, - '{', 275, + '{', 278, ',', 710, '.', 710, '}', 710, @@ -12230,16 +12215,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 536, '?', 536, '@', 536, - '"', 276, - '$', 276, - '&', 276, - '\'', 276, - ')', 276, - ';', 276, - '<', 276, - '>', 276, - '`', 276, - '|', 276, + '"', 279, + '$', 279, + '&', 279, + '\'', 279, + ')', 279, + ';', 279, + '<', 279, + '>', 279, + '`', 279, + '|', 279, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -12248,12 +12233,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 537: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 255, + '(', 258, ')', 716, '[', 522, - '\\', 270, + '\\', 273, ']', 452, - '{', 184, + '{', 187, '!', 547, '*', 547, '+', 547, @@ -12261,7 +12246,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 547, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12271,16 +12256,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(179); + lookahead == '}') ADVANCE(182); if (lookahead != 0) ADVANCE(537); END_STATE(); case 538: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 255, + '(', 258, ')', 716, '[', 522, - '\\', 270, + '\\', 273, ']', 452, '{', 546, '!', 547, @@ -12290,7 +12275,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 547, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12300,18 +12285,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(179); + lookahead == '}') ADVANCE(182); if (lookahead != 0) ADVANCE(537); END_STATE(); case 539: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 255, + '(', 258, ')', 727, '[', 519, - '\\', 261, + '\\', 264, ']', 452, - '{', 197, + '{', 200, '!', 581, '*', 581, '+', 581, @@ -12319,7 +12304,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12329,16 +12314,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(180); + lookahead == '}') ADVANCE(183); if (lookahead != 0) ADVANCE(539); END_STATE(); case 540: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 255, + '(', 258, ')', 727, '[', 519, - '\\', 261, + '\\', 264, ']', 452, '{', 574, '!', 581, @@ -12348,7 +12333,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12358,18 +12343,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(180); + lookahead == '}') ADVANCE(183); if (lookahead != 0) ADVANCE(539); END_STATE(); case 541: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 203, + '(', 206, ')', 724, '[', 519, - '\\', 263, + '\\', 266, ']', 452, - '{', 181, + '{', 184, '!', 541, '*', 541, '+', 541, @@ -12377,7 +12362,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 541, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12387,17 +12372,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(203); + lookahead == '}') ADVANCE(206); if (lookahead != 0) ADVANCE(586); END_STATE(); case 542: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 203, + '(', 206, '[', 591, - '\\', 258, + '\\', 261, ']', 470, - '{', 256, + '{', 259, '!', 542, '*', 542, '+', 542, @@ -12413,18 +12398,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(252); + lookahead == '}') ADVANCE(255); if (lookahead != 0) ADVANCE(724); END_STATE(); case 543: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 257, + '(', 260, ')', 720, '[', 566, - '\\', 265, + '\\', 268, ']', 445, - '{', 181, + '{', 184, ',', 586, '.', 586, '}', 586, @@ -12435,7 +12420,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 575, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12444,16 +12429,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(182); + lookahead == '|') ADVANCE(185); if (lookahead != 0) ADVANCE(543); END_STATE(); case 544: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 257, + '(', 260, ')', 720, '[', 566, - '\\', 265, + '\\', 268, ']', 445, '{', 544, ',', 586, @@ -12466,7 +12451,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 575, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12475,18 +12460,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(182); + lookahead == '|') ADVANCE(185); if (lookahead != 0) ADVANCE(543); END_STATE(); case 545: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 254, + '(', 257, ')', 728, '[', 528, - '\\', 271, + '\\', 274, ']', 445, - '{', 184, + '{', 187, ',', 537, '.', 537, '}', 537, @@ -12497,7 +12482,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 579, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12506,16 +12491,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(185); + lookahead == '|') ADVANCE(188); if (lookahead != 0) ADVANCE(545); END_STATE(); case 546: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 254, + '(', 257, ')', 728, '[', 528, - '\\', 271, + '\\', 274, ']', 445, '{', 546, ',', 537, @@ -12528,7 +12513,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 579, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12537,18 +12522,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(185); + lookahead == '|') ADVANCE(188); if (lookahead != 0) ADVANCE(545); END_STATE(); case 547: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 179, + '(', 182, ')', 716, '[', 522, - '\\', 270, + '\\', 273, ']', 452, - '{', 184, + '{', 187, '!', 547, '*', 547, '+', 547, @@ -12556,7 +12541,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 547, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12566,17 +12551,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(179); + lookahead == '}') ADVANCE(182); if (lookahead != 0) ADVANCE(537); END_STATE(); case 548: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 179, + '(', 182, '[', 592, - '\\', 251, + '\\', 254, ']', 470, - '{', 253, + '{', 256, '!', 548, '*', 548, '+', 548, @@ -12584,7 +12569,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 548, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -12593,19 +12578,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(255); + lookahead == '}') ADVANCE(258); if (lookahead != 0) ADVANCE(716); END_STATE(); case 549: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 232, + '(', 235, ')', 594, ':', 551, '[', 549, - '\\', 243, + '\\', 246, ']', 584, - '{', 188, + '{', 191, '!', 560, '*', 560, '+', 560, @@ -12613,7 +12598,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 560, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12623,17 +12608,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(186); + lookahead == '}') ADVANCE(189); if (lookahead != 0) ADVANCE(549); END_STATE(); case 550: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 232, + '(', 235, ')', 594, ':', 551, '[', 549, - '\\', 243, + '\\', 246, ']', 584, '{', 553, '!', 560, @@ -12643,7 +12628,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 560, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12653,19 +12638,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(186); + lookahead == '}') ADVANCE(189); if (lookahead != 0) ADVANCE(549); END_STATE(); case 551: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 232, + '(', 235, ')', 594, ':', 551, '[', 549, - '\\', 243, + '\\', 246, ']', 586, - '{', 188, + '{', 191, '!', 560, '*', 560, '+', 560, @@ -12673,7 +12658,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 560, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12683,19 +12668,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(186); + lookahead == '}') ADVANCE(189); if (lookahead != 0) ADVANCE(549); END_STATE(); case 552: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 235, + '(', 238, ')', 602, ':', 554, '[', 552, - '\\', 246, + '\\', 249, ']', 526, - '{', 188, + '{', 191, ',', 549, '.', 549, '}', 549, @@ -12706,7 +12691,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 564, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12715,17 +12700,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(189); + lookahead == '|') ADVANCE(192); if (lookahead != 0) ADVANCE(552); END_STATE(); case 553: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 235, + '(', 238, ')', 602, ':', 554, '[', 552, - '\\', 246, + '\\', 249, ']', 526, '{', 553, ',', 549, @@ -12738,7 +12723,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 564, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12747,19 +12732,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(189); + lookahead == '|') ADVANCE(192); if (lookahead != 0) ADVANCE(552); END_STATE(); case 554: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 235, + '(', 238, ')', 602, ':', 554, '[', 552, - '\\', 246, + '\\', 249, ']', 543, - '{', 188, + '{', 191, ',', 549, '.', 549, '}', 549, @@ -12770,7 +12755,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 564, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12779,19 +12764,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(189); + lookahead == '|') ADVANCE(192); if (lookahead != 0) ADVANCE(552); END_STATE(); case 555: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 204, + '(', 207, ')', 597, ':', 590, '[', 549, - '\\', 244, + '\\', 247, ']', 584, - '{', 191, + '{', 194, '!', 555, '*', 555, '+', 555, @@ -12799,7 +12784,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 555, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12809,18 +12794,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(204); + lookahead == '}') ADVANCE(207); if (lookahead != 0) ADVANCE(588); END_STATE(); case 556: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 204, + '(', 207, ':', 599, '[', 594, - '\\', 240, + '\\', 243, ']', 708, - '{', 237, + '{', 240, '!', 556, '*', 556, '+', 556, @@ -12836,19 +12821,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(228); + lookahead == '}') ADVANCE(231); if (lookahead != 0) ADVANCE(597); END_STATE(); case 557: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 238, + '(', 241, ')', 605, ':', 559, '[', 552, - '\\', 248, + '\\', 251, ']', 526, - '{', 191, + '{', 194, ',', 588, '.', 588, '}', 588, @@ -12859,7 +12844,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 577, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12868,17 +12853,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(192); + lookahead == '|') ADVANCE(195); if (lookahead != 0) ADVANCE(557); END_STATE(); case 558: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 238, + '(', 241, ')', 605, ':', 559, '[', 552, - '\\', 248, + '\\', 251, ']', 526, '{', 558, ',', 588, @@ -12891,7 +12876,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 577, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12900,19 +12885,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(192); + lookahead == '|') ADVANCE(195); if (lookahead != 0) ADVANCE(557); END_STATE(); case 559: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 238, + '(', 241, ')', 605, ':', 559, '[', 552, - '\\', 248, + '\\', 251, ']', 543, - '{', 191, + '{', 194, ',', 588, '.', 588, '}', 588, @@ -12923,7 +12908,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 577, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12932,19 +12917,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(192); + lookahead == '|') ADVANCE(195); if (lookahead != 0) ADVANCE(557); END_STATE(); case 560: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 186, + '(', 189, ')', 594, ':', 551, '[', 549, - '\\', 243, + '\\', 246, ']', 584, - '{', 188, + '{', 191, '!', 560, '*', 560, '+', 560, @@ -12952,7 +12937,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 560, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -12962,18 +12947,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(186); + lookahead == '}') ADVANCE(189); if (lookahead != 0) ADVANCE(549); END_STATE(); case 561: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 186, + '(', 189, ':', 596, '[', 594, - '\\', 231, + '\\', 234, ']', 708, - '{', 234, + '{', 237, '!', 561, '*', 561, '+', 561, @@ -12981,7 +12966,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 561, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -12990,18 +12975,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(232); + lookahead == '}') ADVANCE(235); if (lookahead != 0) ADVANCE(594); END_STATE(); case 562: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 198, + '(', 201, ')', 719, '[', 566, - '\\', 264, + '\\', 267, ']', 445, - '{', 197, + '{', 200, ',', 539, '.', 539, '}', 539, @@ -13012,7 +12997,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 562, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -13021,17 +13006,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(198); + lookahead == '|') ADVANCE(201); if (lookahead != 0) ADVANCE(573); END_STATE(); case 563: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 198, + '(', 201, '[', 600, - '\\', 259, + '\\', 262, ']', 465, - '{', 267, + '{', 270, ',', 727, '.', 727, '}', 727, @@ -13042,7 +13027,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 563, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -13050,19 +13035,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(268); + lookahead == '|') ADVANCE(271); if (lookahead != 0) ADVANCE(719); END_STATE(); case 564: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 189, + '(', 192, ')', 602, ':', 554, '[', 552, - '\\', 246, + '\\', 249, ']', 526, - '{', 188, + '{', 191, ',', 549, '.', 549, '}', 549, @@ -13073,7 +13058,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 564, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -13082,18 +13067,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(189); + lookahead == '|') ADVANCE(192); if (lookahead != 0) ADVANCE(552); END_STATE(); case 565: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 189, + '(', 192, ':', 604, '[', 602, - '\\', 245, + '\\', 248, ']', 712, - '{', 234, + '{', 237, ',', 594, '.', 594, '}', 594, @@ -13104,7 +13089,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 565, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -13112,19 +13097,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(235); + lookahead == '|') ADVANCE(238); if (lookahead != 0) ADVANCE(602); END_STATE(); case 566: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 276, + '(', 279, ')', 714, ':', 552, '[', 567, - '\\', 282, + '\\', 285, ']', 526, - '{', 195, + '{', 198, ',', 520, '.', 520, '}', 520, @@ -13133,15 +13118,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 535, '?', 535, '@', 535, - '"', 196, - '$', 196, - '&', 196, - '\'', 196, - ';', 196, - '<', 196, - '>', 196, - '`', 196, - '|', 196, + '"', 199, + '$', 199, + '&', 199, + '\'', 199, + ';', 199, + '<', 199, + '>', 199, + '`', 199, + '|', 199, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13150,12 +13135,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 567: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 276, + '(', 279, ')', 714, '[', 567, - '\\', 282, + '\\', 285, ']', 526, - '{', 195, + '{', 198, ',', 520, '.', 520, '}', 520, @@ -13164,15 +13149,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 535, '?', 535, '@', 535, - '"', 196, - '$', 196, - '&', 196, - '\'', 196, - ';', 196, - '<', 196, - '>', 196, - '`', 196, - '|', 196, + '"', 199, + '$', 199, + '&', 199, + '\'', 199, + ';', 199, + '<', 199, + '>', 199, + '`', 199, + '|', 199, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13181,10 +13166,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 568: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 276, + '(', 279, ')', 714, '[', 567, - '\\', 282, + '\\', 285, ']', 526, '{', 568, ',', 520, @@ -13195,15 +13180,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 535, '?', 535, '@', 535, - '"', 196, - '$', 196, - '&', 196, - '\'', 196, - ';', 196, - '<', 196, - '>', 196, - '`', 196, - '|', 196, + '"', 199, + '$', 199, + '&', 199, + '\'', 199, + ';', 199, + '<', 199, + '>', 199, + '`', 199, + '|', 199, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13212,27 +13197,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 569: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 170, + '(', 173, ')', 710, '[', 520, - '\\', 280, + '\\', 283, ']', 584, - '{', 195, + '{', 198, '!', 569, '*', 569, '+', 569, '?', 569, '@', 569, - '"', 170, - '$', 170, - '&', 170, - '\'', 170, - ';', 170, - '<', 170, - '>', 170, - '`', 170, - '|', 170, - '}', 170, + '"', 173, + '$', 173, + '&', 173, + '\'', 173, + ';', 173, + '<', 173, + '>', 173, + '`', 173, + '|', 173, + '}', 173, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13241,27 +13226,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 570: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 170, + '(', 173, '[', 710, - '\\', 308, + '\\', 311, ']', 708, - '{', 275, + '{', 278, '!', 570, '*', 570, '+', 570, '?', 570, '@', 570, - '"', 273, - '$', 273, - '&', 273, - '\'', 273, - ')', 273, - ';', 273, - '<', 273, - '>', 273, - '`', 273, - '|', 273, - '}', 273, + '"', 276, + '$', 276, + '&', 276, + '\'', 276, + ')', 276, + ';', 276, + '<', 276, + '>', 276, + '`', 276, + '|', 276, + '}', 276, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13270,12 +13255,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 571: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 178, + '(', 181, ')', 730, '[', 529, - '\\', 283, + '\\', 286, ']', 526, - '{', 177, + '{', 180, ',', 523, '.', 523, '}', 523, @@ -13284,15 +13269,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 571, '?', 571, '@', 571, - '"', 178, - '$', 178, - '&', 178, - '\'', 178, - ';', 178, - '<', 178, - '>', 178, - '`', 178, - '|', 178, + '"', 181, + '$', 181, + '&', 181, + '\'', 181, + ';', 181, + '<', 181, + '>', 181, + '`', 181, + '|', 181, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13301,11 +13286,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 572: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 178, + '(', 181, '[', 730, - '\\', 279, + '\\', 282, ']', 712, - '{', 274, + '{', 277, ',', 722, '.', 722, '}', 722, @@ -13314,16 +13299,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '+', 572, '?', 572, '@', 572, - '"', 277, - '$', 277, - '&', 277, - '\'', 277, - ')', 277, - ';', 277, - '<', 277, - '>', 277, - '`', 277, - '|', 277, + '"', 280, + '$', 280, + '&', 280, + '\'', 280, + ')', 280, + ';', 280, + '<', 280, + '>', 280, + '`', 280, + '|', 280, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13332,12 +13317,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 573: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 268, + '(', 271, ')', 719, '[', 566, - '\\', 264, + '\\', 267, ']', 445, - '{', 197, + '{', 200, ',', 539, '.', 539, '}', 539, @@ -13348,7 +13333,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 562, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -13357,16 +13342,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(198); + lookahead == '|') ADVANCE(201); if (lookahead != 0) ADVANCE(573); END_STATE(); case 574: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 268, + '(', 271, ')', 719, '[', 566, - '\\', 264, + '\\', 267, ']', 445, '{', 574, ',', 539, @@ -13379,7 +13364,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 562, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -13388,18 +13373,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(198); + lookahead == '|') ADVANCE(201); if (lookahead != 0) ADVANCE(573); END_STATE(); case 575: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 182, + '(', 185, ')', 720, '[', 566, - '\\', 265, + '\\', 268, ']', 445, - '{', 181, + '{', 184, ',', 586, '.', 586, '}', 586, @@ -13410,7 +13395,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 575, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -13419,17 +13404,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(182); + lookahead == '|') ADVANCE(185); if (lookahead != 0) ADVANCE(543); END_STATE(); case 576: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 182, + '(', 185, '[', 600, - '\\', 262, + '\\', 265, ']', 465, - '{', 256, + '{', 259, ',', 724, '.', 724, '}', 724, @@ -13440,7 +13425,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 576, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -13448,19 +13433,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(257); + lookahead == '|') ADVANCE(260); if (lookahead != 0) ADVANCE(720); END_STATE(); case 577: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 192, + '(', 195, ')', 605, ':', 559, '[', 552, - '\\', 248, + '\\', 251, ']', 526, - '{', 191, + '{', 194, ',', 588, '.', 588, '}', 588, @@ -13471,7 +13456,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 577, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -13480,18 +13465,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(192); + lookahead == '|') ADVANCE(195); if (lookahead != 0) ADVANCE(557); END_STATE(); case 578: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 192, + '(', 195, ':', 607, '[', 602, - '\\', 247, + '\\', 250, ']', 712, - '{', 237, + '{', 240, ',', 597, '.', 597, '}', 597, @@ -13502,7 +13487,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 578, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -13510,18 +13495,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(238); + lookahead == '|') ADVANCE(241); if (lookahead != 0) ADVANCE(605); END_STATE(); case 579: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 185, + '(', 188, ')', 728, '[', 528, - '\\', 271, + '\\', 274, ']', 445, - '{', 184, + '{', 187, ',', 537, '.', 537, '}', 537, @@ -13532,7 +13517,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 579, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -13541,17 +13526,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(185); + lookahead == '|') ADVANCE(188); if (lookahead != 0) ADVANCE(545); END_STATE(); case 580: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 185, + '(', 188, '[', 601, - '\\', 269, + '\\', 272, ']', 465, - '{', 253, + '{', 256, ',', 716, '.', 716, '}', 716, @@ -13562,7 +13547,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 580, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -13570,18 +13555,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(254); + lookahead == '|') ADVANCE(257); if (lookahead != 0) ADVANCE(728); END_STATE(); case 581: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 180, + '(', 183, ')', 727, '[', 519, - '\\', 261, + '\\', 264, ']', 452, - '{', 197, + '{', 200, '!', 581, '*', 581, '+', 581, @@ -13589,7 +13574,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 581, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -13599,17 +13584,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(180); + lookahead == '}') ADVANCE(183); if (lookahead != 0) ADVANCE(539); END_STATE(); case 582: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( - '(', 180, + '(', 183, '[', 591, - '\\', 266, + '\\', 269, ']', 470, - '{', 267, + '{', 270, '!', 582, '*', 582, '+', 582, @@ -13617,7 +13602,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 582, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -13626,7 +13611,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(255); + lookahead == '}') ADVANCE(258); if (lookahead != 0) ADVANCE(727); END_STATE(); case 583: @@ -13635,23 +13620,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ')', 708, ':', 588, '[', 520, - '\\', 309, - '{', 174, + '\\', 312, + '{', 177, '!', 517, '*', 517, '+', 517, '?', 517, '@', 517, - '"', 200, - '$', 200, - '&', 200, - '\'', 200, - ';', 200, - '<', 200, - '>', 200, - '`', 200, - '|', 200, - '}', 200, + '"', 203, + '$', 203, + '&', 203, + '\'', 203, + ';', 203, + '<', 203, + '>', 203, + '`', 203, + '|', 203, + '}', 203, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13663,23 +13648,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ')', 708, '[', 520, - '\\', 309, - '{', 174, + '\\', 312, + '{', 177, '!', 517, '*', 517, '+', 517, '?', 517, '@', 517, - '"', 200, - '$', 200, - '&', 200, - '\'', 200, - ';', 200, - '<', 200, - '>', 200, - '`', 200, - '|', 200, - '}', 200, + '"', 203, + '$', 203, + '&', 203, + '\'', 203, + ';', 203, + '<', 203, + '>', 203, + '`', 203, + '|', 203, + '}', 203, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13691,23 +13676,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ')', 708, '[', 520, - '\\', 309, + '\\', 312, '{', 527, '!', 517, '*', 517, '+', 517, '?', 517, '@', 517, - '"', 200, - '$', 200, - '&', 200, - '\'', 200, - ';', 200, - '<', 200, - '>', 200, - '`', 200, - '|', 200, - '}', 200, + '"', 203, + '$', 203, + '&', 203, + '\'', 203, + ';', 203, + '<', 203, + '>', 203, + '`', 203, + '|', 203, + '}', 203, ); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -13719,9 +13704,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ')', 724, '[', 519, - '\\', 263, + '\\', 266, ']', 452, - '{', 181, + '{', 184, '!', 541, '*', 541, '+', 541, @@ -13730,7 +13715,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '(') ADVANCE(252); + lookahead == '(') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -13740,7 +13725,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(203); + lookahead == '}') ADVANCE(206); if (lookahead != 0) ADVANCE(586); END_STATE(); case 587: @@ -13748,7 +13733,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ')', 724, '[', 519, - '\\', 263, + '\\', 266, ']', 452, '{', 544, '!', 541, @@ -13759,7 +13744,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '(') ADVANCE(252); + lookahead == '(') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -13769,7 +13754,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(203); + lookahead == '}') ADVANCE(206); if (lookahead != 0) ADVANCE(586); END_STATE(); case 588: @@ -13778,9 +13763,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ')', 597, ':', 590, '[', 549, - '\\', 244, + '\\', 247, ']', 584, - '{', 191, + '{', 194, '!', 555, '*', 555, '+', 555, @@ -13789,7 +13774,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '(') ADVANCE(228); + lookahead == '(') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -13799,7 +13784,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(204); + lookahead == '}') ADVANCE(207); if (lookahead != 0) ADVANCE(588); END_STATE(); case 589: @@ -13808,7 +13793,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ')', 597, ':', 590, '[', 549, - '\\', 244, + '\\', 247, ']', 584, '{', 558, '!', 555, @@ -13819,7 +13804,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '(') ADVANCE(228); + lookahead == '(') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -13829,7 +13814,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(204); + lookahead == '}') ADVANCE(207); if (lookahead != 0) ADVANCE(588); END_STATE(); case 590: @@ -13838,9 +13823,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ')', 597, ':', 590, '[', 549, - '\\', 244, + '\\', 247, ']', 586, - '{', 191, + '{', 194, '!', 555, '*', 555, '+', 555, @@ -13849,7 +13834,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '(') ADVANCE(228); + lookahead == '(') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || lookahead == '&' || @@ -13859,7 +13844,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(204); + lookahead == '}') ADVANCE(207); if (lookahead != 0) ADVANCE(588); END_STATE(); case 591: @@ -13867,9 +13852,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 594, '[', 710, - '\\', 308, + '\\', 311, ']', 708, - '{', 275, + '{', 278, '!', 570, '*', 570, '+', 570, @@ -13884,7 +13869,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(273); + lookahead == '}') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(710); @@ -13894,9 +13879,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 594, '[', 722, - '\\', 272, + '\\', 275, ']', 708, - '{', 274, + '{', 277, '!', 532, '*', 532, '+', 532, @@ -13911,7 +13896,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(273); + lookahead == '}') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(722); @@ -13920,8 +13905,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); if (lookahead == ':') ADVANCE(597); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -13934,9 +13919,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 596, '[', 594, - '\\', 231, + '\\', 234, ']', 708, - '{', 234, + '{', 237, '!', 561, '*', 561, '+', 561, @@ -13944,7 +13929,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 561, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -13953,7 +13938,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(232); + lookahead == '}') ADVANCE(235); if (lookahead != 0) ADVANCE(594); END_STATE(); case 595: @@ -13961,7 +13946,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 596, '[', 594, - '\\', 231, + '\\', 234, ']', 708, '{', 603, '!', 561, @@ -13971,7 +13956,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 561, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -13980,7 +13965,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(232); + lookahead == '}') ADVANCE(235); if (lookahead != 0) ADVANCE(594); END_STATE(); case 596: @@ -13988,9 +13973,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 596, '[', 594, - '\\', 231, + '\\', 234, ']', 724, - '{', 234, + '{', 237, '!', 561, '*', 561, '+', 561, @@ -13998,7 +13983,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 561, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -14007,7 +13992,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(232); + lookahead == '}') ADVANCE(235); if (lookahead != 0) ADVANCE(594); END_STATE(); case 597: @@ -14015,9 +14000,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 599, '[', 594, - '\\', 240, + '\\', 243, ']', 708, - '{', 237, + '{', 240, '!', 556, '*', 556, '+', 556, @@ -14033,7 +14018,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(228); + lookahead == '}') ADVANCE(231); if (lookahead != 0) ADVANCE(597); END_STATE(); case 598: @@ -14041,7 +14026,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 599, '[', 594, - '\\', 240, + '\\', 243, ']', 708, '{', 606, '!', 556, @@ -14059,7 +14044,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(228); + lookahead == '}') ADVANCE(231); if (lookahead != 0) ADVANCE(597); END_STATE(); case 599: @@ -14067,9 +14052,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 599, '[', 594, - '\\', 240, + '\\', 243, ']', 724, - '{', 237, + '{', 240, '!', 556, '*', 556, '+', 556, @@ -14085,7 +14070,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(228); + lookahead == '}') ADVANCE(231); if (lookahead != 0) ADVANCE(597); END_STATE(); case 600: @@ -14093,9 +14078,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 602, '[', 714, - '\\', 278, + '\\', 281, ']', 712, - '{', 275, + '{', 278, ',', 710, '.', 710, '}', 710, @@ -14112,7 +14097,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(276); + lookahead == '|') ADVANCE(279); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(714); @@ -14122,9 +14107,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 602, '[', 730, - '\\', 279, + '\\', 282, ']', 712, - '{', 274, + '{', 277, ',', 722, '.', 722, '}', 722, @@ -14141,7 +14126,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(277); + lookahead == '|') ADVANCE(280); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(730); @@ -14151,9 +14136,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 604, '[', 602, - '\\', 245, + '\\', 248, ']', 712, - '{', 234, + '{', 237, ',', 594, '.', 594, '}', 594, @@ -14164,7 +14149,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 565, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -14172,7 +14157,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(235); + lookahead == '|') ADVANCE(238); if (lookahead != 0) ADVANCE(602); END_STATE(); case 603: @@ -14180,7 +14165,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 604, '[', 602, - '\\', 245, + '\\', 248, ']', 712, '{', 603, ',', 594, @@ -14193,7 +14178,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 565, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -14201,7 +14186,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(235); + lookahead == '|') ADVANCE(238); if (lookahead != 0) ADVANCE(602); END_STATE(); case 604: @@ -14209,9 +14194,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 604, '[', 602, - '\\', 245, + '\\', 248, ']', 720, - '{', 234, + '{', 237, ',', 594, '.', 594, '}', 594, @@ -14222,7 +14207,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 565, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -14230,7 +14215,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(235); + lookahead == '|') ADVANCE(238); if (lookahead != 0) ADVANCE(602); END_STATE(); case 605: @@ -14238,9 +14223,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 607, '[', 602, - '\\', 247, + '\\', 250, ']', 712, - '{', 237, + '{', 240, ',', 597, '.', 597, '}', 597, @@ -14251,7 +14236,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 578, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -14259,7 +14244,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(238); + lookahead == '|') ADVANCE(241); if (lookahead != 0) ADVANCE(605); END_STATE(); case 606: @@ -14267,7 +14252,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 607, '[', 602, - '\\', 247, + '\\', 250, ']', 712, '{', 606, ',', 597, @@ -14280,7 +14265,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 578, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -14288,7 +14273,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(238); + lookahead == '|') ADVANCE(241); if (lookahead != 0) ADVANCE(605); END_STATE(); case 607: @@ -14296,9 +14281,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 607, '[', 602, - '\\', 247, + '\\', 250, ']', 720, - '{', 237, + '{', 240, ',', 597, '.', 597, '}', 597, @@ -14309,7 +14294,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 578, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(228); + lookahead == ' ') ADVANCE(231); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -14317,7 +14302,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(238); + lookahead == '|') ADVANCE(241); if (lookahead != 0) ADVANCE(605); END_STATE(); case 608: @@ -14325,8 +14310,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( ':', 605, '[', 714, - '\\', 310, - '{', 301, + '\\', 313, + '{', 304, ',', 708, '.', 708, '}', 708, @@ -14343,7 +14328,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(303); + lookahead == '|') ADVANCE(306); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(712); @@ -14353,8 +14338,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE_MAP( '=', 436, '[', 710, - '\\', 313, - '{', 301, + '\\', 316, + '{', 304, '~', 439, '!', 518, '*', 518, @@ -14368,8 +14353,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); if (lookahead == '@') ADVANCE(472); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14383,9 +14368,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 611: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == ']') ADVANCE(433); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14397,10 +14382,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 710, - '\\', 313, + '\\', 316, 'a', 691, 'o', 674, - '{', 301, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -14413,10 +14398,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 710, - '\\', 313, + '\\', 316, 'a', 626, 't', 702, - '{', 301, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -14428,9 +14413,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 614: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'a') ADVANCE(657); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14442,10 +14427,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 710, - '\\', 313, + '\\', 316, 'a', 437, 'o', 438, - '{', 301, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -14457,9 +14442,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 616: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'a') ADVANCE(690); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14470,9 +14455,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 617: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'a') ADVANCE(659); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14483,9 +14468,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 618: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'a') ADVANCE(621); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14496,9 +14481,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 619: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'a') ADVANCE(660); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14509,9 +14494,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 620: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'a') ADVANCE(689); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14522,9 +14507,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 621: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'c') ADVANCE(375); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14535,9 +14520,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 622: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'c') ADVANCE(665); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14548,9 +14533,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 623: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'c') ADVANCE(700); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14561,9 +14546,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 624: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'c') ADVANCE(697); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14574,9 +14559,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 625: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'c') ADVANCE(619); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14587,9 +14572,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 626: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'd') ADVANCE(680); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14601,10 +14586,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 710, - '\\', 313, + '\\', 316, 'e', 622, 'o', 360, - '{', 301, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -14617,10 +14602,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 710, - '\\', 313, + '\\', 316, 'e', 622, 'o', 676, - '{', 301, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -14632,9 +14617,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 629: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(622); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14646,10 +14631,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 710, - '\\', 313, + '\\', 316, 'e', 695, 'o', 625, - '{', 301, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -14661,9 +14646,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 631: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(613); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14674,9 +14659,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 632: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(372); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14687,9 +14672,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 633: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(383); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14700,9 +14685,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 634: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(401); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14713,9 +14698,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 635: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(387); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14726,9 +14711,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 636: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(371); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14739,9 +14724,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 637: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(362); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14752,9 +14737,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 638: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(667); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14765,9 +14750,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 639: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(614); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14778,9 +14763,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 640: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(698); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14791,9 +14776,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 641: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(670); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14804,9 +14789,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 642: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(694); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14817,9 +14802,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 643: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'e') ADVANCE(624); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14830,9 +14815,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 644: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'f') ADVANCE(363); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14843,9 +14828,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 645: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'f') ADVANCE(369); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14856,9 +14841,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 646: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'h') ADVANCE(654); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14870,10 +14855,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 710, - '\\', 313, + '\\', 316, 'h', 641, 'y', 684, - '{', 301, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -14885,9 +14870,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 648: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'h') ADVANCE(641); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14899,11 +14884,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 710, - '\\', 313, + '\\', 316, 'i', 367, 'o', 685, 'u', 673, - '{', 301, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -14915,9 +14900,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 650: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'i') ADVANCE(367); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14929,10 +14914,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 710, - '\\', 313, + '\\', 316, 'i', 645, 's', 636, - '{', 301, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -14944,9 +14929,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 652: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'i') ADVANCE(616); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14957,9 +14942,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 653: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'i') ADVANCE(672); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14970,9 +14955,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 654: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'i') ADVANCE(666); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14983,9 +14968,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 655: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'i') ADVANCE(661); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -14996,9 +14981,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 656: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'i') ADVANCE(681); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15009,9 +14994,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 657: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'k') ADVANCE(386); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15022,9 +15007,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 658: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'l') ADVANCE(652); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15035,9 +15020,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 659: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'l') ADVANCE(406); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15048,9 +15033,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 660: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'l') ADVANCE(405); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15061,9 +15046,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 661: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'l') ADVANCE(384); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15075,11 +15060,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 710, - '\\', 313, + '\\', 316, 'l', 651, 'v', 617, 'x', 683, - '{', 301, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -15091,9 +15076,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 663: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'l') ADVANCE(651); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15104,9 +15089,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 664: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'l') ADVANCE(705); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15117,9 +15102,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 665: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'l') ADVANCE(620); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15130,9 +15115,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 666: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'l') ADVANCE(633); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15143,9 +15128,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 667: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'l') ADVANCE(643); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15156,9 +15141,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 668: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'n') ADVANCE(385); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15169,9 +15154,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 669: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'n') ADVANCE(388); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15182,9 +15167,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 670: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'n') ADVANCE(365); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15195,9 +15180,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 671: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'n') ADVANCE(701); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15208,9 +15193,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 672: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'n') ADVANCE(703); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15221,9 +15206,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 673: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'n') ADVANCE(623); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15234,9 +15219,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 674: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'n') ADVANCE(699); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15247,9 +15232,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 675: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'n') ADVANCE(664); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15260,9 +15245,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 676: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'n') ADVANCE(637); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15273,9 +15258,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 677: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'o') ADVANCE(360); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15287,10 +15272,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 710, - '\\', 313, + '\\', 316, 'o', 685, 'u', 673, - '{', 301, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -15302,9 +15287,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 679: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'o') ADVANCE(688); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15315,9 +15300,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 680: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'o') ADVANCE(675); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15328,9 +15313,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 681: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'o') ADVANCE(669); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15341,9 +15326,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 682: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'o') ADVANCE(676); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15354,9 +15339,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 683: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'p') ADVANCE(679); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15367,9 +15352,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 684: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'p') ADVANCE(642); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15380,9 +15365,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 685: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'r') ADVANCE(379); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15393,9 +15378,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 686: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'r') ADVANCE(639); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15406,9 +15391,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 687: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'r') ADVANCE(668); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15419,9 +15404,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 688: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'r') ADVANCE(696); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15432,9 +15417,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 689: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'r') ADVANCE(634); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15445,9 +15430,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 690: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 's') ADVANCE(407); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15458,9 +15443,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 691: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 's') ADVANCE(632); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15472,11 +15457,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 710, - '\\', 313, + '\\', 316, 's', 618, 'v', 617, 'x', 683, - '{', 301, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -15488,9 +15473,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 693: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 's') ADVANCE(618); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15501,9 +15486,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 694: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 's') ADVANCE(640); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15514,9 +15499,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 695: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 't') ADVANCE(408); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15527,9 +15512,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 696: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 't') ADVANCE(403); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15540,9 +15525,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 697: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 't') ADVANCE(380); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15553,9 +15538,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 698: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 't') ADVANCE(402); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15566,9 +15551,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 699: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 't') ADVANCE(653); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15579,9 +15564,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 700: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 't') ADVANCE(656); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15592,9 +15577,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 701: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 't') ADVANCE(655); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15605,9 +15590,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 702: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'u') ADVANCE(687); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15618,9 +15603,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 703: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'u') ADVANCE(635); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15632,10 +15617,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 710, - '\\', 313, + '\\', 316, 'v', 617, 'x', 683, - '{', 301, + '{', 304, '!', 518, '*', 518, '+', 518, @@ -15647,9 +15632,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 705: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'y') ADVANCE(404); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15660,9 +15645,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 706: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == 'y') ADVANCE(684); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15673,8 +15658,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 707: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15688,8 +15673,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 708: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15700,7 +15685,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 709: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); + if (lookahead == '\\') ADVANCE(316); if (lookahead == '{') ADVANCE(713); if (lookahead == '!' || lookahead == '*' || @@ -15712,9 +15697,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 710: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(308); + if (lookahead == '\\') ADVANCE(311); if (lookahead == ']') ADVANCE(708); - if (lookahead == '{') ADVANCE(275); + if (lookahead == '{') ADVANCE(278); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -15728,7 +15713,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(273); + lookahead == '}') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(710); @@ -15736,7 +15721,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 711: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(308); + if (lookahead == '\\') ADVANCE(311); if (lookahead == ']') ADVANCE(708); if (lookahead == '{') ADVANCE(715); if (lookahead == '!' || @@ -15752,7 +15737,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(273); + lookahead == '}') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(710); @@ -15761,8 +15746,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 714, - '\\', 310, - '{', 301, + '\\', 313, + '{', 304, ',', 708, '.', 708, '}', 708, @@ -15779,7 +15764,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(303); + lookahead == '|') ADVANCE(306); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(712); @@ -15788,7 +15773,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 714, - '\\', 310, + '\\', 313, '{', 713, ',', 708, '.', 708, @@ -15806,7 +15791,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(303); + lookahead == '|') ADVANCE(306); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(712); @@ -15815,9 +15800,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 714, - '\\', 278, + '\\', 281, ']', 712, - '{', 275, + '{', 278, ',', 710, '.', 710, '}', 710, @@ -15834,7 +15819,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(276); + lookahead == '|') ADVANCE(279); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(714); @@ -15843,7 +15828,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 714, - '\\', 278, + '\\', 281, ']', 712, '{', 715, ',', 710, @@ -15862,7 +15847,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(276); + lookahead == '|') ADVANCE(279); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(714); @@ -15870,16 +15855,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 716: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(592); - if (lookahead == '\\') ADVANCE(251); + if (lookahead == '\\') ADVANCE(254); if (lookahead == ']') ADVANCE(470); - if (lookahead == '{') ADVANCE(253); + if (lookahead == '{') ADVANCE(256); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || lookahead == '?' || lookahead == '@') ADVANCE(548); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -15888,13 +15873,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(255); + lookahead == '}') ADVANCE(258); if (lookahead != 0) ADVANCE(716); END_STATE(); case 717: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(592); - if (lookahead == '\\') ADVANCE(251); + if (lookahead == '\\') ADVANCE(254); if (lookahead == ']') ADVANCE(470); if (lookahead == '{') ADVANCE(729); if (lookahead == '!' || @@ -15903,7 +15888,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '@') ADVANCE(548); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -15912,14 +15897,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(255); + lookahead == '}') ADVANCE(258); if (lookahead != 0) ADVANCE(716); END_STATE(); case 718: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 600, - '\\', 259, + '\\', 262, ']', 465, '{', 718, ',', 727, @@ -15932,7 +15917,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 563, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -15940,16 +15925,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(268); + lookahead == '|') ADVANCE(271); if (lookahead != 0) ADVANCE(719); END_STATE(); case 719: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 600, - '\\', 259, + '\\', 262, ']', 465, - '{', 267, + '{', 270, ',', 727, '.', 727, '}', 727, @@ -15960,7 +15945,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 563, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -15968,16 +15953,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(268); + lookahead == '|') ADVANCE(271); if (lookahead != 0) ADVANCE(719); END_STATE(); case 720: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 600, - '\\', 262, + '\\', 265, ']', 465, - '{', 256, + '{', 259, ',', 724, '.', 724, '}', 724, @@ -15988,7 +15973,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 576, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -15996,14 +15981,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(257); + lookahead == '|') ADVANCE(260); if (lookahead != 0) ADVANCE(720); END_STATE(); case 721: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 600, - '\\', 262, + '\\', 265, ']', 465, '{', 721, ',', 724, @@ -16016,7 +16001,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 576, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -16024,15 +16009,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(257); + lookahead == '|') ADVANCE(260); if (lookahead != 0) ADVANCE(720); END_STATE(); case 722: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(722); - if (lookahead == '\\') ADVANCE(272); + if (lookahead == '\\') ADVANCE(275); if (lookahead == ']') ADVANCE(708); - if (lookahead == '{') ADVANCE(274); + if (lookahead == '{') ADVANCE(277); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -16046,7 +16031,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(273); + lookahead == '}') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(722); @@ -16054,7 +16039,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 723: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(722); - if (lookahead == '\\') ADVANCE(272); + if (lookahead == '\\') ADVANCE(275); if (lookahead == ']') ADVANCE(708); if (lookahead == '{') ADVANCE(731); if (lookahead == '!' || @@ -16070,7 +16055,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(273); + lookahead == '}') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(722); @@ -16078,9 +16063,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 724: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(591); - if (lookahead == '\\') ADVANCE(258); + if (lookahead == '\\') ADVANCE(261); if (lookahead == ']') ADVANCE(470); - if (lookahead == '{') ADVANCE(256); + if (lookahead == '{') ADVANCE(259); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -16095,13 +16080,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(252); + lookahead == '}') ADVANCE(255); if (lookahead != 0) ADVANCE(724); END_STATE(); case 725: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(591); - if (lookahead == '\\') ADVANCE(258); + if (lookahead == '\\') ADVANCE(261); if (lookahead == ']') ADVANCE(470); if (lookahead == '{') ADVANCE(721); if (lookahead == '!' || @@ -16118,13 +16103,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(252); + lookahead == '}') ADVANCE(255); if (lookahead != 0) ADVANCE(724); END_STATE(); case 726: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(591); - if (lookahead == '\\') ADVANCE(266); + if (lookahead == '\\') ADVANCE(269); if (lookahead == ']') ADVANCE(470); if (lookahead == '{') ADVANCE(718); if (lookahead == '!' || @@ -16133,7 +16118,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '@') ADVANCE(582); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -16142,22 +16127,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(255); + lookahead == '}') ADVANCE(258); if (lookahead != 0) ADVANCE(727); END_STATE(); case 727: ACCEPT_TOKEN(sym_word); if (lookahead == '[') ADVANCE(591); - if (lookahead == '\\') ADVANCE(266); + if (lookahead == '\\') ADVANCE(269); if (lookahead == ']') ADVANCE(470); - if (lookahead == '{') ADVANCE(267); + if (lookahead == '{') ADVANCE(270); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || lookahead == '?' || lookahead == '@') ADVANCE(582); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -16166,16 +16151,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '>' || lookahead == '`' || lookahead == '|' || - lookahead == '}') ADVANCE(255); + lookahead == '}') ADVANCE(258); if (lookahead != 0) ADVANCE(727); END_STATE(); case 728: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 601, - '\\', 269, + '\\', 272, ']', 465, - '{', 253, + '{', 256, ',', 716, '.', 716, '}', 716, @@ -16186,7 +16171,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 580, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -16194,14 +16179,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(254); + lookahead == '|') ADVANCE(257); if (lookahead != 0) ADVANCE(728); END_STATE(); case 729: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 601, - '\\', 269, + '\\', 272, ']', 465, '{', 729, ',', 716, @@ -16214,7 +16199,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 580, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(252); + lookahead == ' ') ADVANCE(255); if (lookahead == '"' || lookahead == '$' || ('&' <= lookahead && lookahead <= ')') || @@ -16222,16 +16207,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(254); + lookahead == '|') ADVANCE(257); if (lookahead != 0) ADVANCE(728); END_STATE(); case 730: ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 730, - '\\', 279, + '\\', 282, ']', 712, - '{', 274, + '{', 277, ',', 722, '.', 722, '}', 722, @@ -16248,7 +16233,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(277); + lookahead == '|') ADVANCE(280); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(730); @@ -16257,7 +16242,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_word); ADVANCE_MAP( '[', 730, - '\\', 279, + '\\', 282, ']', 712, '{', 731, ',', 722, @@ -16276,7 +16261,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '<' || lookahead == '>' || lookahead == '`' || - lookahead == '|') ADVANCE(277); + lookahead == '|') ADVANCE(280); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '"' < lookahead)) ADVANCE(730); @@ -16849,25 +16834,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 802: ACCEPT_TOKEN(aux_sym_brace_expression_token1); - if (lookahead == ':') ADVANCE(227); + if (lookahead == ':') ADVANCE(230); if (lookahead != 0 && - lookahead != ']') ADVANCE(228); + lookahead != ']') ADVANCE(231); END_STATE(); case 803: ACCEPT_TOKEN(aux_sym_brace_expression_token1); - if (lookahead == '[') ADVANCE(223); + if (lookahead == '[') ADVANCE(226); if (lookahead == ']') ADVANCE(461); - if (lookahead != 0) ADVANCE(252); + if (lookahead != 0) ADVANCE(255); END_STATE(); case 804: ACCEPT_TOKEN(aux_sym__brace_element_token1); - if (lookahead == '\\') ADVANCE(314); + if (lookahead == '\\') ADVANCE(317); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(804); if ((!eof && set_contains(aux_sym__brace_element_token1_character_set_1, 10, lookahead))) ADVANCE(805); END_STATE(); case 805: ACCEPT_TOKEN(aux_sym__brace_element_token1); - if (lookahead == '\\') ADVANCE(314); + if (lookahead == '\\') ADVANCE(317); if ((!eof && set_contains(aux_sym__brace_element_token1_character_set_1, 10, lookahead))) ADVANCE(805); END_STATE(); case 806: @@ -16889,19 +16874,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 809: ACCEPT_TOKEN(sym_number); - if (lookahead == '#') ADVANCE(312); + if (lookahead == '#') ADVANCE(315); if (lookahead == 'X' || - lookahead == 'x') ADVANCE(311); + lookahead == 'x') ADVANCE(314); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); END_STATE(); case 810: ACCEPT_TOKEN(sym_number); - if (lookahead == '#') ADVANCE(312); + if (lookahead == '#') ADVANCE(315); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); END_STATE(); case 811: ACCEPT_TOKEN(sym_number); - if (lookahead == '\\') ADVANCE(315); + if (lookahead == '\\') ADVANCE(318); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(811); if ((!eof && set_contains(sym__index_word_character_set_1, 11, lookahead))) ADVANCE(827); END_STATE(); @@ -16911,7 +16896,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 813: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(164); + if (lookahead == '\'') ADVANCE(167); if (lookahead == '(') ADVANCE(830); if (lookahead == '[') ADVANCE(832); if (lookahead == '{') ADVANCE(825); @@ -16981,7 +16966,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 827: ACCEPT_TOKEN(sym__index_word); - if (lookahead == '\\') ADVANCE(315); + if (lookahead == '\\') ADVANCE(318); if ((!eof && set_contains(sym__index_word_character_set_1, 11, lookahead))) ADVANCE(827); END_STATE(); case 828: @@ -16991,10 +16976,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 829: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '(') ADVANCE(200); + if (lookahead == '(') ADVANCE(203); if (lookahead == '[') ADVANCE(710); - if (lookahead == '\\') ADVANCE(313); - if (lookahead == '{') ADVANCE(301); + if (lookahead == '\\') ADVANCE(316); + if (lookahead == '{') ADVANCE(304); if (lookahead == '!' || lookahead == '*' || lookahead == '+' || @@ -17014,9 +16999,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 833: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACK); - if (lookahead == '[') ADVANCE(223); + if (lookahead == '[') ADVANCE(226); if (lookahead == ']') ADVANCE(461); - if (lookahead != 0) ADVANCE(252); + if (lookahead != 0) ADVANCE(255); END_STATE(); case 834: ACCEPT_TOKEN(anon_sym_LT_LPAREN); @@ -17049,7 +17034,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(840); if (lookahead == ']') ADVANCE(842); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(228); + lookahead == '\r') ADVANCE(231); if (lookahead != 0) ADVANCE(839); END_STATE(); case 840: @@ -17057,7 +17042,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(840); if (lookahead == ']') ADVANCE(841); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(228); + lookahead == '\r') ADVANCE(231); if (lookahead != 0) ADVANCE(839); END_STATE(); case 841: @@ -17065,7 +17050,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(838); if (lookahead == ']') ADVANCE(462); if (lookahead == '\n' || - lookahead == '\r') ADVANCE(252); + lookahead == '\r') ADVANCE(255); if (lookahead != 0) ADVANCE(841); END_STATE(); case 842: @@ -17105,17 +17090,17 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 320, .external_lex_state = 2}, + [1] = {.lex_state = 323, .external_lex_state = 2}, [2] = {.lex_state = 5, .external_lex_state = 2}, [3] = {.lex_state = 5, .external_lex_state = 2}, [4] = {.lex_state = 5, .external_lex_state = 2}, [5] = {.lex_state = 5, .external_lex_state = 2}, [6] = {.lex_state = 4, .external_lex_state = 2}, [7] = {.lex_state = 4, .external_lex_state = 2}, - [8] = {.lex_state = 320, .external_lex_state = 2}, - [9] = {.lex_state = 320, .external_lex_state = 2}, + [8] = {.lex_state = 323, .external_lex_state = 2}, + [9] = {.lex_state = 323, .external_lex_state = 2}, [10] = {.lex_state = 9, .external_lex_state = 2}, - [11] = {.lex_state = 9, .external_lex_state = 2}, + [11] = {.lex_state = 4, .external_lex_state = 2}, [12] = {.lex_state = 9, .external_lex_state = 2}, [13] = {.lex_state = 9, .external_lex_state = 2}, [14] = {.lex_state = 9, .external_lex_state = 2}, @@ -17149,175 +17134,175 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [42] = {.lex_state = 9, .external_lex_state = 2}, [43] = {.lex_state = 9, .external_lex_state = 2}, [44] = {.lex_state = 9, .external_lex_state = 2}, - [45] = {.lex_state = 4, .external_lex_state = 2}, - [46] = {.lex_state = 9, .external_lex_state = 2}, - [47] = {.lex_state = 5, .external_lex_state = 2}, - [48] = {.lex_state = 320, .external_lex_state = 2}, + [45] = {.lex_state = 9, .external_lex_state = 2}, + [46] = {.lex_state = 5, .external_lex_state = 2}, + [47] = {.lex_state = 9, .external_lex_state = 2}, + [48] = {.lex_state = 323, .external_lex_state = 2}, [49] = {.lex_state = 6, .external_lex_state = 2}, - [50] = {.lex_state = 320, .external_lex_state = 2}, - [51] = {.lex_state = 6, .external_lex_state = 2}, - [52] = {.lex_state = 7, .external_lex_state = 2}, - [53] = {.lex_state = 6, .external_lex_state = 2}, - [54] = {.lex_state = 320, .external_lex_state = 2}, - [55] = {.lex_state = 320, .external_lex_state = 2}, - [56] = {.lex_state = 6, .external_lex_state = 2}, - [57] = {.lex_state = 6, .external_lex_state = 2}, - [58] = {.lex_state = 6, .external_lex_state = 2}, - [59] = {.lex_state = 6, .external_lex_state = 2}, - [60] = {.lex_state = 6, .external_lex_state = 2}, - [61] = {.lex_state = 320, .external_lex_state = 2}, - [62] = {.lex_state = 320, .external_lex_state = 2}, - [63] = {.lex_state = 320, .external_lex_state = 2}, - [64] = {.lex_state = 320, .external_lex_state = 2}, - [65] = {.lex_state = 320, .external_lex_state = 2}, - [66] = {.lex_state = 320, .external_lex_state = 2}, - [67] = {.lex_state = 320, .external_lex_state = 2}, - [68] = {.lex_state = 320, .external_lex_state = 2}, - [69] = {.lex_state = 320, .external_lex_state = 2}, - [70] = {.lex_state = 320, .external_lex_state = 2}, - [71] = {.lex_state = 320, .external_lex_state = 2}, - [72] = {.lex_state = 320, .external_lex_state = 2}, - [73] = {.lex_state = 320, .external_lex_state = 2}, - [74] = {.lex_state = 320, .external_lex_state = 2}, - [75] = {.lex_state = 320, .external_lex_state = 2}, - [76] = {.lex_state = 320, .external_lex_state = 2}, - [77] = {.lex_state = 320, .external_lex_state = 2}, - [78] = {.lex_state = 320, .external_lex_state = 2}, - [79] = {.lex_state = 320, .external_lex_state = 2}, - [80] = {.lex_state = 320, .external_lex_state = 2}, - [81] = {.lex_state = 320, .external_lex_state = 2}, - [82] = {.lex_state = 320, .external_lex_state = 2}, - [83] = {.lex_state = 320, .external_lex_state = 2}, - [84] = {.lex_state = 320, .external_lex_state = 2}, - [85] = {.lex_state = 320, .external_lex_state = 2}, - [86] = {.lex_state = 320, .external_lex_state = 2}, - [87] = {.lex_state = 320, .external_lex_state = 2}, - [88] = {.lex_state = 320, .external_lex_state = 2}, - [89] = {.lex_state = 320, .external_lex_state = 2}, - [90] = {.lex_state = 320, .external_lex_state = 2}, - [91] = {.lex_state = 320, .external_lex_state = 2}, - [92] = {.lex_state = 320, .external_lex_state = 2}, - [93] = {.lex_state = 320, .external_lex_state = 2}, - [94] = {.lex_state = 320, .external_lex_state = 2}, - [95] = {.lex_state = 320, .external_lex_state = 2}, - [96] = {.lex_state = 320, .external_lex_state = 2}, - [97] = {.lex_state = 320, .external_lex_state = 2}, - [98] = {.lex_state = 320, .external_lex_state = 2}, - [99] = {.lex_state = 320, .external_lex_state = 2}, - [100] = {.lex_state = 320, .external_lex_state = 2}, - [101] = {.lex_state = 320, .external_lex_state = 2}, - [102] = {.lex_state = 320, .external_lex_state = 2}, - [103] = {.lex_state = 320, .external_lex_state = 2}, - [104] = {.lex_state = 320, .external_lex_state = 2}, - [105] = {.lex_state = 320, .external_lex_state = 2}, - [106] = {.lex_state = 320, .external_lex_state = 2}, - [107] = {.lex_state = 320, .external_lex_state = 2}, - [108] = {.lex_state = 320, .external_lex_state = 2}, - [109] = {.lex_state = 320, .external_lex_state = 2}, - [110] = {.lex_state = 320, .external_lex_state = 2}, - [111] = {.lex_state = 320, .external_lex_state = 2}, - [112] = {.lex_state = 320, .external_lex_state = 2}, - [113] = {.lex_state = 320, .external_lex_state = 2}, - [114] = {.lex_state = 320, .external_lex_state = 2}, - [115] = {.lex_state = 320, .external_lex_state = 2}, - [116] = {.lex_state = 320, .external_lex_state = 2}, - [117] = {.lex_state = 320, .external_lex_state = 2}, - [118] = {.lex_state = 320, .external_lex_state = 2}, - [119] = {.lex_state = 320, .external_lex_state = 2}, - [120] = {.lex_state = 320, .external_lex_state = 2}, - [121] = {.lex_state = 320, .external_lex_state = 2}, - [122] = {.lex_state = 320, .external_lex_state = 2}, - [123] = {.lex_state = 320, .external_lex_state = 2}, - [124] = {.lex_state = 320, .external_lex_state = 2}, - [125] = {.lex_state = 320, .external_lex_state = 2}, - [126] = {.lex_state = 320, .external_lex_state = 2}, - [127] = {.lex_state = 320, .external_lex_state = 2}, - [128] = {.lex_state = 320, .external_lex_state = 2}, - [129] = {.lex_state = 320, .external_lex_state = 2}, - [130] = {.lex_state = 320, .external_lex_state = 2}, - [131] = {.lex_state = 320, .external_lex_state = 2}, - [132] = {.lex_state = 320, .external_lex_state = 2}, - [133] = {.lex_state = 320, .external_lex_state = 2}, - [134] = {.lex_state = 320, .external_lex_state = 2}, - [135] = {.lex_state = 320, .external_lex_state = 2}, - [136] = {.lex_state = 320, .external_lex_state = 2}, - [137] = {.lex_state = 320, .external_lex_state = 2}, - [138] = {.lex_state = 320, .external_lex_state = 2}, - [139] = {.lex_state = 320, .external_lex_state = 2}, - [140] = {.lex_state = 320, .external_lex_state = 2}, - [141] = {.lex_state = 320, .external_lex_state = 2}, - [142] = {.lex_state = 320, .external_lex_state = 2}, - [143] = {.lex_state = 320, .external_lex_state = 2}, - [144] = {.lex_state = 320, .external_lex_state = 2}, - [145] = {.lex_state = 320, .external_lex_state = 2}, - [146] = {.lex_state = 320, .external_lex_state = 2}, - [147] = {.lex_state = 320, .external_lex_state = 2}, - [148] = {.lex_state = 320, .external_lex_state = 2}, - [149] = {.lex_state = 320, .external_lex_state = 2}, - [150] = {.lex_state = 320, .external_lex_state = 2}, - [151] = {.lex_state = 320, .external_lex_state = 2}, - [152] = {.lex_state = 320, .external_lex_state = 2}, - [153] = {.lex_state = 320, .external_lex_state = 2}, - [154] = {.lex_state = 320, .external_lex_state = 2}, - [155] = {.lex_state = 320, .external_lex_state = 2}, - [156] = {.lex_state = 320, .external_lex_state = 2}, - [157] = {.lex_state = 320, .external_lex_state = 2}, - [158] = {.lex_state = 320, .external_lex_state = 2}, - [159] = {.lex_state = 320, .external_lex_state = 2}, - [160] = {.lex_state = 320, .external_lex_state = 2}, - [161] = {.lex_state = 320, .external_lex_state = 2}, - [162] = {.lex_state = 320, .external_lex_state = 2}, - [163] = {.lex_state = 320, .external_lex_state = 2}, - [164] = {.lex_state = 320, .external_lex_state = 2}, - [165] = {.lex_state = 320, .external_lex_state = 2}, - [166] = {.lex_state = 320, .external_lex_state = 2}, - [167] = {.lex_state = 320, .external_lex_state = 2}, - [168] = {.lex_state = 320, .external_lex_state = 2}, - [169] = {.lex_state = 320, .external_lex_state = 2}, - [170] = {.lex_state = 320, .external_lex_state = 2}, - [171] = {.lex_state = 320, .external_lex_state = 2}, - [172] = {.lex_state = 320, .external_lex_state = 2}, - [173] = {.lex_state = 320, .external_lex_state = 2}, - [174] = {.lex_state = 320, .external_lex_state = 2}, - [175] = {.lex_state = 320, .external_lex_state = 2}, - [176] = {.lex_state = 320, .external_lex_state = 2}, - [177] = {.lex_state = 320, .external_lex_state = 2}, - [178] = {.lex_state = 320, .external_lex_state = 2}, - [179] = {.lex_state = 320, .external_lex_state = 2}, - [180] = {.lex_state = 320, .external_lex_state = 2}, - [181] = {.lex_state = 320, .external_lex_state = 2}, - [182] = {.lex_state = 320, .external_lex_state = 2}, - [183] = {.lex_state = 320, .external_lex_state = 2}, - [184] = {.lex_state = 320, .external_lex_state = 2}, - [185] = {.lex_state = 320, .external_lex_state = 2}, - [186] = {.lex_state = 320, .external_lex_state = 2}, - [187] = {.lex_state = 320, .external_lex_state = 2}, - [188] = {.lex_state = 320, .external_lex_state = 2}, - [189] = {.lex_state = 320, .external_lex_state = 2}, - [190] = {.lex_state = 320, .external_lex_state = 2}, - [191] = {.lex_state = 320, .external_lex_state = 2}, - [192] = {.lex_state = 320, .external_lex_state = 2}, - [193] = {.lex_state = 320, .external_lex_state = 2}, - [194] = {.lex_state = 320, .external_lex_state = 2}, - [195] = {.lex_state = 320, .external_lex_state = 2}, - [196] = {.lex_state = 320, .external_lex_state = 2}, - [197] = {.lex_state = 320, .external_lex_state = 2}, - [198] = {.lex_state = 320, .external_lex_state = 2}, - [199] = {.lex_state = 9, .external_lex_state = 2}, - [200] = {.lex_state = 9, .external_lex_state = 2}, - [201] = {.lex_state = 9, .external_lex_state = 2}, + [50] = {.lex_state = 7, .external_lex_state = 2}, + [51] = {.lex_state = 7, .external_lex_state = 2}, + [52] = {.lex_state = 323, .external_lex_state = 2}, + [53] = {.lex_state = 323, .external_lex_state = 2}, + [54] = {.lex_state = 323, .external_lex_state = 2}, + [55] = {.lex_state = 323, .external_lex_state = 2}, + [56] = {.lex_state = 7, .external_lex_state = 2}, + [57] = {.lex_state = 7, .external_lex_state = 2}, + [58] = {.lex_state = 7, .external_lex_state = 2}, + [59] = {.lex_state = 7, .external_lex_state = 2}, + [60] = {.lex_state = 7, .external_lex_state = 2}, + [61] = {.lex_state = 7, .external_lex_state = 2}, + [62] = {.lex_state = 323, .external_lex_state = 2}, + [63] = {.lex_state = 323, .external_lex_state = 2}, + [64] = {.lex_state = 323, .external_lex_state = 2}, + [65] = {.lex_state = 323, .external_lex_state = 2}, + [66] = {.lex_state = 323, .external_lex_state = 2}, + [67] = {.lex_state = 323, .external_lex_state = 2}, + [68] = {.lex_state = 323, .external_lex_state = 2}, + [69] = {.lex_state = 323, .external_lex_state = 2}, + [70] = {.lex_state = 323, .external_lex_state = 2}, + [71] = {.lex_state = 323, .external_lex_state = 2}, + [72] = {.lex_state = 323, .external_lex_state = 2}, + [73] = {.lex_state = 323, .external_lex_state = 2}, + [74] = {.lex_state = 323, .external_lex_state = 2}, + [75] = {.lex_state = 323, .external_lex_state = 2}, + [76] = {.lex_state = 323, .external_lex_state = 2}, + [77] = {.lex_state = 323, .external_lex_state = 2}, + [78] = {.lex_state = 323, .external_lex_state = 2}, + [79] = {.lex_state = 323, .external_lex_state = 2}, + [80] = {.lex_state = 323, .external_lex_state = 2}, + [81] = {.lex_state = 323, .external_lex_state = 2}, + [82] = {.lex_state = 323, .external_lex_state = 2}, + [83] = {.lex_state = 323, .external_lex_state = 2}, + [84] = {.lex_state = 323, .external_lex_state = 2}, + [85] = {.lex_state = 323, .external_lex_state = 2}, + [86] = {.lex_state = 323, .external_lex_state = 2}, + [87] = {.lex_state = 323, .external_lex_state = 2}, + [88] = {.lex_state = 323, .external_lex_state = 2}, + [89] = {.lex_state = 323, .external_lex_state = 2}, + [90] = {.lex_state = 323, .external_lex_state = 2}, + [91] = {.lex_state = 323, .external_lex_state = 2}, + [92] = {.lex_state = 323, .external_lex_state = 2}, + [93] = {.lex_state = 323, .external_lex_state = 2}, + [94] = {.lex_state = 323, .external_lex_state = 2}, + [95] = {.lex_state = 323, .external_lex_state = 2}, + [96] = {.lex_state = 323, .external_lex_state = 2}, + [97] = {.lex_state = 323, .external_lex_state = 2}, + [98] = {.lex_state = 323, .external_lex_state = 2}, + [99] = {.lex_state = 323, .external_lex_state = 2}, + [100] = {.lex_state = 323, .external_lex_state = 2}, + [101] = {.lex_state = 323, .external_lex_state = 2}, + [102] = {.lex_state = 323, .external_lex_state = 2}, + [103] = {.lex_state = 323, .external_lex_state = 2}, + [104] = {.lex_state = 323, .external_lex_state = 2}, + [105] = {.lex_state = 323, .external_lex_state = 2}, + [106] = {.lex_state = 323, .external_lex_state = 2}, + [107] = {.lex_state = 323, .external_lex_state = 2}, + [108] = {.lex_state = 323, .external_lex_state = 2}, + [109] = {.lex_state = 323, .external_lex_state = 2}, + [110] = {.lex_state = 323, .external_lex_state = 2}, + [111] = {.lex_state = 323, .external_lex_state = 2}, + [112] = {.lex_state = 323, .external_lex_state = 2}, + [113] = {.lex_state = 323, .external_lex_state = 2}, + [114] = {.lex_state = 323, .external_lex_state = 2}, + [115] = {.lex_state = 323, .external_lex_state = 2}, + [116] = {.lex_state = 323, .external_lex_state = 2}, + [117] = {.lex_state = 323, .external_lex_state = 2}, + [118] = {.lex_state = 323, .external_lex_state = 2}, + [119] = {.lex_state = 323, .external_lex_state = 2}, + [120] = {.lex_state = 323, .external_lex_state = 2}, + [121] = {.lex_state = 323, .external_lex_state = 2}, + [122] = {.lex_state = 323, .external_lex_state = 2}, + [123] = {.lex_state = 323, .external_lex_state = 2}, + [124] = {.lex_state = 323, .external_lex_state = 2}, + [125] = {.lex_state = 323, .external_lex_state = 2}, + [126] = {.lex_state = 323, .external_lex_state = 2}, + [127] = {.lex_state = 323, .external_lex_state = 2}, + [128] = {.lex_state = 323, .external_lex_state = 2}, + [129] = {.lex_state = 323, .external_lex_state = 2}, + [130] = {.lex_state = 323, .external_lex_state = 2}, + [131] = {.lex_state = 323, .external_lex_state = 2}, + [132] = {.lex_state = 323, .external_lex_state = 2}, + [133] = {.lex_state = 323, .external_lex_state = 2}, + [134] = {.lex_state = 323, .external_lex_state = 2}, + [135] = {.lex_state = 323, .external_lex_state = 2}, + [136] = {.lex_state = 323, .external_lex_state = 2}, + [137] = {.lex_state = 323, .external_lex_state = 2}, + [138] = {.lex_state = 323, .external_lex_state = 2}, + [139] = {.lex_state = 323, .external_lex_state = 2}, + [140] = {.lex_state = 323, .external_lex_state = 2}, + [141] = {.lex_state = 323, .external_lex_state = 2}, + [142] = {.lex_state = 323, .external_lex_state = 2}, + [143] = {.lex_state = 323, .external_lex_state = 2}, + [144] = {.lex_state = 323, .external_lex_state = 2}, + [145] = {.lex_state = 323, .external_lex_state = 2}, + [146] = {.lex_state = 323, .external_lex_state = 2}, + [147] = {.lex_state = 323, .external_lex_state = 2}, + [148] = {.lex_state = 323, .external_lex_state = 2}, + [149] = {.lex_state = 323, .external_lex_state = 2}, + [150] = {.lex_state = 323, .external_lex_state = 2}, + [151] = {.lex_state = 323, .external_lex_state = 2}, + [152] = {.lex_state = 323, .external_lex_state = 2}, + [153] = {.lex_state = 323, .external_lex_state = 2}, + [154] = {.lex_state = 323, .external_lex_state = 2}, + [155] = {.lex_state = 323, .external_lex_state = 2}, + [156] = {.lex_state = 323, .external_lex_state = 2}, + [157] = {.lex_state = 323, .external_lex_state = 2}, + [158] = {.lex_state = 323, .external_lex_state = 2}, + [159] = {.lex_state = 323, .external_lex_state = 2}, + [160] = {.lex_state = 323, .external_lex_state = 2}, + [161] = {.lex_state = 323, .external_lex_state = 2}, + [162] = {.lex_state = 323, .external_lex_state = 2}, + [163] = {.lex_state = 323, .external_lex_state = 2}, + [164] = {.lex_state = 323, .external_lex_state = 2}, + [165] = {.lex_state = 323, .external_lex_state = 2}, + [166] = {.lex_state = 323, .external_lex_state = 2}, + [167] = {.lex_state = 323, .external_lex_state = 2}, + [168] = {.lex_state = 323, .external_lex_state = 2}, + [169] = {.lex_state = 323, .external_lex_state = 2}, + [170] = {.lex_state = 323, .external_lex_state = 2}, + [171] = {.lex_state = 323, .external_lex_state = 2}, + [172] = {.lex_state = 323, .external_lex_state = 2}, + [173] = {.lex_state = 323, .external_lex_state = 2}, + [174] = {.lex_state = 323, .external_lex_state = 2}, + [175] = {.lex_state = 323, .external_lex_state = 2}, + [176] = {.lex_state = 323, .external_lex_state = 2}, + [177] = {.lex_state = 323, .external_lex_state = 2}, + [178] = {.lex_state = 323, .external_lex_state = 2}, + [179] = {.lex_state = 323, .external_lex_state = 2}, + [180] = {.lex_state = 323, .external_lex_state = 2}, + [181] = {.lex_state = 323, .external_lex_state = 2}, + [182] = {.lex_state = 323, .external_lex_state = 2}, + [183] = {.lex_state = 323, .external_lex_state = 2}, + [184] = {.lex_state = 323, .external_lex_state = 2}, + [185] = {.lex_state = 323, .external_lex_state = 2}, + [186] = {.lex_state = 323, .external_lex_state = 2}, + [187] = {.lex_state = 323, .external_lex_state = 2}, + [188] = {.lex_state = 323, .external_lex_state = 2}, + [189] = {.lex_state = 323, .external_lex_state = 2}, + [190] = {.lex_state = 323, .external_lex_state = 2}, + [191] = {.lex_state = 323, .external_lex_state = 2}, + [192] = {.lex_state = 323, .external_lex_state = 2}, + [193] = {.lex_state = 323, .external_lex_state = 2}, + [194] = {.lex_state = 323, .external_lex_state = 2}, + [195] = {.lex_state = 323, .external_lex_state = 2}, + [196] = {.lex_state = 323, .external_lex_state = 2}, + [197] = {.lex_state = 323, .external_lex_state = 2}, + [198] = {.lex_state = 323, .external_lex_state = 2}, + [199] = {.lex_state = 323, .external_lex_state = 2}, + [200] = {.lex_state = 323, .external_lex_state = 2}, + [201] = {.lex_state = 323, .external_lex_state = 2}, [202] = {.lex_state = 9, .external_lex_state = 2}, - [203] = {.lex_state = 320, .external_lex_state = 2}, + [203] = {.lex_state = 9, .external_lex_state = 2}, [204] = {.lex_state = 9, .external_lex_state = 2}, [205] = {.lex_state = 9, .external_lex_state = 2}, [206] = {.lex_state = 9, .external_lex_state = 2}, - [207] = {.lex_state = 9, .external_lex_state = 2}, - [208] = {.lex_state = 320, .external_lex_state = 2}, + [207] = {.lex_state = 323, .external_lex_state = 2}, + [208] = {.lex_state = 9, .external_lex_state = 2}, [209] = {.lex_state = 9, .external_lex_state = 2}, [210] = {.lex_state = 9, .external_lex_state = 2}, [211] = {.lex_state = 9, .external_lex_state = 2}, - [212] = {.lex_state = 9, .external_lex_state = 2}, - [213] = {.lex_state = 320, .external_lex_state = 2}, + [212] = {.lex_state = 323, .external_lex_state = 2}, + [213] = {.lex_state = 9, .external_lex_state = 2}, [214] = {.lex_state = 9, .external_lex_state = 2}, [215] = {.lex_state = 9, .external_lex_state = 2}, [216] = {.lex_state = 9, .external_lex_state = 2}, @@ -17326,3726 +17311,3695 @@ static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [219] = {.lex_state = 9, .external_lex_state = 2}, [220] = {.lex_state = 9, .external_lex_state = 2}, [221] = {.lex_state = 9, .external_lex_state = 2}, - [222] = {.lex_state = 9, .external_lex_state = 2}, + [222] = {.lex_state = 323, .external_lex_state = 2}, [223] = {.lex_state = 9, .external_lex_state = 2}, [224] = {.lex_state = 9, .external_lex_state = 2}, [225] = {.lex_state = 9, .external_lex_state = 2}, [226] = {.lex_state = 9, .external_lex_state = 2}, [227] = {.lex_state = 9, .external_lex_state = 2}, [228] = {.lex_state = 9, .external_lex_state = 2}, - [229] = {.lex_state = 9, .external_lex_state = 2}, - [230] = {.lex_state = 320, .external_lex_state = 2}, + [229] = {.lex_state = 323, .external_lex_state = 2}, + [230] = {.lex_state = 9, .external_lex_state = 2}, [231] = {.lex_state = 9, .external_lex_state = 2}, - [232] = {.lex_state = 9, .external_lex_state = 2}, + [232] = {.lex_state = 323, .external_lex_state = 2}, [233] = {.lex_state = 9, .external_lex_state = 2}, [234] = {.lex_state = 9, .external_lex_state = 2}, - [235] = {.lex_state = 320, .external_lex_state = 2}, + [235] = {.lex_state = 323, .external_lex_state = 2}, [236] = {.lex_state = 9, .external_lex_state = 2}, [237] = {.lex_state = 9, .external_lex_state = 2}, - [238] = {.lex_state = 320, .external_lex_state = 2}, - [239] = {.lex_state = 9, .external_lex_state = 2}, - [240] = {.lex_state = 320, .external_lex_state = 2}, + [238] = {.lex_state = 9, .external_lex_state = 2}, + [239] = {.lex_state = 323, .external_lex_state = 2}, + [240] = {.lex_state = 9, .external_lex_state = 2}, [241] = {.lex_state = 9, .external_lex_state = 2}, - [242] = {.lex_state = 320, .external_lex_state = 2}, - [243] = {.lex_state = 320, .external_lex_state = 2}, - [244] = {.lex_state = 320, .external_lex_state = 2}, - [245] = {.lex_state = 320, .external_lex_state = 2}, - [246] = {.lex_state = 320, .external_lex_state = 2}, - [247] = {.lex_state = 320, .external_lex_state = 2}, - [248] = {.lex_state = 320, .external_lex_state = 2}, - [249] = {.lex_state = 320, .external_lex_state = 2}, - [250] = {.lex_state = 320, .external_lex_state = 2}, - [251] = {.lex_state = 320, .external_lex_state = 2}, - [252] = {.lex_state = 320, .external_lex_state = 2}, - [253] = {.lex_state = 320, .external_lex_state = 2}, - [254] = {.lex_state = 320, .external_lex_state = 2}, - [255] = {.lex_state = 320, .external_lex_state = 2}, - [256] = {.lex_state = 320, .external_lex_state = 2}, - [257] = {.lex_state = 320, .external_lex_state = 2}, - [258] = {.lex_state = 320, .external_lex_state = 2}, - [259] = {.lex_state = 320, .external_lex_state = 2}, - [260] = {.lex_state = 320, .external_lex_state = 2}, - [261] = {.lex_state = 320, .external_lex_state = 2}, - [262] = {.lex_state = 320, .external_lex_state = 2}, - [263] = {.lex_state = 320, .external_lex_state = 2}, - [264] = {.lex_state = 320, .external_lex_state = 2}, - [265] = {.lex_state = 320, .external_lex_state = 2}, - [266] = {.lex_state = 320, .external_lex_state = 2}, - [267] = {.lex_state = 320, .external_lex_state = 2}, - [268] = {.lex_state = 320, .external_lex_state = 2}, - [269] = {.lex_state = 320, .external_lex_state = 2}, - [270] = {.lex_state = 320, .external_lex_state = 2}, - [271] = {.lex_state = 320, .external_lex_state = 2}, - [272] = {.lex_state = 320, .external_lex_state = 2}, - [273] = {.lex_state = 320, .external_lex_state = 2}, - [274] = {.lex_state = 320, .external_lex_state = 2}, - [275] = {.lex_state = 320, .external_lex_state = 2}, - [276] = {.lex_state = 320, .external_lex_state = 2}, - [277] = {.lex_state = 320, .external_lex_state = 2}, - [278] = {.lex_state = 320, .external_lex_state = 2}, - [279] = {.lex_state = 320, .external_lex_state = 2}, - [280] = {.lex_state = 320, .external_lex_state = 2}, - [281] = {.lex_state = 320, .external_lex_state = 2}, - [282] = {.lex_state = 320, .external_lex_state = 2}, - [283] = {.lex_state = 320, .external_lex_state = 2}, - [284] = {.lex_state = 320, .external_lex_state = 2}, - [285] = {.lex_state = 320, .external_lex_state = 2}, - [286] = {.lex_state = 320, .external_lex_state = 2}, - [287] = {.lex_state = 320, .external_lex_state = 2}, - [288] = {.lex_state = 320, .external_lex_state = 2}, - [289] = {.lex_state = 320, .external_lex_state = 2}, - [290] = {.lex_state = 320, .external_lex_state = 2}, - [291] = {.lex_state = 320, .external_lex_state = 2}, - [292] = {.lex_state = 320, .external_lex_state = 2}, - [293] = {.lex_state = 320, .external_lex_state = 2}, - [294] = {.lex_state = 320, .external_lex_state = 2}, - [295] = {.lex_state = 320, .external_lex_state = 2}, - [296] = {.lex_state = 320, .external_lex_state = 2}, - [297] = {.lex_state = 320, .external_lex_state = 2}, - [298] = {.lex_state = 320, .external_lex_state = 2}, - [299] = {.lex_state = 320, .external_lex_state = 2}, - [300] = {.lex_state = 320, .external_lex_state = 2}, - [301] = {.lex_state = 320, .external_lex_state = 2}, - [302] = {.lex_state = 320, .external_lex_state = 2}, - [303] = {.lex_state = 320, .external_lex_state = 2}, - [304] = {.lex_state = 320, .external_lex_state = 2}, - [305] = {.lex_state = 320, .external_lex_state = 2}, - [306] = {.lex_state = 320, .external_lex_state = 2}, - [307] = {.lex_state = 320, .external_lex_state = 2}, - [308] = {.lex_state = 320, .external_lex_state = 2}, - [309] = {.lex_state = 320, .external_lex_state = 2}, - [310] = {.lex_state = 320, .external_lex_state = 2}, - [311] = {.lex_state = 320, .external_lex_state = 2}, - [312] = {.lex_state = 320, .external_lex_state = 2}, - [313] = {.lex_state = 153, .external_lex_state = 3}, - [314] = {.lex_state = 320, .external_lex_state = 2}, - [315] = {.lex_state = 4, .external_lex_state = 2}, - [316] = {.lex_state = 4, .external_lex_state = 2}, - [317] = {.lex_state = 4, .external_lex_state = 2}, - [318] = {.lex_state = 4, .external_lex_state = 2}, - [319] = {.lex_state = 4, .external_lex_state = 2}, - [320] = {.lex_state = 4, .external_lex_state = 2}, - [321] = {.lex_state = 4, .external_lex_state = 2}, - [322] = {.lex_state = 153, .external_lex_state = 3}, - [323] = {.lex_state = 153, .external_lex_state = 3}, - [324] = {.lex_state = 5, .external_lex_state = 2}, - [325] = {.lex_state = 5, .external_lex_state = 2}, - [326] = {.lex_state = 5, .external_lex_state = 2}, - [327] = {.lex_state = 153, .external_lex_state = 3}, - [328] = {.lex_state = 153, .external_lex_state = 3}, - [329] = {.lex_state = 153, .external_lex_state = 3}, - [330] = {.lex_state = 152, .external_lex_state = 3}, - [331] = {.lex_state = 153, .external_lex_state = 3}, - [332] = {.lex_state = 153, .external_lex_state = 3}, - [333] = {.lex_state = 153, .external_lex_state = 3}, - [334] = {.lex_state = 152, .external_lex_state = 3}, - [335] = {.lex_state = 153, .external_lex_state = 3}, - [336] = {.lex_state = 153, .external_lex_state = 3}, - [337] = {.lex_state = 153, .external_lex_state = 3}, - [338] = {.lex_state = 153, .external_lex_state = 3}, - [339] = {.lex_state = 153, .external_lex_state = 3}, - [340] = {.lex_state = 153, .external_lex_state = 3}, - [341] = {.lex_state = 5, .external_lex_state = 2}, - [342] = {.lex_state = 153, .external_lex_state = 3}, - [343] = {.lex_state = 153, .external_lex_state = 3}, - [344] = {.lex_state = 153, .external_lex_state = 3}, - [345] = {.lex_state = 153, .external_lex_state = 3}, - [346] = {.lex_state = 153, .external_lex_state = 3}, - [347] = {.lex_state = 153, .external_lex_state = 3}, - [348] = {.lex_state = 153, .external_lex_state = 3}, - [349] = {.lex_state = 153, .external_lex_state = 3}, - [350] = {.lex_state = 153, .external_lex_state = 3}, - [351] = {.lex_state = 153, .external_lex_state = 3}, - [352] = {.lex_state = 153, .external_lex_state = 3}, - [353] = {.lex_state = 153, .external_lex_state = 3}, - [354] = {.lex_state = 153, .external_lex_state = 3}, - [355] = {.lex_state = 153, .external_lex_state = 3}, - [356] = {.lex_state = 5, .external_lex_state = 2}, - [357] = {.lex_state = 153, .external_lex_state = 3}, - [358] = {.lex_state = 153, .external_lex_state = 3}, - [359] = {.lex_state = 153, .external_lex_state = 3}, - [360] = {.lex_state = 153, .external_lex_state = 3}, - [361] = {.lex_state = 153, .external_lex_state = 3}, - [362] = {.lex_state = 153, .external_lex_state = 3}, - [363] = {.lex_state = 152, .external_lex_state = 3}, - [364] = {.lex_state = 5, .external_lex_state = 2}, - [365] = {.lex_state = 153, .external_lex_state = 3}, - [366] = {.lex_state = 153, .external_lex_state = 3}, - [367] = {.lex_state = 153, .external_lex_state = 3}, - [368] = {.lex_state = 153, .external_lex_state = 3}, - [369] = {.lex_state = 153, .external_lex_state = 3}, - [370] = {.lex_state = 153, .external_lex_state = 3}, - [371] = {.lex_state = 153, .external_lex_state = 3}, - [372] = {.lex_state = 153, .external_lex_state = 3}, - [373] = {.lex_state = 153, .external_lex_state = 3}, - [374] = {.lex_state = 153, .external_lex_state = 3}, - [375] = {.lex_state = 153, .external_lex_state = 3}, - [376] = {.lex_state = 153, .external_lex_state = 3}, - [377] = {.lex_state = 153, .external_lex_state = 3}, - [378] = {.lex_state = 153, .external_lex_state = 3}, - [379] = {.lex_state = 153, .external_lex_state = 3}, - [380] = {.lex_state = 153, .external_lex_state = 3}, - [381] = {.lex_state = 153, .external_lex_state = 3}, - [382] = {.lex_state = 153, .external_lex_state = 3}, - [383] = {.lex_state = 153, .external_lex_state = 3}, - [384] = {.lex_state = 153, .external_lex_state = 3}, - [385] = {.lex_state = 153, .external_lex_state = 3}, - [386] = {.lex_state = 153, .external_lex_state = 3}, - [387] = {.lex_state = 153, .external_lex_state = 3}, - [388] = {.lex_state = 153, .external_lex_state = 3}, - [389] = {.lex_state = 153, .external_lex_state = 3}, - [390] = {.lex_state = 153, .external_lex_state = 3}, - [391] = {.lex_state = 153, .external_lex_state = 3}, - [392] = {.lex_state = 153, .external_lex_state = 3}, - [393] = {.lex_state = 153, .external_lex_state = 3}, - [394] = {.lex_state = 153, .external_lex_state = 3}, - [395] = {.lex_state = 153, .external_lex_state = 3}, - [396] = {.lex_state = 153, .external_lex_state = 3}, - [397] = {.lex_state = 153, .external_lex_state = 3}, - [398] = {.lex_state = 153, .external_lex_state = 3}, - [399] = {.lex_state = 153, .external_lex_state = 3}, - [400] = {.lex_state = 153, .external_lex_state = 3}, - [401] = {.lex_state = 153, .external_lex_state = 3}, - [402] = {.lex_state = 153, .external_lex_state = 3}, - [403] = {.lex_state = 153, .external_lex_state = 3}, - [404] = {.lex_state = 153, .external_lex_state = 3}, - [405] = {.lex_state = 153, .external_lex_state = 3}, - [406] = {.lex_state = 153, .external_lex_state = 3}, - [407] = {.lex_state = 153, .external_lex_state = 3}, - [408] = {.lex_state = 153, .external_lex_state = 3}, - [409] = {.lex_state = 153, .external_lex_state = 3}, - [410] = {.lex_state = 153, .external_lex_state = 3}, - [411] = {.lex_state = 153, .external_lex_state = 3}, - [412] = {.lex_state = 153, .external_lex_state = 3}, - [413] = {.lex_state = 153, .external_lex_state = 3}, - [414] = {.lex_state = 153, .external_lex_state = 3}, - [415] = {.lex_state = 153, .external_lex_state = 3}, - [416] = {.lex_state = 153, .external_lex_state = 3}, - [417] = {.lex_state = 153, .external_lex_state = 3}, - [418] = {.lex_state = 153, .external_lex_state = 3}, - [419] = {.lex_state = 153, .external_lex_state = 3}, - [420] = {.lex_state = 153, .external_lex_state = 3}, - [421] = {.lex_state = 153, .external_lex_state = 3}, - [422] = {.lex_state = 153, .external_lex_state = 3}, - [423] = {.lex_state = 153, .external_lex_state = 3}, - [424] = {.lex_state = 153, .external_lex_state = 3}, - [425] = {.lex_state = 153, .external_lex_state = 3}, - [426] = {.lex_state = 153, .external_lex_state = 3}, - [427] = {.lex_state = 153, .external_lex_state = 3}, - [428] = {.lex_state = 153, .external_lex_state = 3}, - [429] = {.lex_state = 153, .external_lex_state = 3}, - [430] = {.lex_state = 153, .external_lex_state = 3}, - [431] = {.lex_state = 153, .external_lex_state = 3}, - [432] = {.lex_state = 153, .external_lex_state = 3}, - [433] = {.lex_state = 153, .external_lex_state = 3}, - [434] = {.lex_state = 153, .external_lex_state = 3}, - [435] = {.lex_state = 153, .external_lex_state = 3}, - [436] = {.lex_state = 153, .external_lex_state = 3}, - [437] = {.lex_state = 153, .external_lex_state = 3}, - [438] = {.lex_state = 153, .external_lex_state = 3}, - [439] = {.lex_state = 153, .external_lex_state = 3}, - [440] = {.lex_state = 153, .external_lex_state = 3}, - [441] = {.lex_state = 153, .external_lex_state = 3}, - [442] = {.lex_state = 153, .external_lex_state = 3}, - [443] = {.lex_state = 153, .external_lex_state = 3}, - [444] = {.lex_state = 153, .external_lex_state = 3}, - [445] = {.lex_state = 153, .external_lex_state = 3}, - [446] = {.lex_state = 153, .external_lex_state = 3}, - [447] = {.lex_state = 153, .external_lex_state = 3}, - [448] = {.lex_state = 153, .external_lex_state = 3}, - [449] = {.lex_state = 153, .external_lex_state = 3}, - [450] = {.lex_state = 153, .external_lex_state = 3}, - [451] = {.lex_state = 153, .external_lex_state = 3}, - [452] = {.lex_state = 153, .external_lex_state = 3}, - [453] = {.lex_state = 153, .external_lex_state = 3}, - [454] = {.lex_state = 153, .external_lex_state = 3}, - [455] = {.lex_state = 153, .external_lex_state = 3}, - [456] = {.lex_state = 153, .external_lex_state = 3}, - [457] = {.lex_state = 153, .external_lex_state = 3}, - [458] = {.lex_state = 153, .external_lex_state = 3}, - [459] = {.lex_state = 153, .external_lex_state = 3}, - [460] = {.lex_state = 153, .external_lex_state = 3}, - [461] = {.lex_state = 153, .external_lex_state = 3}, - [462] = {.lex_state = 153, .external_lex_state = 3}, - [463] = {.lex_state = 153, .external_lex_state = 3}, - [464] = {.lex_state = 153, .external_lex_state = 3}, - [465] = {.lex_state = 153, .external_lex_state = 3}, - [466] = {.lex_state = 153, .external_lex_state = 3}, - [467] = {.lex_state = 153, .external_lex_state = 3}, - [468] = {.lex_state = 153, .external_lex_state = 3}, - [469] = {.lex_state = 153, .external_lex_state = 3}, - [470] = {.lex_state = 153, .external_lex_state = 3}, - [471] = {.lex_state = 153, .external_lex_state = 3}, - [472] = {.lex_state = 153, .external_lex_state = 3}, - [473] = {.lex_state = 153, .external_lex_state = 3}, - [474] = {.lex_state = 153, .external_lex_state = 3}, - [475] = {.lex_state = 153, .external_lex_state = 3}, - [476] = {.lex_state = 153, .external_lex_state = 3}, - [477] = {.lex_state = 153, .external_lex_state = 3}, - [478] = {.lex_state = 153, .external_lex_state = 3}, - [479] = {.lex_state = 153, .external_lex_state = 3}, - [480] = {.lex_state = 153, .external_lex_state = 3}, - [481] = {.lex_state = 153, .external_lex_state = 3}, - [482] = {.lex_state = 153, .external_lex_state = 3}, - [483] = {.lex_state = 153, .external_lex_state = 3}, - [484] = {.lex_state = 153, .external_lex_state = 3}, - [485] = {.lex_state = 153, .external_lex_state = 3}, - [486] = {.lex_state = 153, .external_lex_state = 3}, - [487] = {.lex_state = 153, .external_lex_state = 3}, - [488] = {.lex_state = 153, .external_lex_state = 3}, - [489] = {.lex_state = 153, .external_lex_state = 3}, - [490] = {.lex_state = 153, .external_lex_state = 3}, - [491] = {.lex_state = 153, .external_lex_state = 3}, - [492] = {.lex_state = 153, .external_lex_state = 3}, - [493] = {.lex_state = 153, .external_lex_state = 3}, - [494] = {.lex_state = 153, .external_lex_state = 3}, - [495] = {.lex_state = 153, .external_lex_state = 3}, - [496] = {.lex_state = 153, .external_lex_state = 3}, - [497] = {.lex_state = 153, .external_lex_state = 3}, - [498] = {.lex_state = 153, .external_lex_state = 3}, - [499] = {.lex_state = 153, .external_lex_state = 3}, - [500] = {.lex_state = 153, .external_lex_state = 3}, - [501] = {.lex_state = 153, .external_lex_state = 3}, - [502] = {.lex_state = 153, .external_lex_state = 3}, - [503] = {.lex_state = 153, .external_lex_state = 3}, - [504] = {.lex_state = 153, .external_lex_state = 3}, - [505] = {.lex_state = 153, .external_lex_state = 3}, - [506] = {.lex_state = 153, .external_lex_state = 3}, - [507] = {.lex_state = 153, .external_lex_state = 3}, - [508] = {.lex_state = 153, .external_lex_state = 3}, - [509] = {.lex_state = 153, .external_lex_state = 3}, - [510] = {.lex_state = 153, .external_lex_state = 3}, - [511] = {.lex_state = 153, .external_lex_state = 3}, - [512] = {.lex_state = 153, .external_lex_state = 3}, - [513] = {.lex_state = 153, .external_lex_state = 3}, - [514] = {.lex_state = 153, .external_lex_state = 3}, - [515] = {.lex_state = 153, .external_lex_state = 3}, - [516] = {.lex_state = 153, .external_lex_state = 3}, - [517] = {.lex_state = 153, .external_lex_state = 3}, - [518] = {.lex_state = 153, .external_lex_state = 3}, - [519] = {.lex_state = 153, .external_lex_state = 3}, - [520] = {.lex_state = 153, .external_lex_state = 3}, - [521] = {.lex_state = 153, .external_lex_state = 3}, - [522] = {.lex_state = 153, .external_lex_state = 3}, - [523] = {.lex_state = 153, .external_lex_state = 3}, - [524] = {.lex_state = 153, .external_lex_state = 3}, - [525] = {.lex_state = 153, .external_lex_state = 3}, - [526] = {.lex_state = 153, .external_lex_state = 3}, - [527] = {.lex_state = 153, .external_lex_state = 3}, - [528] = {.lex_state = 153, .external_lex_state = 3}, - [529] = {.lex_state = 153, .external_lex_state = 3}, - [530] = {.lex_state = 153, .external_lex_state = 3}, - [531] = {.lex_state = 153, .external_lex_state = 3}, - [532] = {.lex_state = 153, .external_lex_state = 3}, - [533] = {.lex_state = 153, .external_lex_state = 3}, - [534] = {.lex_state = 153, .external_lex_state = 3}, - [535] = {.lex_state = 153, .external_lex_state = 3}, - [536] = {.lex_state = 153, .external_lex_state = 3}, - [537] = {.lex_state = 153, .external_lex_state = 3}, - [538] = {.lex_state = 153, .external_lex_state = 3}, - [539] = {.lex_state = 153, .external_lex_state = 3}, - [540] = {.lex_state = 153, .external_lex_state = 3}, - [541] = {.lex_state = 153, .external_lex_state = 3}, - [542] = {.lex_state = 153, .external_lex_state = 3}, - [543] = {.lex_state = 153, .external_lex_state = 3}, - [544] = {.lex_state = 153, .external_lex_state = 3}, - [545] = {.lex_state = 153, .external_lex_state = 3}, - [546] = {.lex_state = 153, .external_lex_state = 3}, - [547] = {.lex_state = 153, .external_lex_state = 3}, - [548] = {.lex_state = 153, .external_lex_state = 3}, - [549] = {.lex_state = 153, .external_lex_state = 3}, - [550] = {.lex_state = 153, .external_lex_state = 3}, - [551] = {.lex_state = 153, .external_lex_state = 3}, - [552] = {.lex_state = 153, .external_lex_state = 3}, - [553] = {.lex_state = 153, .external_lex_state = 3}, - [554] = {.lex_state = 153, .external_lex_state = 3}, - [555] = {.lex_state = 153, .external_lex_state = 3}, - [556] = {.lex_state = 153, .external_lex_state = 3}, - [557] = {.lex_state = 153, .external_lex_state = 3}, - [558] = {.lex_state = 153, .external_lex_state = 3}, - [559] = {.lex_state = 153, .external_lex_state = 3}, - [560] = {.lex_state = 153, .external_lex_state = 3}, - [561] = {.lex_state = 153, .external_lex_state = 3}, - [562] = {.lex_state = 153, .external_lex_state = 3}, - [563] = {.lex_state = 153, .external_lex_state = 3}, - [564] = {.lex_state = 153, .external_lex_state = 3}, - [565] = {.lex_state = 153, .external_lex_state = 3}, - [566] = {.lex_state = 153, .external_lex_state = 3}, - [567] = {.lex_state = 153, .external_lex_state = 3}, - [568] = {.lex_state = 153, .external_lex_state = 3}, - [569] = {.lex_state = 153, .external_lex_state = 3}, - [570] = {.lex_state = 153, .external_lex_state = 3}, - [571] = {.lex_state = 153, .external_lex_state = 3}, - [572] = {.lex_state = 153, .external_lex_state = 3}, - [573] = {.lex_state = 153, .external_lex_state = 3}, - [574] = {.lex_state = 4, .external_lex_state = 2}, - [575] = {.lex_state = 153, .external_lex_state = 3}, - [576] = {.lex_state = 152, .external_lex_state = 3}, - [577] = {.lex_state = 152, .external_lex_state = 3}, - [578] = {.lex_state = 5, .external_lex_state = 2}, - [579] = {.lex_state = 153, .external_lex_state = 3}, - [580] = {.lex_state = 153, .external_lex_state = 3}, - [581] = {.lex_state = 153, .external_lex_state = 3}, - [582] = {.lex_state = 153, .external_lex_state = 3}, - [583] = {.lex_state = 153, .external_lex_state = 3}, - [584] = {.lex_state = 153, .external_lex_state = 3}, - [585] = {.lex_state = 153, .external_lex_state = 3}, - [586] = {.lex_state = 153, .external_lex_state = 3}, - [587] = {.lex_state = 153, .external_lex_state = 3}, - [588] = {.lex_state = 153, .external_lex_state = 3}, - [589] = {.lex_state = 153, .external_lex_state = 3}, - [590] = {.lex_state = 153, .external_lex_state = 3}, - [591] = {.lex_state = 153, .external_lex_state = 3}, - [592] = {.lex_state = 153, .external_lex_state = 3}, - [593] = {.lex_state = 153, .external_lex_state = 3}, - [594] = {.lex_state = 153, .external_lex_state = 3}, - [595] = {.lex_state = 321, .external_lex_state = 4}, - [596] = {.lex_state = 321, .external_lex_state = 4}, - [597] = {.lex_state = 5, .external_lex_state = 2}, - [598] = {.lex_state = 321, .external_lex_state = 4}, - [599] = {.lex_state = 321, .external_lex_state = 4}, - [600] = {.lex_state = 321, .external_lex_state = 4}, - [601] = {.lex_state = 9, .external_lex_state = 2}, - [602] = {.lex_state = 7, .external_lex_state = 2}, - [603] = {.lex_state = 7, .external_lex_state = 2}, - [604] = {.lex_state = 8, .external_lex_state = 2}, - [605] = {.lex_state = 322, .external_lex_state = 4}, - [606] = {.lex_state = 8, .external_lex_state = 2}, - [607] = {.lex_state = 322, .external_lex_state = 4}, - [608] = {.lex_state = 7, .external_lex_state = 2}, - [609] = {.lex_state = 8, .external_lex_state = 2}, - [610] = {.lex_state = 9, .external_lex_state = 2}, - [611] = {.lex_state = 6, .external_lex_state = 2}, - [612] = {.lex_state = 19, .external_lex_state = 2}, - [613] = {.lex_state = 320, .external_lex_state = 5}, - [614] = {.lex_state = 19, .external_lex_state = 2}, - [615] = {.lex_state = 8, .external_lex_state = 2}, - [616] = {.lex_state = 8, .external_lex_state = 2}, - [617] = {.lex_state = 9, .external_lex_state = 2}, - [618] = {.lex_state = 320, .external_lex_state = 5}, - [619] = {.lex_state = 320, .external_lex_state = 5}, - [620] = {.lex_state = 320, .external_lex_state = 5}, - [621] = {.lex_state = 320, .external_lex_state = 5}, - [622] = {.lex_state = 320, .external_lex_state = 5}, - [623] = {.lex_state = 7, .external_lex_state = 2}, - [624] = {.lex_state = 13, .external_lex_state = 4}, - [625] = {.lex_state = 13, .external_lex_state = 4}, - [626] = {.lex_state = 7, .external_lex_state = 2}, - [627] = {.lex_state = 6, .external_lex_state = 2}, - [628] = {.lex_state = 6, .external_lex_state = 2}, - [629] = {.lex_state = 6, .external_lex_state = 2}, - [630] = {.lex_state = 6, .external_lex_state = 2}, - [631] = {.lex_state = 6, .external_lex_state = 2}, - [632] = {.lex_state = 13, .external_lex_state = 4}, - [633] = {.lex_state = 8, .external_lex_state = 2}, - [634] = {.lex_state = 322, .external_lex_state = 4}, - [635] = {.lex_state = 320, .external_lex_state = 5}, - [636] = {.lex_state = 12, .external_lex_state = 4}, - [637] = {.lex_state = 322, .external_lex_state = 4}, - [638] = {.lex_state = 12, .external_lex_state = 4}, - [639] = {.lex_state = 9, .external_lex_state = 2}, - [640] = {.lex_state = 9, .external_lex_state = 2}, - [641] = {.lex_state = 8, .external_lex_state = 2}, - [642] = {.lex_state = 7, .external_lex_state = 2}, - [643] = {.lex_state = 12, .external_lex_state = 4}, + [242] = {.lex_state = 9, .external_lex_state = 2}, + [243] = {.lex_state = 9, .external_lex_state = 2}, + [244] = {.lex_state = 9, .external_lex_state = 2}, + [245] = {.lex_state = 323, .external_lex_state = 2}, + [246] = {.lex_state = 323, .external_lex_state = 2}, + [247] = {.lex_state = 323, .external_lex_state = 2}, + [248] = {.lex_state = 323, .external_lex_state = 2}, + [249] = {.lex_state = 323, .external_lex_state = 2}, + [250] = {.lex_state = 323, .external_lex_state = 2}, + [251] = {.lex_state = 323, .external_lex_state = 2}, + [252] = {.lex_state = 323, .external_lex_state = 2}, + [253] = {.lex_state = 323, .external_lex_state = 2}, + [254] = {.lex_state = 323, .external_lex_state = 2}, + [255] = {.lex_state = 323, .external_lex_state = 2}, + [256] = {.lex_state = 323, .external_lex_state = 2}, + [257] = {.lex_state = 323, .external_lex_state = 2}, + [258] = {.lex_state = 323, .external_lex_state = 2}, + [259] = {.lex_state = 323, .external_lex_state = 2}, + [260] = {.lex_state = 323, .external_lex_state = 2}, + [261] = {.lex_state = 323, .external_lex_state = 2}, + [262] = {.lex_state = 323, .external_lex_state = 2}, + [263] = {.lex_state = 323, .external_lex_state = 2}, + [264] = {.lex_state = 323, .external_lex_state = 2}, + [265] = {.lex_state = 323, .external_lex_state = 2}, + [266] = {.lex_state = 323, .external_lex_state = 2}, + [267] = {.lex_state = 323, .external_lex_state = 2}, + [268] = {.lex_state = 323, .external_lex_state = 2}, + [269] = {.lex_state = 323, .external_lex_state = 2}, + [270] = {.lex_state = 323, .external_lex_state = 2}, + [271] = {.lex_state = 323, .external_lex_state = 2}, + [272] = {.lex_state = 323, .external_lex_state = 2}, + [273] = {.lex_state = 323, .external_lex_state = 2}, + [274] = {.lex_state = 323, .external_lex_state = 2}, + [275] = {.lex_state = 323, .external_lex_state = 2}, + [276] = {.lex_state = 323, .external_lex_state = 2}, + [277] = {.lex_state = 323, .external_lex_state = 2}, + [278] = {.lex_state = 323, .external_lex_state = 2}, + [279] = {.lex_state = 323, .external_lex_state = 2}, + [280] = {.lex_state = 323, .external_lex_state = 2}, + [281] = {.lex_state = 323, .external_lex_state = 2}, + [282] = {.lex_state = 323, .external_lex_state = 2}, + [283] = {.lex_state = 323, .external_lex_state = 2}, + [284] = {.lex_state = 323, .external_lex_state = 2}, + [285] = {.lex_state = 323, .external_lex_state = 2}, + [286] = {.lex_state = 323, .external_lex_state = 2}, + [287] = {.lex_state = 323, .external_lex_state = 2}, + [288] = {.lex_state = 323, .external_lex_state = 2}, + [289] = {.lex_state = 323, .external_lex_state = 2}, + [290] = {.lex_state = 323, .external_lex_state = 2}, + [291] = {.lex_state = 323, .external_lex_state = 2}, + [292] = {.lex_state = 323, .external_lex_state = 2}, + [293] = {.lex_state = 323, .external_lex_state = 2}, + [294] = {.lex_state = 323, .external_lex_state = 2}, + [295] = {.lex_state = 323, .external_lex_state = 2}, + [296] = {.lex_state = 323, .external_lex_state = 2}, + [297] = {.lex_state = 323, .external_lex_state = 2}, + [298] = {.lex_state = 323, .external_lex_state = 2}, + [299] = {.lex_state = 323, .external_lex_state = 2}, + [300] = {.lex_state = 323, .external_lex_state = 2}, + [301] = {.lex_state = 323, .external_lex_state = 2}, + [302] = {.lex_state = 323, .external_lex_state = 2}, + [303] = {.lex_state = 323, .external_lex_state = 2}, + [304] = {.lex_state = 323, .external_lex_state = 2}, + [305] = {.lex_state = 323, .external_lex_state = 2}, + [306] = {.lex_state = 323, .external_lex_state = 2}, + [307] = {.lex_state = 323, .external_lex_state = 2}, + [308] = {.lex_state = 323, .external_lex_state = 2}, + [309] = {.lex_state = 323, .external_lex_state = 3}, + [310] = {.lex_state = 323, .external_lex_state = 3}, + [311] = {.lex_state = 4, .external_lex_state = 3}, + [312] = {.lex_state = 323, .external_lex_state = 3}, + [313] = {.lex_state = 4, .external_lex_state = 3}, + [314] = {.lex_state = 5, .external_lex_state = 3}, + [315] = {.lex_state = 323, .external_lex_state = 2}, + [316] = {.lex_state = 323, .external_lex_state = 2}, + [317] = {.lex_state = 5, .external_lex_state = 3}, + [318] = {.lex_state = 323, .external_lex_state = 2}, + [319] = {.lex_state = 323, .external_lex_state = 2}, + [320] = {.lex_state = 8, .external_lex_state = 3}, + [321] = {.lex_state = 4, .external_lex_state = 3}, + [322] = {.lex_state = 9, .external_lex_state = 3}, + [323] = {.lex_state = 156, .external_lex_state = 4}, + [324] = {.lex_state = 6, .external_lex_state = 3}, + [325] = {.lex_state = 7, .external_lex_state = 3}, + [326] = {.lex_state = 323, .external_lex_state = 5}, + [327] = {.lex_state = 9, .external_lex_state = 3}, + [328] = {.lex_state = 6, .external_lex_state = 3}, + [329] = {.lex_state = 323, .external_lex_state = 2}, + [330] = {.lex_state = 4, .external_lex_state = 2}, + [331] = {.lex_state = 7, .external_lex_state = 3}, + [332] = {.lex_state = 323, .external_lex_state = 2}, + [333] = {.lex_state = 4, .external_lex_state = 2}, + [334] = {.lex_state = 323, .external_lex_state = 5}, + [335] = {.lex_state = 323, .external_lex_state = 2}, + [336] = {.lex_state = 4, .external_lex_state = 2}, + [337] = {.lex_state = 5, .external_lex_state = 3}, + [338] = {.lex_state = 8, .external_lex_state = 3}, + [339] = {.lex_state = 4, .external_lex_state = 2}, + [340] = {.lex_state = 5, .external_lex_state = 2}, + [341] = {.lex_state = 156, .external_lex_state = 4}, + [342] = {.lex_state = 324, .external_lex_state = 6}, + [343] = {.lex_state = 324, .external_lex_state = 6}, + [344] = {.lex_state = 5, .external_lex_state = 2}, + [345] = {.lex_state = 324, .external_lex_state = 6}, + [346] = {.lex_state = 324, .external_lex_state = 6}, + [347] = {.lex_state = 324, .external_lex_state = 6}, + [348] = {.lex_state = 156, .external_lex_state = 4}, + [349] = {.lex_state = 156, .external_lex_state = 4}, + [350] = {.lex_state = 156, .external_lex_state = 4}, + [351] = {.lex_state = 155, .external_lex_state = 4}, + [352] = {.lex_state = 156, .external_lex_state = 4}, + [353] = {.lex_state = 156, .external_lex_state = 4}, + [354] = {.lex_state = 156, .external_lex_state = 4}, + [355] = {.lex_state = 155, .external_lex_state = 4}, + [356] = {.lex_state = 156, .external_lex_state = 4}, + [357] = {.lex_state = 156, .external_lex_state = 4}, + [358] = {.lex_state = 156, .external_lex_state = 4}, + [359] = {.lex_state = 156, .external_lex_state = 4}, + [360] = {.lex_state = 156, .external_lex_state = 4}, + [361] = {.lex_state = 156, .external_lex_state = 4}, + [362] = {.lex_state = 156, .external_lex_state = 4}, + [363] = {.lex_state = 156, .external_lex_state = 4}, + [364] = {.lex_state = 156, .external_lex_state = 4}, + [365] = {.lex_state = 156, .external_lex_state = 4}, + [366] = {.lex_state = 156, .external_lex_state = 4}, + [367] = {.lex_state = 156, .external_lex_state = 4}, + [368] = {.lex_state = 156, .external_lex_state = 4}, + [369] = {.lex_state = 156, .external_lex_state = 4}, + [370] = {.lex_state = 156, .external_lex_state = 4}, + [371] = {.lex_state = 156, .external_lex_state = 4}, + [372] = {.lex_state = 156, .external_lex_state = 4}, + [373] = {.lex_state = 156, .external_lex_state = 4}, + [374] = {.lex_state = 156, .external_lex_state = 4}, + [375] = {.lex_state = 156, .external_lex_state = 4}, + [376] = {.lex_state = 156, .external_lex_state = 4}, + [377] = {.lex_state = 156, .external_lex_state = 4}, + [378] = {.lex_state = 156, .external_lex_state = 4}, + [379] = {.lex_state = 156, .external_lex_state = 4}, + [380] = {.lex_state = 156, .external_lex_state = 4}, + [381] = {.lex_state = 156, .external_lex_state = 4}, + [382] = {.lex_state = 156, .external_lex_state = 4}, + [383] = {.lex_state = 156, .external_lex_state = 4}, + [384] = {.lex_state = 156, .external_lex_state = 4}, + [385] = {.lex_state = 156, .external_lex_state = 4}, + [386] = {.lex_state = 156, .external_lex_state = 4}, + [387] = {.lex_state = 156, .external_lex_state = 4}, + [388] = {.lex_state = 156, .external_lex_state = 4}, + [389] = {.lex_state = 156, .external_lex_state = 4}, + [390] = {.lex_state = 156, .external_lex_state = 4}, + [391] = {.lex_state = 156, .external_lex_state = 4}, + [392] = {.lex_state = 156, .external_lex_state = 4}, + [393] = {.lex_state = 156, .external_lex_state = 4}, + [394] = {.lex_state = 156, .external_lex_state = 4}, + [395] = {.lex_state = 156, .external_lex_state = 4}, + [396] = {.lex_state = 156, .external_lex_state = 4}, + [397] = {.lex_state = 156, .external_lex_state = 4}, + [398] = {.lex_state = 156, .external_lex_state = 4}, + [399] = {.lex_state = 156, .external_lex_state = 4}, + [400] = {.lex_state = 156, .external_lex_state = 4}, + [401] = {.lex_state = 156, .external_lex_state = 4}, + [402] = {.lex_state = 156, .external_lex_state = 4}, + [403] = {.lex_state = 156, .external_lex_state = 4}, + [404] = {.lex_state = 156, .external_lex_state = 4}, + [405] = {.lex_state = 156, .external_lex_state = 4}, + [406] = {.lex_state = 156, .external_lex_state = 4}, + [407] = {.lex_state = 156, .external_lex_state = 4}, + [408] = {.lex_state = 156, .external_lex_state = 4}, + [409] = {.lex_state = 156, .external_lex_state = 4}, + [410] = {.lex_state = 156, .external_lex_state = 4}, + [411] = {.lex_state = 156, .external_lex_state = 4}, + [412] = {.lex_state = 156, .external_lex_state = 4}, + [413] = {.lex_state = 156, .external_lex_state = 4}, + [414] = {.lex_state = 156, .external_lex_state = 4}, + [415] = {.lex_state = 156, .external_lex_state = 4}, + [416] = {.lex_state = 156, .external_lex_state = 4}, + [417] = {.lex_state = 156, .external_lex_state = 4}, + [418] = {.lex_state = 156, .external_lex_state = 4}, + [419] = {.lex_state = 156, .external_lex_state = 4}, + [420] = {.lex_state = 156, .external_lex_state = 4}, + [421] = {.lex_state = 156, .external_lex_state = 4}, + [422] = {.lex_state = 156, .external_lex_state = 4}, + [423] = {.lex_state = 156, .external_lex_state = 4}, + [424] = {.lex_state = 156, .external_lex_state = 4}, + [425] = {.lex_state = 156, .external_lex_state = 4}, + [426] = {.lex_state = 156, .external_lex_state = 4}, + [427] = {.lex_state = 156, .external_lex_state = 4}, + [428] = {.lex_state = 156, .external_lex_state = 4}, + [429] = {.lex_state = 156, .external_lex_state = 4}, + [430] = {.lex_state = 156, .external_lex_state = 4}, + [431] = {.lex_state = 156, .external_lex_state = 4}, + [432] = {.lex_state = 156, .external_lex_state = 4}, + [433] = {.lex_state = 156, .external_lex_state = 4}, + [434] = {.lex_state = 156, .external_lex_state = 4}, + [435] = {.lex_state = 156, .external_lex_state = 4}, + [436] = {.lex_state = 156, .external_lex_state = 4}, + [437] = {.lex_state = 156, .external_lex_state = 4}, + [438] = {.lex_state = 156, .external_lex_state = 4}, + [439] = {.lex_state = 156, .external_lex_state = 4}, + [440] = {.lex_state = 156, .external_lex_state = 4}, + [441] = {.lex_state = 156, .external_lex_state = 4}, + [442] = {.lex_state = 156, .external_lex_state = 4}, + [443] = {.lex_state = 156, .external_lex_state = 4}, + [444] = {.lex_state = 156, .external_lex_state = 4}, + [445] = {.lex_state = 156, .external_lex_state = 4}, + [446] = {.lex_state = 156, .external_lex_state = 4}, + [447] = {.lex_state = 156, .external_lex_state = 4}, + [448] = {.lex_state = 156, .external_lex_state = 4}, + [449] = {.lex_state = 156, .external_lex_state = 4}, + [450] = {.lex_state = 156, .external_lex_state = 4}, + [451] = {.lex_state = 156, .external_lex_state = 4}, + [452] = {.lex_state = 156, .external_lex_state = 4}, + [453] = {.lex_state = 156, .external_lex_state = 4}, + [454] = {.lex_state = 156, .external_lex_state = 4}, + [455] = {.lex_state = 156, .external_lex_state = 4}, + [456] = {.lex_state = 156, .external_lex_state = 4}, + [457] = {.lex_state = 156, .external_lex_state = 4}, + [458] = {.lex_state = 156, .external_lex_state = 4}, + [459] = {.lex_state = 156, .external_lex_state = 4}, + [460] = {.lex_state = 156, .external_lex_state = 4}, + [461] = {.lex_state = 156, .external_lex_state = 4}, + [462] = {.lex_state = 156, .external_lex_state = 4}, + [463] = {.lex_state = 156, .external_lex_state = 4}, + [464] = {.lex_state = 156, .external_lex_state = 4}, + [465] = {.lex_state = 156, .external_lex_state = 4}, + [466] = {.lex_state = 156, .external_lex_state = 4}, + [467] = {.lex_state = 156, .external_lex_state = 4}, + [468] = {.lex_state = 156, .external_lex_state = 4}, + [469] = {.lex_state = 156, .external_lex_state = 4}, + [470] = {.lex_state = 156, .external_lex_state = 4}, + [471] = {.lex_state = 156, .external_lex_state = 4}, + [472] = {.lex_state = 156, .external_lex_state = 4}, + [473] = {.lex_state = 156, .external_lex_state = 4}, + [474] = {.lex_state = 156, .external_lex_state = 4}, + [475] = {.lex_state = 156, .external_lex_state = 4}, + [476] = {.lex_state = 156, .external_lex_state = 4}, + [477] = {.lex_state = 156, .external_lex_state = 4}, + [478] = {.lex_state = 156, .external_lex_state = 4}, + [479] = {.lex_state = 156, .external_lex_state = 4}, + [480] = {.lex_state = 156, .external_lex_state = 4}, + [481] = {.lex_state = 156, .external_lex_state = 4}, + [482] = {.lex_state = 156, .external_lex_state = 4}, + [483] = {.lex_state = 156, .external_lex_state = 4}, + [484] = {.lex_state = 156, .external_lex_state = 4}, + [485] = {.lex_state = 156, .external_lex_state = 4}, + [486] = {.lex_state = 156, .external_lex_state = 4}, + [487] = {.lex_state = 156, .external_lex_state = 4}, + [488] = {.lex_state = 156, .external_lex_state = 4}, + [489] = {.lex_state = 156, .external_lex_state = 4}, + [490] = {.lex_state = 156, .external_lex_state = 4}, + [491] = {.lex_state = 156, .external_lex_state = 4}, + [492] = {.lex_state = 156, .external_lex_state = 4}, + [493] = {.lex_state = 5, .external_lex_state = 2}, + [494] = {.lex_state = 156, .external_lex_state = 4}, + [495] = {.lex_state = 156, .external_lex_state = 4}, + [496] = {.lex_state = 156, .external_lex_state = 4}, + [497] = {.lex_state = 156, .external_lex_state = 4}, + [498] = {.lex_state = 156, .external_lex_state = 4}, + [499] = {.lex_state = 156, .external_lex_state = 4}, + [500] = {.lex_state = 156, .external_lex_state = 4}, + [501] = {.lex_state = 156, .external_lex_state = 4}, + [502] = {.lex_state = 156, .external_lex_state = 4}, + [503] = {.lex_state = 156, .external_lex_state = 4}, + [504] = {.lex_state = 156, .external_lex_state = 4}, + [505] = {.lex_state = 156, .external_lex_state = 4}, + [506] = {.lex_state = 156, .external_lex_state = 4}, + [507] = {.lex_state = 156, .external_lex_state = 4}, + [508] = {.lex_state = 156, .external_lex_state = 4}, + [509] = {.lex_state = 156, .external_lex_state = 4}, + [510] = {.lex_state = 156, .external_lex_state = 4}, + [511] = {.lex_state = 156, .external_lex_state = 4}, + [512] = {.lex_state = 156, .external_lex_state = 4}, + [513] = {.lex_state = 156, .external_lex_state = 4}, + [514] = {.lex_state = 156, .external_lex_state = 4}, + [515] = {.lex_state = 156, .external_lex_state = 4}, + [516] = {.lex_state = 156, .external_lex_state = 4}, + [517] = {.lex_state = 156, .external_lex_state = 4}, + [518] = {.lex_state = 156, .external_lex_state = 4}, + [519] = {.lex_state = 156, .external_lex_state = 4}, + [520] = {.lex_state = 156, .external_lex_state = 4}, + [521] = {.lex_state = 156, .external_lex_state = 4}, + [522] = {.lex_state = 156, .external_lex_state = 4}, + [523] = {.lex_state = 156, .external_lex_state = 4}, + [524] = {.lex_state = 156, .external_lex_state = 4}, + [525] = {.lex_state = 156, .external_lex_state = 4}, + [526] = {.lex_state = 156, .external_lex_state = 4}, + [527] = {.lex_state = 156, .external_lex_state = 4}, + [528] = {.lex_state = 156, .external_lex_state = 4}, + [529] = {.lex_state = 156, .external_lex_state = 4}, + [530] = {.lex_state = 156, .external_lex_state = 4}, + [531] = {.lex_state = 156, .external_lex_state = 4}, + [532] = {.lex_state = 156, .external_lex_state = 4}, + [533] = {.lex_state = 156, .external_lex_state = 4}, + [534] = {.lex_state = 156, .external_lex_state = 4}, + [535] = {.lex_state = 156, .external_lex_state = 4}, + [536] = {.lex_state = 156, .external_lex_state = 4}, + [537] = {.lex_state = 156, .external_lex_state = 4}, + [538] = {.lex_state = 156, .external_lex_state = 4}, + [539] = {.lex_state = 156, .external_lex_state = 4}, + [540] = {.lex_state = 156, .external_lex_state = 4}, + [541] = {.lex_state = 156, .external_lex_state = 4}, + [542] = {.lex_state = 156, .external_lex_state = 4}, + [543] = {.lex_state = 156, .external_lex_state = 4}, + [544] = {.lex_state = 156, .external_lex_state = 4}, + [545] = {.lex_state = 156, .external_lex_state = 4}, + [546] = {.lex_state = 156, .external_lex_state = 4}, + [547] = {.lex_state = 156, .external_lex_state = 4}, + [548] = {.lex_state = 156, .external_lex_state = 4}, + [549] = {.lex_state = 156, .external_lex_state = 4}, + [550] = {.lex_state = 156, .external_lex_state = 4}, + [551] = {.lex_state = 156, .external_lex_state = 4}, + [552] = {.lex_state = 5, .external_lex_state = 2}, + [553] = {.lex_state = 156, .external_lex_state = 4}, + [554] = {.lex_state = 156, .external_lex_state = 4}, + [555] = {.lex_state = 156, .external_lex_state = 4}, + [556] = {.lex_state = 156, .external_lex_state = 4}, + [557] = {.lex_state = 156, .external_lex_state = 4}, + [558] = {.lex_state = 156, .external_lex_state = 4}, + [559] = {.lex_state = 156, .external_lex_state = 4}, + [560] = {.lex_state = 156, .external_lex_state = 4}, + [561] = {.lex_state = 156, .external_lex_state = 4}, + [562] = {.lex_state = 156, .external_lex_state = 4}, + [563] = {.lex_state = 156, .external_lex_state = 4}, + [564] = {.lex_state = 156, .external_lex_state = 4}, + [565] = {.lex_state = 156, .external_lex_state = 4}, + [566] = {.lex_state = 156, .external_lex_state = 4}, + [567] = {.lex_state = 156, .external_lex_state = 4}, + [568] = {.lex_state = 156, .external_lex_state = 4}, + [569] = {.lex_state = 156, .external_lex_state = 4}, + [570] = {.lex_state = 156, .external_lex_state = 4}, + [571] = {.lex_state = 156, .external_lex_state = 4}, + [572] = {.lex_state = 156, .external_lex_state = 4}, + [573] = {.lex_state = 156, .external_lex_state = 4}, + [574] = {.lex_state = 156, .external_lex_state = 4}, + [575] = {.lex_state = 156, .external_lex_state = 4}, + [576] = {.lex_state = 156, .external_lex_state = 4}, + [577] = {.lex_state = 156, .external_lex_state = 4}, + [578] = {.lex_state = 156, .external_lex_state = 4}, + [579] = {.lex_state = 156, .external_lex_state = 4}, + [580] = {.lex_state = 156, .external_lex_state = 4}, + [581] = {.lex_state = 156, .external_lex_state = 4}, + [582] = {.lex_state = 156, .external_lex_state = 4}, + [583] = {.lex_state = 156, .external_lex_state = 4}, + [584] = {.lex_state = 156, .external_lex_state = 4}, + [585] = {.lex_state = 156, .external_lex_state = 4}, + [586] = {.lex_state = 156, .external_lex_state = 4}, + [587] = {.lex_state = 156, .external_lex_state = 4}, + [588] = {.lex_state = 156, .external_lex_state = 4}, + [589] = {.lex_state = 156, .external_lex_state = 4}, + [590] = {.lex_state = 156, .external_lex_state = 4}, + [591] = {.lex_state = 156, .external_lex_state = 4}, + [592] = {.lex_state = 156, .external_lex_state = 4}, + [593] = {.lex_state = 156, .external_lex_state = 4}, + [594] = {.lex_state = 156, .external_lex_state = 4}, + [595] = {.lex_state = 156, .external_lex_state = 4}, + [596] = {.lex_state = 155, .external_lex_state = 4}, + [597] = {.lex_state = 155, .external_lex_state = 4}, + [598] = {.lex_state = 156, .external_lex_state = 4}, + [599] = {.lex_state = 156, .external_lex_state = 4}, + [600] = {.lex_state = 156, .external_lex_state = 4}, + [601] = {.lex_state = 156, .external_lex_state = 4}, + [602] = {.lex_state = 156, .external_lex_state = 4}, + [603] = {.lex_state = 155, .external_lex_state = 4}, + [604] = {.lex_state = 156, .external_lex_state = 4}, + [605] = {.lex_state = 156, .external_lex_state = 4}, + [606] = {.lex_state = 156, .external_lex_state = 4}, + [607] = {.lex_state = 156, .external_lex_state = 4}, + [608] = {.lex_state = 156, .external_lex_state = 4}, + [609] = {.lex_state = 156, .external_lex_state = 4}, + [610] = {.lex_state = 156, .external_lex_state = 4}, + [611] = {.lex_state = 156, .external_lex_state = 4}, + [612] = {.lex_state = 156, .external_lex_state = 4}, + [613] = {.lex_state = 156, .external_lex_state = 4}, + [614] = {.lex_state = 156, .external_lex_state = 4}, + [615] = {.lex_state = 156, .external_lex_state = 4}, + [616] = {.lex_state = 156, .external_lex_state = 4}, + [617] = {.lex_state = 156, .external_lex_state = 4}, + [618] = {.lex_state = 13, .external_lex_state = 6}, + [619] = {.lex_state = 12, .external_lex_state = 6}, + [620] = {.lex_state = 325, .external_lex_state = 6}, + [621] = {.lex_state = 12, .external_lex_state = 6}, + [622] = {.lex_state = 12, .external_lex_state = 6}, + [623] = {.lex_state = 325, .external_lex_state = 6}, + [624] = {.lex_state = 12, .external_lex_state = 6}, + [625] = {.lex_state = 12, .external_lex_state = 6}, + [626] = {.lex_state = 13, .external_lex_state = 6}, + [627] = {.lex_state = 4, .external_lex_state = 2}, + [628] = {.lex_state = 325, .external_lex_state = 6}, + [629] = {.lex_state = 13, .external_lex_state = 6}, + [630] = {.lex_state = 323, .external_lex_state = 5}, + [631] = {.lex_state = 8, .external_lex_state = 3}, + [632] = {.lex_state = 7, .external_lex_state = 3}, + [633] = {.lex_state = 20, .external_lex_state = 7}, + [634] = {.lex_state = 6, .external_lex_state = 3}, + [635] = {.lex_state = 9, .external_lex_state = 3}, + [636] = {.lex_state = 20, .external_lex_state = 7}, + [637] = {.lex_state = 325, .external_lex_state = 6}, + [638] = {.lex_state = 4, .external_lex_state = 2}, + [639] = {.lex_state = 13, .external_lex_state = 6}, + [640] = {.lex_state = 20, .external_lex_state = 7}, + [641] = {.lex_state = 13, .external_lex_state = 6}, + [642] = {.lex_state = 4, .external_lex_state = 2}, + [643] = {.lex_state = 325, .external_lex_state = 6}, [644] = {.lex_state = 9, .external_lex_state = 2}, - [645] = {.lex_state = 322, .external_lex_state = 4}, - [646] = {.lex_state = 12, .external_lex_state = 4}, - [647] = {.lex_state = 9, .external_lex_state = 2}, - [648] = {.lex_state = 7, .external_lex_state = 2}, - [649] = {.lex_state = 6, .external_lex_state = 2}, - [650] = {.lex_state = 13, .external_lex_state = 4}, - [651] = {.lex_state = 12, .external_lex_state = 4}, - [652] = {.lex_state = 13, .external_lex_state = 4}, - [653] = {.lex_state = 19, .external_lex_state = 2}, - [654] = {.lex_state = 323, .external_lex_state = 2}, - [655] = {.lex_state = 8, .external_lex_state = 2}, - [656] = {.lex_state = 21, .external_lex_state = 2}, - [657] = {.lex_state = 7, .external_lex_state = 2}, - [658] = {.lex_state = 21, .external_lex_state = 2}, - [659] = {.lex_state = 323, .external_lex_state = 2}, - [660] = {.lex_state = 9, .external_lex_state = 2}, - [661] = {.lex_state = 323, .external_lex_state = 2}, - [662] = {.lex_state = 20, .external_lex_state = 2}, - [663] = {.lex_state = 21, .external_lex_state = 2}, - [664] = {.lex_state = 20, .external_lex_state = 2}, - [665] = {.lex_state = 6, .external_lex_state = 2}, - [666] = {.lex_state = 20, .external_lex_state = 2}, - [667] = {.lex_state = 320, .external_lex_state = 2}, - [668] = {.lex_state = 320, .external_lex_state = 2}, - [669] = {.lex_state = 320, .external_lex_state = 5}, - [670] = {.lex_state = 14, .external_lex_state = 4}, - [671] = {.lex_state = 15, .external_lex_state = 4}, - [672] = {.lex_state = 14, .external_lex_state = 4}, - [673] = {.lex_state = 16, .external_lex_state = 4}, - [674] = {.lex_state = 16, .external_lex_state = 4}, - [675] = {.lex_state = 19, .external_lex_state = 4}, - [676] = {.lex_state = 19, .external_lex_state = 4}, - [677] = {.lex_state = 19, .external_lex_state = 4}, - [678] = {.lex_state = 14, .external_lex_state = 4}, - [679] = {.lex_state = 15, .external_lex_state = 4}, - [680] = {.lex_state = 17, .external_lex_state = 4}, - [681] = {.lex_state = 16, .external_lex_state = 4}, - [682] = {.lex_state = 17, .external_lex_state = 4}, - [683] = {.lex_state = 17, .external_lex_state = 4}, - [684] = {.lex_state = 17, .external_lex_state = 4}, - [685] = {.lex_state = 15, .external_lex_state = 4}, - [686] = {.lex_state = 17, .external_lex_state = 4}, - [687] = {.lex_state = 19, .external_lex_state = 2}, - [688] = {.lex_state = 19, .external_lex_state = 2}, - [689] = {.lex_state = 14, .external_lex_state = 4}, - [690] = {.lex_state = 322, .external_lex_state = 6}, - [691] = {.lex_state = 14, .external_lex_state = 4}, - [692] = {.lex_state = 16, .external_lex_state = 4}, - [693] = {.lex_state = 322, .external_lex_state = 6}, - [694] = {.lex_state = 322, .external_lex_state = 6}, - [695] = {.lex_state = 322, .external_lex_state = 6}, - [696] = {.lex_state = 322, .external_lex_state = 6}, - [697] = {.lex_state = 15, .external_lex_state = 4}, - [698] = {.lex_state = 16, .external_lex_state = 4}, - [699] = {.lex_state = 15, .external_lex_state = 4}, - [700] = {.lex_state = 146, .external_lex_state = 7}, - [701] = {.lex_state = 146, .external_lex_state = 7}, - [702] = {.lex_state = 323, .external_lex_state = 4}, - [703] = {.lex_state = 20, .external_lex_state = 4}, - [704] = {.lex_state = 146, .external_lex_state = 7}, - [705] = {.lex_state = 20, .external_lex_state = 4}, - [706] = {.lex_state = 20, .external_lex_state = 4}, - [707] = {.lex_state = 146, .external_lex_state = 7}, - [708] = {.lex_state = 146, .external_lex_state = 7}, - [709] = {.lex_state = 146, .external_lex_state = 7}, - [710] = {.lex_state = 146, .external_lex_state = 7}, - [711] = {.lex_state = 21, .external_lex_state = 4}, - [712] = {.lex_state = 146, .external_lex_state = 7}, - [713] = {.lex_state = 22, .external_lex_state = 2}, - [714] = {.lex_state = 146, .external_lex_state = 7}, - [715] = {.lex_state = 21, .external_lex_state = 2}, - [716] = {.lex_state = 146, .external_lex_state = 7}, - [717] = {.lex_state = 146, .external_lex_state = 7}, - [718] = {.lex_state = 146, .external_lex_state = 7}, - [719] = {.lex_state = 146, .external_lex_state = 7}, - [720] = {.lex_state = 23, .external_lex_state = 2}, - [721] = {.lex_state = 146, .external_lex_state = 7}, - [722] = {.lex_state = 146, .external_lex_state = 7}, - [723] = {.lex_state = 146, .external_lex_state = 7}, - [724] = {.lex_state = 146, .external_lex_state = 7}, - [725] = {.lex_state = 146, .external_lex_state = 7}, - [726] = {.lex_state = 146, .external_lex_state = 7}, - [727] = {.lex_state = 22, .external_lex_state = 2}, - [728] = {.lex_state = 146, .external_lex_state = 7}, - [729] = {.lex_state = 146, .external_lex_state = 7}, - [730] = {.lex_state = 146, .external_lex_state = 7}, - [731] = {.lex_state = 146, .external_lex_state = 7}, - [732] = {.lex_state = 146, .external_lex_state = 7}, - [733] = {.lex_state = 146, .external_lex_state = 7}, - [734] = {.lex_state = 323, .external_lex_state = 4}, - [735] = {.lex_state = 146, .external_lex_state = 7}, - [736] = {.lex_state = 146, .external_lex_state = 7}, - [737] = {.lex_state = 21, .external_lex_state = 2}, - [738] = {.lex_state = 146, .external_lex_state = 7}, - [739] = {.lex_state = 146, .external_lex_state = 7}, - [740] = {.lex_state = 24, .external_lex_state = 2}, - [741] = {.lex_state = 146, .external_lex_state = 7}, - [742] = {.lex_state = 146, .external_lex_state = 7}, - [743] = {.lex_state = 146, .external_lex_state = 7}, - [744] = {.lex_state = 23, .external_lex_state = 2}, - [745] = {.lex_state = 146, .external_lex_state = 7}, - [746] = {.lex_state = 146, .external_lex_state = 7}, - [747] = {.lex_state = 146, .external_lex_state = 7}, - [748] = {.lex_state = 146, .external_lex_state = 7}, - [749] = {.lex_state = 146, .external_lex_state = 7}, - [750] = {.lex_state = 146, .external_lex_state = 7}, - [751] = {.lex_state = 146, .external_lex_state = 7}, - [752] = {.lex_state = 22, .external_lex_state = 2}, - [753] = {.lex_state = 146, .external_lex_state = 7}, - [754] = {.lex_state = 146, .external_lex_state = 7}, - [755] = {.lex_state = 146, .external_lex_state = 7}, - [756] = {.lex_state = 146, .external_lex_state = 7}, - [757] = {.lex_state = 146, .external_lex_state = 7}, - [758] = {.lex_state = 146, .external_lex_state = 7}, - [759] = {.lex_state = 146, .external_lex_state = 7}, - [760] = {.lex_state = 146, .external_lex_state = 7}, - [761] = {.lex_state = 146, .external_lex_state = 7}, - [762] = {.lex_state = 146, .external_lex_state = 7}, - [763] = {.lex_state = 24, .external_lex_state = 2}, - [764] = {.lex_state = 146, .external_lex_state = 7}, - [765] = {.lex_state = 24, .external_lex_state = 2}, - [766] = {.lex_state = 146, .external_lex_state = 7}, - [767] = {.lex_state = 146, .external_lex_state = 7}, - [768] = {.lex_state = 146, .external_lex_state = 7}, - [769] = {.lex_state = 146, .external_lex_state = 7}, - [770] = {.lex_state = 146, .external_lex_state = 7}, - [771] = {.lex_state = 146, .external_lex_state = 7}, - [772] = {.lex_state = 146, .external_lex_state = 7}, - [773] = {.lex_state = 20, .external_lex_state = 2}, - [774] = {.lex_state = 146, .external_lex_state = 7}, - [775] = {.lex_state = 146, .external_lex_state = 7}, - [776] = {.lex_state = 146, .external_lex_state = 7}, - [777] = {.lex_state = 20, .external_lex_state = 2}, - [778] = {.lex_state = 146, .external_lex_state = 7}, - [779] = {.lex_state = 323, .external_lex_state = 2}, - [780] = {.lex_state = 146, .external_lex_state = 7}, - [781] = {.lex_state = 146, .external_lex_state = 7}, - [782] = {.lex_state = 323, .external_lex_state = 5}, - [783] = {.lex_state = 146, .external_lex_state = 7}, - [784] = {.lex_state = 146, .external_lex_state = 7}, - [785] = {.lex_state = 323, .external_lex_state = 5}, - [786] = {.lex_state = 146, .external_lex_state = 7}, - [787] = {.lex_state = 146, .external_lex_state = 7}, - [788] = {.lex_state = 146, .external_lex_state = 7}, - [789] = {.lex_state = 323, .external_lex_state = 5}, - [790] = {.lex_state = 146, .external_lex_state = 7}, - [791] = {.lex_state = 21, .external_lex_state = 4}, - [792] = {.lex_state = 323, .external_lex_state = 4}, - [793] = {.lex_state = 323, .external_lex_state = 2}, - [794] = {.lex_state = 25, .external_lex_state = 2}, - [795] = {.lex_state = 21, .external_lex_state = 4}, - [796] = {.lex_state = 25, .external_lex_state = 2}, - [797] = {.lex_state = 146, .external_lex_state = 7}, - [798] = {.lex_state = 146, .external_lex_state = 7}, - [799] = {.lex_state = 23, .external_lex_state = 2}, - [800] = {.lex_state = 25, .external_lex_state = 2}, - [801] = {.lex_state = 146, .external_lex_state = 7}, - [802] = {.lex_state = 323, .external_lex_state = 5}, - [803] = {.lex_state = 23, .external_lex_state = 2}, - [804] = {.lex_state = 23, .external_lex_state = 2}, - [805] = {.lex_state = 22, .external_lex_state = 2}, - [806] = {.lex_state = 24, .external_lex_state = 4}, - [807] = {.lex_state = 24, .external_lex_state = 4}, - [808] = {.lex_state = 22, .external_lex_state = 2}, - [809] = {.lex_state = 22, .external_lex_state = 4}, - [810] = {.lex_state = 23, .external_lex_state = 4}, - [811] = {.lex_state = 23, .external_lex_state = 4}, - [812] = {.lex_state = 23, .external_lex_state = 4}, - [813] = {.lex_state = 24, .external_lex_state = 4}, - [814] = {.lex_state = 24, .external_lex_state = 2}, - [815] = {.lex_state = 24, .external_lex_state = 2}, - [816] = {.lex_state = 22, .external_lex_state = 4}, - [817] = {.lex_state = 323, .external_lex_state = 6}, - [818] = {.lex_state = 323, .external_lex_state = 6}, - [819] = {.lex_state = 323, .external_lex_state = 6}, - [820] = {.lex_state = 25, .external_lex_state = 2}, - [821] = {.lex_state = 323, .external_lex_state = 5}, - [822] = {.lex_state = 25, .external_lex_state = 4}, - [823] = {.lex_state = 25, .external_lex_state = 4}, - [824] = {.lex_state = 25, .external_lex_state = 4}, - [825] = {.lex_state = 22, .external_lex_state = 4}, - [826] = {.lex_state = 25, .external_lex_state = 2}, - [827] = {.lex_state = 149, .external_lex_state = 7}, - [828] = {.lex_state = 149, .external_lex_state = 7}, - [829] = {.lex_state = 149, .external_lex_state = 7}, - [830] = {.lex_state = 149, .external_lex_state = 7}, - [831] = {.lex_state = 149, .external_lex_state = 7}, - [832] = {.lex_state = 149, .external_lex_state = 7}, - [833] = {.lex_state = 149, .external_lex_state = 7}, - [834] = {.lex_state = 149, .external_lex_state = 7}, - [835] = {.lex_state = 149, .external_lex_state = 7}, - [836] = {.lex_state = 149, .external_lex_state = 7}, - [837] = {.lex_state = 149, .external_lex_state = 7}, - [838] = {.lex_state = 149, .external_lex_state = 7}, - [839] = {.lex_state = 149, .external_lex_state = 7}, - [840] = {.lex_state = 149, .external_lex_state = 7}, - [841] = {.lex_state = 149, .external_lex_state = 7}, - [842] = {.lex_state = 149, .external_lex_state = 7}, - [843] = {.lex_state = 149, .external_lex_state = 7}, - [844] = {.lex_state = 149, .external_lex_state = 7}, - [845] = {.lex_state = 149, .external_lex_state = 7}, - [846] = {.lex_state = 149, .external_lex_state = 7}, - [847] = {.lex_state = 149, .external_lex_state = 7}, - [848] = {.lex_state = 149, .external_lex_state = 7}, - [849] = {.lex_state = 149, .external_lex_state = 7}, - [850] = {.lex_state = 149, .external_lex_state = 7}, - [851] = {.lex_state = 149, .external_lex_state = 7}, - [852] = {.lex_state = 149, .external_lex_state = 7}, - [853] = {.lex_state = 149, .external_lex_state = 7}, - [854] = {.lex_state = 149, .external_lex_state = 7}, - [855] = {.lex_state = 149, .external_lex_state = 7}, - [856] = {.lex_state = 149, .external_lex_state = 7}, - [857] = {.lex_state = 149, .external_lex_state = 7}, - [858] = {.lex_state = 149, .external_lex_state = 7}, - [859] = {.lex_state = 149, .external_lex_state = 7}, - [860] = {.lex_state = 149, .external_lex_state = 7}, - [861] = {.lex_state = 149, .external_lex_state = 7}, - [862] = {.lex_state = 149, .external_lex_state = 7}, - [863] = {.lex_state = 149, .external_lex_state = 7}, - [864] = {.lex_state = 149, .external_lex_state = 7}, - [865] = {.lex_state = 149, .external_lex_state = 7}, - [866] = {.lex_state = 149, .external_lex_state = 7}, - [867] = {.lex_state = 149, .external_lex_state = 7}, - [868] = {.lex_state = 149, .external_lex_state = 7}, - [869] = {.lex_state = 149, .external_lex_state = 7}, - [870] = {.lex_state = 149, .external_lex_state = 7}, - [871] = {.lex_state = 149, .external_lex_state = 7}, - [872] = {.lex_state = 149, .external_lex_state = 7}, - [873] = {.lex_state = 149, .external_lex_state = 7}, - [874] = {.lex_state = 149, .external_lex_state = 7}, - [875] = {.lex_state = 149, .external_lex_state = 7}, - [876] = {.lex_state = 149, .external_lex_state = 7}, - [877] = {.lex_state = 149, .external_lex_state = 7}, - [878] = {.lex_state = 149, .external_lex_state = 7}, - [879] = {.lex_state = 149, .external_lex_state = 7}, - [880] = {.lex_state = 149, .external_lex_state = 7}, - [881] = {.lex_state = 149, .external_lex_state = 7}, - [882] = {.lex_state = 149, .external_lex_state = 7}, - [883] = {.lex_state = 149, .external_lex_state = 7}, - [884] = {.lex_state = 149, .external_lex_state = 7}, - [885] = {.lex_state = 149, .external_lex_state = 7}, - [886] = {.lex_state = 149, .external_lex_state = 7}, - [887] = {.lex_state = 149, .external_lex_state = 7}, - [888] = {.lex_state = 149, .external_lex_state = 7}, - [889] = {.lex_state = 149, .external_lex_state = 7}, - [890] = {.lex_state = 149, .external_lex_state = 7}, - [891] = {.lex_state = 149, .external_lex_state = 7}, - [892] = {.lex_state = 149, .external_lex_state = 7}, - [893] = {.lex_state = 149, .external_lex_state = 7}, - [894] = {.lex_state = 149, .external_lex_state = 7}, - [895] = {.lex_state = 149, .external_lex_state = 7}, - [896] = {.lex_state = 149, .external_lex_state = 7}, - [897] = {.lex_state = 149, .external_lex_state = 7}, - [898] = {.lex_state = 149, .external_lex_state = 7}, - [899] = {.lex_state = 151, .external_lex_state = 7}, - [900] = {.lex_state = 151, .external_lex_state = 7}, - [901] = {.lex_state = 151, .external_lex_state = 7}, - [902] = {.lex_state = 151, .external_lex_state = 7}, - [903] = {.lex_state = 151, .external_lex_state = 7}, - [904] = {.lex_state = 151, .external_lex_state = 7}, - [905] = {.lex_state = 151, .external_lex_state = 7}, - [906] = {.lex_state = 151, .external_lex_state = 7}, - [907] = {.lex_state = 151, .external_lex_state = 7}, - [908] = {.lex_state = 151, .external_lex_state = 7}, - [909] = {.lex_state = 151, .external_lex_state = 7}, - [910] = {.lex_state = 153, .external_lex_state = 3}, - [911] = {.lex_state = 151, .external_lex_state = 7}, - [912] = {.lex_state = 151, .external_lex_state = 7}, - [913] = {.lex_state = 151, .external_lex_state = 7}, - [914] = {.lex_state = 151, .external_lex_state = 7}, - [915] = {.lex_state = 151, .external_lex_state = 7}, - [916] = {.lex_state = 151, .external_lex_state = 7}, - [917] = {.lex_state = 151, .external_lex_state = 7}, - [918] = {.lex_state = 153, .external_lex_state = 3}, - [919] = {.lex_state = 151, .external_lex_state = 7}, - [920] = {.lex_state = 151, .external_lex_state = 7}, - [921] = {.lex_state = 151, .external_lex_state = 7}, - [922] = {.lex_state = 151, .external_lex_state = 7}, - [923] = {.lex_state = 151, .external_lex_state = 7}, - [924] = {.lex_state = 151, .external_lex_state = 7}, - [925] = {.lex_state = 153, .external_lex_state = 3}, - [926] = {.lex_state = 151, .external_lex_state = 7}, - [927] = {.lex_state = 153, .external_lex_state = 3}, - [928] = {.lex_state = 151, .external_lex_state = 7}, - [929] = {.lex_state = 151, .external_lex_state = 7}, - [930] = {.lex_state = 153, .external_lex_state = 3}, - [931] = {.lex_state = 151, .external_lex_state = 7}, - [932] = {.lex_state = 151, .external_lex_state = 7}, - [933] = {.lex_state = 151, .external_lex_state = 7}, - [934] = {.lex_state = 151, .external_lex_state = 7}, - [935] = {.lex_state = 151, .external_lex_state = 7}, - [936] = {.lex_state = 151, .external_lex_state = 7}, - [937] = {.lex_state = 151, .external_lex_state = 7}, - [938] = {.lex_state = 151, .external_lex_state = 7}, - [939] = {.lex_state = 151, .external_lex_state = 7}, - [940] = {.lex_state = 151, .external_lex_state = 7}, - [941] = {.lex_state = 151, .external_lex_state = 7}, - [942] = {.lex_state = 151, .external_lex_state = 7}, - [943] = {.lex_state = 151, .external_lex_state = 7}, - [944] = {.lex_state = 151, .external_lex_state = 7}, - [945] = {.lex_state = 151, .external_lex_state = 7}, - [946] = {.lex_state = 151, .external_lex_state = 7}, - [947] = {.lex_state = 153, .external_lex_state = 3}, - [948] = {.lex_state = 151, .external_lex_state = 7}, - [949] = {.lex_state = 151, .external_lex_state = 7}, - [950] = {.lex_state = 151, .external_lex_state = 7}, - [951] = {.lex_state = 151, .external_lex_state = 7}, - [952] = {.lex_state = 151, .external_lex_state = 7}, - [953] = {.lex_state = 151, .external_lex_state = 7}, - [954] = {.lex_state = 151, .external_lex_state = 7}, - [955] = {.lex_state = 153, .external_lex_state = 3}, - [956] = {.lex_state = 151, .external_lex_state = 7}, - [957] = {.lex_state = 151, .external_lex_state = 7}, - [958] = {.lex_state = 153, .external_lex_state = 3}, - [959] = {.lex_state = 151, .external_lex_state = 7}, - [960] = {.lex_state = 151, .external_lex_state = 7}, - [961] = {.lex_state = 151, .external_lex_state = 7}, - [962] = {.lex_state = 151, .external_lex_state = 7}, - [963] = {.lex_state = 151, .external_lex_state = 7}, - [964] = {.lex_state = 151, .external_lex_state = 7}, - [965] = {.lex_state = 151, .external_lex_state = 7}, - [966] = {.lex_state = 151, .external_lex_state = 7}, - [967] = {.lex_state = 151, .external_lex_state = 7}, - [968] = {.lex_state = 151, .external_lex_state = 7}, - [969] = {.lex_state = 153, .external_lex_state = 3}, - [970] = {.lex_state = 151, .external_lex_state = 7}, - [971] = {.lex_state = 151, .external_lex_state = 7}, - [972] = {.lex_state = 151, .external_lex_state = 7}, - [973] = {.lex_state = 151, .external_lex_state = 7}, - [974] = {.lex_state = 151, .external_lex_state = 7}, - [975] = {.lex_state = 151, .external_lex_state = 7}, - [976] = {.lex_state = 151, .external_lex_state = 7}, - [977] = {.lex_state = 151, .external_lex_state = 7}, - [978] = {.lex_state = 151, .external_lex_state = 7}, - [979] = {.lex_state = 151, .external_lex_state = 7}, - [980] = {.lex_state = 151, .external_lex_state = 7}, - [981] = {.lex_state = 151, .external_lex_state = 7}, - [982] = {.lex_state = 151, .external_lex_state = 7}, - [983] = {.lex_state = 151, .external_lex_state = 7}, - [984] = {.lex_state = 151, .external_lex_state = 7}, - [985] = {.lex_state = 151, .external_lex_state = 7}, - [986] = {.lex_state = 151, .external_lex_state = 7}, - [987] = {.lex_state = 151, .external_lex_state = 7}, - [988] = {.lex_state = 151, .external_lex_state = 7}, - [989] = {.lex_state = 153, .external_lex_state = 3}, - [990] = {.lex_state = 151, .external_lex_state = 7}, - [991] = {.lex_state = 151, .external_lex_state = 7}, - [992] = {.lex_state = 151, .external_lex_state = 7}, - [993] = {.lex_state = 151, .external_lex_state = 7}, - [994] = {.lex_state = 151, .external_lex_state = 7}, - [995] = {.lex_state = 151, .external_lex_state = 7}, - [996] = {.lex_state = 151, .external_lex_state = 7}, - [997] = {.lex_state = 151, .external_lex_state = 7}, - [998] = {.lex_state = 151, .external_lex_state = 7}, - [999] = {.lex_state = 151, .external_lex_state = 7}, - [1000] = {.lex_state = 151, .external_lex_state = 7}, - [1001] = {.lex_state = 151, .external_lex_state = 7}, - [1002] = {.lex_state = 151, .external_lex_state = 7}, - [1003] = {.lex_state = 151, .external_lex_state = 7}, - [1004] = {.lex_state = 151, .external_lex_state = 7}, - [1005] = {.lex_state = 151, .external_lex_state = 7}, - [1006] = {.lex_state = 151, .external_lex_state = 7}, - [1007] = {.lex_state = 151, .external_lex_state = 7}, - [1008] = {.lex_state = 151, .external_lex_state = 7}, - [1009] = {.lex_state = 151, .external_lex_state = 7}, - [1010] = {.lex_state = 151, .external_lex_state = 7}, - [1011] = {.lex_state = 151, .external_lex_state = 7}, - [1012] = {.lex_state = 151, .external_lex_state = 7}, - [1013] = {.lex_state = 151, .external_lex_state = 7}, - [1014] = {.lex_state = 151, .external_lex_state = 7}, - [1015] = {.lex_state = 151, .external_lex_state = 7}, - [1016] = {.lex_state = 151, .external_lex_state = 7}, - [1017] = {.lex_state = 151, .external_lex_state = 7}, - [1018] = {.lex_state = 151, .external_lex_state = 7}, - [1019] = {.lex_state = 151, .external_lex_state = 7}, - [1020] = {.lex_state = 151, .external_lex_state = 7}, - [1021] = {.lex_state = 151, .external_lex_state = 7}, - [1022] = {.lex_state = 153, .external_lex_state = 3}, - [1023] = {.lex_state = 151, .external_lex_state = 7}, - [1024] = {.lex_state = 151, .external_lex_state = 7}, - [1025] = {.lex_state = 151, .external_lex_state = 7}, - [1026] = {.lex_state = 153, .external_lex_state = 3}, - [1027] = {.lex_state = 151, .external_lex_state = 7}, - [1028] = {.lex_state = 151, .external_lex_state = 7}, - [1029] = {.lex_state = 151, .external_lex_state = 7}, - [1030] = {.lex_state = 151, .external_lex_state = 7}, - [1031] = {.lex_state = 151, .external_lex_state = 7}, - [1032] = {.lex_state = 151, .external_lex_state = 7}, - [1033] = {.lex_state = 153, .external_lex_state = 3}, - [1034] = {.lex_state = 151, .external_lex_state = 7}, - [1035] = {.lex_state = 151, .external_lex_state = 7}, - [1036] = {.lex_state = 151, .external_lex_state = 7}, - [1037] = {.lex_state = 151, .external_lex_state = 7}, - [1038] = {.lex_state = 151, .external_lex_state = 7}, - [1039] = {.lex_state = 151, .external_lex_state = 7}, - [1040] = {.lex_state = 151, .external_lex_state = 7}, - [1041] = {.lex_state = 151, .external_lex_state = 7}, - [1042] = {.lex_state = 151, .external_lex_state = 7}, - [1043] = {.lex_state = 151, .external_lex_state = 7}, - [1044] = {.lex_state = 151, .external_lex_state = 7}, - [1045] = {.lex_state = 151, .external_lex_state = 7}, - [1046] = {.lex_state = 151, .external_lex_state = 7}, - [1047] = {.lex_state = 151, .external_lex_state = 7}, - [1048] = {.lex_state = 151, .external_lex_state = 7}, - [1049] = {.lex_state = 151, .external_lex_state = 7}, - [1050] = {.lex_state = 151, .external_lex_state = 7}, - [1051] = {.lex_state = 151, .external_lex_state = 7}, - [1052] = {.lex_state = 151, .external_lex_state = 7}, - [1053] = {.lex_state = 153, .external_lex_state = 3}, - [1054] = {.lex_state = 151, .external_lex_state = 7}, - [1055] = {.lex_state = 151, .external_lex_state = 7}, - [1056] = {.lex_state = 151, .external_lex_state = 7}, - [1057] = {.lex_state = 151, .external_lex_state = 7}, - [1058] = {.lex_state = 151, .external_lex_state = 7}, - [1059] = {.lex_state = 151, .external_lex_state = 7}, - [1060] = {.lex_state = 151, .external_lex_state = 7}, - [1061] = {.lex_state = 151, .external_lex_state = 7}, - [1062] = {.lex_state = 151, .external_lex_state = 7}, - [1063] = {.lex_state = 153, .external_lex_state = 3}, - [1064] = {.lex_state = 151, .external_lex_state = 7}, - [1065] = {.lex_state = 151, .external_lex_state = 7}, - [1066] = {.lex_state = 151, .external_lex_state = 7}, - [1067] = {.lex_state = 151, .external_lex_state = 7}, - [1068] = {.lex_state = 151, .external_lex_state = 7}, - [1069] = {.lex_state = 151, .external_lex_state = 7}, - [1070] = {.lex_state = 151, .external_lex_state = 7}, - [1071] = {.lex_state = 151, .external_lex_state = 7}, - [1072] = {.lex_state = 151, .external_lex_state = 7}, - [1073] = {.lex_state = 151, .external_lex_state = 7}, - [1074] = {.lex_state = 151, .external_lex_state = 7}, - [1075] = {.lex_state = 151, .external_lex_state = 7}, - [1076] = {.lex_state = 153, .external_lex_state = 3}, - [1077] = {.lex_state = 151, .external_lex_state = 7}, - [1078] = {.lex_state = 151, .external_lex_state = 7}, - [1079] = {.lex_state = 151, .external_lex_state = 7}, - [1080] = {.lex_state = 151, .external_lex_state = 7}, - [1081] = {.lex_state = 153, .external_lex_state = 3}, - [1082] = {.lex_state = 151, .external_lex_state = 7}, - [1083] = {.lex_state = 151, .external_lex_state = 7}, - [1084] = {.lex_state = 151, .external_lex_state = 7}, - [1085] = {.lex_state = 151, .external_lex_state = 7}, - [1086] = {.lex_state = 151, .external_lex_state = 7}, - [1087] = {.lex_state = 151, .external_lex_state = 7}, - [1088] = {.lex_state = 151, .external_lex_state = 7}, - [1089] = {.lex_state = 151, .external_lex_state = 7}, - [1090] = {.lex_state = 151, .external_lex_state = 7}, - [1091] = {.lex_state = 151, .external_lex_state = 7}, - [1092] = {.lex_state = 151, .external_lex_state = 7}, - [1093] = {.lex_state = 151, .external_lex_state = 7}, - [1094] = {.lex_state = 151, .external_lex_state = 7}, - [1095] = {.lex_state = 151, .external_lex_state = 7}, - [1096] = {.lex_state = 151, .external_lex_state = 7}, - [1097] = {.lex_state = 151, .external_lex_state = 7}, - [1098] = {.lex_state = 151, .external_lex_state = 7}, - [1099] = {.lex_state = 151, .external_lex_state = 7}, - [1100] = {.lex_state = 151, .external_lex_state = 7}, - [1101] = {.lex_state = 151, .external_lex_state = 7}, - [1102] = {.lex_state = 151, .external_lex_state = 7}, - [1103] = {.lex_state = 151, .external_lex_state = 7}, - [1104] = {.lex_state = 151, .external_lex_state = 7}, - [1105] = {.lex_state = 151, .external_lex_state = 7}, - [1106] = {.lex_state = 153, .external_lex_state = 3}, - [1107] = {.lex_state = 151, .external_lex_state = 7}, - [1108] = {.lex_state = 151, .external_lex_state = 7}, - [1109] = {.lex_state = 153, .external_lex_state = 3}, - [1110] = {.lex_state = 151, .external_lex_state = 7}, - [1111] = {.lex_state = 151, .external_lex_state = 7}, - [1112] = {.lex_state = 151, .external_lex_state = 7}, - [1113] = {.lex_state = 151, .external_lex_state = 7}, - [1114] = {.lex_state = 151, .external_lex_state = 7}, - [1115] = {.lex_state = 153, .external_lex_state = 3}, - [1116] = {.lex_state = 151, .external_lex_state = 7}, - [1117] = {.lex_state = 151, .external_lex_state = 7}, - [1118] = {.lex_state = 151, .external_lex_state = 7}, - [1119] = {.lex_state = 151, .external_lex_state = 7}, - [1120] = {.lex_state = 151, .external_lex_state = 7}, - [1121] = {.lex_state = 151, .external_lex_state = 7}, - [1122] = {.lex_state = 151, .external_lex_state = 7}, - [1123] = {.lex_state = 151, .external_lex_state = 7}, - [1124] = {.lex_state = 151, .external_lex_state = 7}, - [1125] = {.lex_state = 151, .external_lex_state = 7}, - [1126] = {.lex_state = 151, .external_lex_state = 7}, - [1127] = {.lex_state = 151, .external_lex_state = 7}, - [1128] = {.lex_state = 151, .external_lex_state = 7}, - [1129] = {.lex_state = 151, .external_lex_state = 7}, - [1130] = {.lex_state = 151, .external_lex_state = 7}, - [1131] = {.lex_state = 151, .external_lex_state = 7}, - [1132] = {.lex_state = 151, .external_lex_state = 7}, - [1133] = {.lex_state = 151, .external_lex_state = 7}, - [1134] = {.lex_state = 151, .external_lex_state = 7}, - [1135] = {.lex_state = 151, .external_lex_state = 7}, - [1136] = {.lex_state = 152, .external_lex_state = 3}, - [1137] = {.lex_state = 152, .external_lex_state = 3}, - [1138] = {.lex_state = 152, .external_lex_state = 3}, - [1139] = {.lex_state = 152, .external_lex_state = 3}, - [1140] = {.lex_state = 152, .external_lex_state = 3}, - [1141] = {.lex_state = 152, .external_lex_state = 3}, - [1142] = {.lex_state = 152, .external_lex_state = 3}, - [1143] = {.lex_state = 152, .external_lex_state = 3}, - [1144] = {.lex_state = 152, .external_lex_state = 3}, - [1145] = {.lex_state = 152, .external_lex_state = 3}, - [1146] = {.lex_state = 152, .external_lex_state = 3}, - [1147] = {.lex_state = 152, .external_lex_state = 3}, - [1148] = {.lex_state = 152, .external_lex_state = 3}, - [1149] = {.lex_state = 152, .external_lex_state = 3}, - [1150] = {.lex_state = 152, .external_lex_state = 3}, - [1151] = {.lex_state = 152, .external_lex_state = 3}, - [1152] = {.lex_state = 152, .external_lex_state = 3}, - [1153] = {.lex_state = 152, .external_lex_state = 3}, - [1154] = {.lex_state = 152, .external_lex_state = 3}, - [1155] = {.lex_state = 152, .external_lex_state = 3}, - [1156] = {.lex_state = 323, .external_lex_state = 2}, - [1157] = {.lex_state = 323, .external_lex_state = 2}, - [1158] = {.lex_state = 323, .external_lex_state = 2}, - [1159] = {.lex_state = 323, .external_lex_state = 2}, - [1160] = {.lex_state = 323, .external_lex_state = 2}, - [1161] = {.lex_state = 323, .external_lex_state = 2}, - [1162] = {.lex_state = 323, .external_lex_state = 2}, - [1163] = {.lex_state = 323, .external_lex_state = 2}, - [1164] = {.lex_state = 323, .external_lex_state = 2}, - [1165] = {.lex_state = 321, .external_lex_state = 8}, - [1166] = {.lex_state = 321, .external_lex_state = 8}, - [1167] = {.lex_state = 321, .external_lex_state = 9}, - [1168] = {.lex_state = 321, .external_lex_state = 9}, - [1169] = {.lex_state = 321, .external_lex_state = 9}, - [1170] = {.lex_state = 12, .external_lex_state = 8}, - [1171] = {.lex_state = 322, .external_lex_state = 9}, - [1172] = {.lex_state = 19, .external_lex_state = 10}, - [1173] = {.lex_state = 321, .external_lex_state = 9}, - [1174] = {.lex_state = 321, .external_lex_state = 9}, - [1175] = {.lex_state = 321, .external_lex_state = 11}, - [1176] = {.lex_state = 321, .external_lex_state = 11}, - [1177] = {.lex_state = 322, .external_lex_state = 9}, - [1178] = {.lex_state = 19, .external_lex_state = 2}, - [1179] = {.lex_state = 13, .external_lex_state = 9}, - [1180] = {.lex_state = 12, .external_lex_state = 8}, - [1181] = {.lex_state = 319, .external_lex_state = 7}, - [1182] = {.lex_state = 321, .external_lex_state = 9}, - [1183] = {.lex_state = 321, .external_lex_state = 9}, - [1184] = {.lex_state = 321, .external_lex_state = 9}, - [1185] = {.lex_state = 321, .external_lex_state = 9}, - [1186] = {.lex_state = 12, .external_lex_state = 9}, - [1187] = {.lex_state = 321, .external_lex_state = 9}, - [1188] = {.lex_state = 321, .external_lex_state = 9}, - [1189] = {.lex_state = 13, .external_lex_state = 8}, - [1190] = {.lex_state = 12, .external_lex_state = 9}, - [1191] = {.lex_state = 319, .external_lex_state = 7}, - [1192] = {.lex_state = 319, .external_lex_state = 7}, - [1193] = {.lex_state = 322, .external_lex_state = 8}, - [1194] = {.lex_state = 13, .external_lex_state = 9}, - [1195] = {.lex_state = 322, .external_lex_state = 9}, - [1196] = {.lex_state = 319, .external_lex_state = 7}, - [1197] = {.lex_state = 319, .external_lex_state = 7}, - [1198] = {.lex_state = 321, .external_lex_state = 9}, - [1199] = {.lex_state = 321, .external_lex_state = 9}, - [1200] = {.lex_state = 321, .external_lex_state = 9}, - [1201] = {.lex_state = 321, .external_lex_state = 9}, - [1202] = {.lex_state = 19, .external_lex_state = 12}, - [1203] = {.lex_state = 19, .external_lex_state = 10}, - [1204] = {.lex_state = 321, .external_lex_state = 9}, + [645] = {.lex_state = 18, .external_lex_state = 7}, + [646] = {.lex_state = 6, .external_lex_state = 2}, + [647] = {.lex_state = 8, .external_lex_state = 2}, + [648] = {.lex_state = 8, .external_lex_state = 2}, + [649] = {.lex_state = 323, .external_lex_state = 8}, + [650] = {.lex_state = 8, .external_lex_state = 2}, + [651] = {.lex_state = 6, .external_lex_state = 2}, + [652] = {.lex_state = 7, .external_lex_state = 2}, + [653] = {.lex_state = 6, .external_lex_state = 2}, + [654] = {.lex_state = 18, .external_lex_state = 7}, + [655] = {.lex_state = 6, .external_lex_state = 2}, + [656] = {.lex_state = 9, .external_lex_state = 2}, + [657] = {.lex_state = 323, .external_lex_state = 8}, + [658] = {.lex_state = 5, .external_lex_state = 2}, + [659] = {.lex_state = 7, .external_lex_state = 2}, + [660] = {.lex_state = 7, .external_lex_state = 2}, + [661] = {.lex_state = 5, .external_lex_state = 2}, + [662] = {.lex_state = 21, .external_lex_state = 7}, + [663] = {.lex_state = 323, .external_lex_state = 8}, + [664] = {.lex_state = 326, .external_lex_state = 7}, + [665] = {.lex_state = 5, .external_lex_state = 2}, + [666] = {.lex_state = 323, .external_lex_state = 8}, + [667] = {.lex_state = 7, .external_lex_state = 2}, + [668] = {.lex_state = 9, .external_lex_state = 2}, + [669] = {.lex_state = 326, .external_lex_state = 7}, + [670] = {.lex_state = 326, .external_lex_state = 7}, + [671] = {.lex_state = 9, .external_lex_state = 2}, + [672] = {.lex_state = 21, .external_lex_state = 7}, + [673] = {.lex_state = 18, .external_lex_state = 7}, + [674] = {.lex_state = 8, .external_lex_state = 2}, + [675] = {.lex_state = 21, .external_lex_state = 7}, + [676] = {.lex_state = 20, .external_lex_state = 6}, + [677] = {.lex_state = 14, .external_lex_state = 6}, + [678] = {.lex_state = 17, .external_lex_state = 6}, + [679] = {.lex_state = 20, .external_lex_state = 7}, + [680] = {.lex_state = 20, .external_lex_state = 7}, + [681] = {.lex_state = 20, .external_lex_state = 6}, + [682] = {.lex_state = 14, .external_lex_state = 6}, + [683] = {.lex_state = 14, .external_lex_state = 6}, + [684] = {.lex_state = 14, .external_lex_state = 6}, + [685] = {.lex_state = 325, .external_lex_state = 9}, + [686] = {.lex_state = 20, .external_lex_state = 6}, + [687] = {.lex_state = 14, .external_lex_state = 6}, + [688] = {.lex_state = 325, .external_lex_state = 9}, + [689] = {.lex_state = 325, .external_lex_state = 9}, + [690] = {.lex_state = 325, .external_lex_state = 9}, + [691] = {.lex_state = 325, .external_lex_state = 9}, + [692] = {.lex_state = 15, .external_lex_state = 6}, + [693] = {.lex_state = 16, .external_lex_state = 6}, + [694] = {.lex_state = 16, .external_lex_state = 6}, + [695] = {.lex_state = 16, .external_lex_state = 6}, + [696] = {.lex_state = 15, .external_lex_state = 6}, + [697] = {.lex_state = 16, .external_lex_state = 6}, + [698] = {.lex_state = 16, .external_lex_state = 6}, + [699] = {.lex_state = 15, .external_lex_state = 6}, + [700] = {.lex_state = 17, .external_lex_state = 6}, + [701] = {.lex_state = 15, .external_lex_state = 6}, + [702] = {.lex_state = 17, .external_lex_state = 6}, + [703] = {.lex_state = 15, .external_lex_state = 6}, + [704] = {.lex_state = 17, .external_lex_state = 6}, + [705] = {.lex_state = 17, .external_lex_state = 6}, + [706] = {.lex_state = 22, .external_lex_state = 7}, + [707] = {.lex_state = 18, .external_lex_state = 7}, + [708] = {.lex_state = 18, .external_lex_state = 7}, + [709] = {.lex_state = 21, .external_lex_state = 6}, + [710] = {.lex_state = 7, .external_lex_state = 2}, + [711] = {.lex_state = 326, .external_lex_state = 7}, + [712] = {.lex_state = 9, .external_lex_state = 2}, + [713] = {.lex_state = 18, .external_lex_state = 6}, + [714] = {.lex_state = 326, .external_lex_state = 6}, + [715] = {.lex_state = 326, .external_lex_state = 6}, + [716] = {.lex_state = 18, .external_lex_state = 6}, + [717] = {.lex_state = 9, .external_lex_state = 2}, + [718] = {.lex_state = 326, .external_lex_state = 7}, + [719] = {.lex_state = 18, .external_lex_state = 6}, + [720] = {.lex_state = 7, .external_lex_state = 2}, + [721] = {.lex_state = 326, .external_lex_state = 6}, + [722] = {.lex_state = 326, .external_lex_state = 10}, + [723] = {.lex_state = 326, .external_lex_state = 10}, + [724] = {.lex_state = 323, .external_lex_state = 8}, + [725] = {.lex_state = 22, .external_lex_state = 7}, + [726] = {.lex_state = 21, .external_lex_state = 6}, + [727] = {.lex_state = 326, .external_lex_state = 10}, + [728] = {.lex_state = 22, .external_lex_state = 7}, + [729] = {.lex_state = 323, .external_lex_state = 8}, + [730] = {.lex_state = 323, .external_lex_state = 8}, + [731] = {.lex_state = 23, .external_lex_state = 7}, + [732] = {.lex_state = 24, .external_lex_state = 7}, + [733] = {.lex_state = 23, .external_lex_state = 7}, + [734] = {.lex_state = 24, .external_lex_state = 7}, + [735] = {.lex_state = 6, .external_lex_state = 2}, + [736] = {.lex_state = 8, .external_lex_state = 2}, + [737] = {.lex_state = 24, .external_lex_state = 7}, + [738] = {.lex_state = 7, .external_lex_state = 2}, + [739] = {.lex_state = 21, .external_lex_state = 7}, + [740] = {.lex_state = 8, .external_lex_state = 2}, + [741] = {.lex_state = 8, .external_lex_state = 2}, + [742] = {.lex_state = 23, .external_lex_state = 7}, + [743] = {.lex_state = 21, .external_lex_state = 7}, + [744] = {.lex_state = 25, .external_lex_state = 7}, + [745] = {.lex_state = 6, .external_lex_state = 2}, + [746] = {.lex_state = 25, .external_lex_state = 7}, + [747] = {.lex_state = 9, .external_lex_state = 2}, + [748] = {.lex_state = 25, .external_lex_state = 7}, + [749] = {.lex_state = 6, .external_lex_state = 2}, + [750] = {.lex_state = 21, .external_lex_state = 6}, + [751] = {.lex_state = 149, .external_lex_state = 11}, + [752] = {.lex_state = 149, .external_lex_state = 11}, + [753] = {.lex_state = 149, .external_lex_state = 11}, + [754] = {.lex_state = 149, .external_lex_state = 11}, + [755] = {.lex_state = 149, .external_lex_state = 11}, + [756] = {.lex_state = 149, .external_lex_state = 11}, + [757] = {.lex_state = 149, .external_lex_state = 11}, + [758] = {.lex_state = 323, .external_lex_state = 2}, + [759] = {.lex_state = 149, .external_lex_state = 11}, + [760] = {.lex_state = 149, .external_lex_state = 11}, + [761] = {.lex_state = 149, .external_lex_state = 11}, + [762] = {.lex_state = 149, .external_lex_state = 11}, + [763] = {.lex_state = 149, .external_lex_state = 11}, + [764] = {.lex_state = 149, .external_lex_state = 11}, + [765] = {.lex_state = 149, .external_lex_state = 11}, + [766] = {.lex_state = 149, .external_lex_state = 11}, + [767] = {.lex_state = 149, .external_lex_state = 11}, + [768] = {.lex_state = 149, .external_lex_state = 11}, + [769] = {.lex_state = 149, .external_lex_state = 11}, + [770] = {.lex_state = 149, .external_lex_state = 11}, + [771] = {.lex_state = 149, .external_lex_state = 11}, + [772] = {.lex_state = 149, .external_lex_state = 11}, + [773] = {.lex_state = 149, .external_lex_state = 11}, + [774] = {.lex_state = 149, .external_lex_state = 11}, + [775] = {.lex_state = 149, .external_lex_state = 11}, + [776] = {.lex_state = 149, .external_lex_state = 11}, + [777] = {.lex_state = 149, .external_lex_state = 11}, + [778] = {.lex_state = 149, .external_lex_state = 11}, + [779] = {.lex_state = 149, .external_lex_state = 11}, + [780] = {.lex_state = 149, .external_lex_state = 11}, + [781] = {.lex_state = 149, .external_lex_state = 11}, + [782] = {.lex_state = 149, .external_lex_state = 11}, + [783] = {.lex_state = 149, .external_lex_state = 11}, + [784] = {.lex_state = 149, .external_lex_state = 11}, + [785] = {.lex_state = 149, .external_lex_state = 11}, + [786] = {.lex_state = 149, .external_lex_state = 11}, + [787] = {.lex_state = 149, .external_lex_state = 11}, + [788] = {.lex_state = 149, .external_lex_state = 11}, + [789] = {.lex_state = 149, .external_lex_state = 11}, + [790] = {.lex_state = 149, .external_lex_state = 11}, + [791] = {.lex_state = 149, .external_lex_state = 11}, + [792] = {.lex_state = 149, .external_lex_state = 11}, + [793] = {.lex_state = 149, .external_lex_state = 11}, + [794] = {.lex_state = 149, .external_lex_state = 11}, + [795] = {.lex_state = 149, .external_lex_state = 11}, + [796] = {.lex_state = 149, .external_lex_state = 11}, + [797] = {.lex_state = 149, .external_lex_state = 11}, + [798] = {.lex_state = 149, .external_lex_state = 11}, + [799] = {.lex_state = 149, .external_lex_state = 11}, + [800] = {.lex_state = 149, .external_lex_state = 11}, + [801] = {.lex_state = 149, .external_lex_state = 11}, + [802] = {.lex_state = 149, .external_lex_state = 11}, + [803] = {.lex_state = 149, .external_lex_state = 11}, + [804] = {.lex_state = 149, .external_lex_state = 11}, + [805] = {.lex_state = 149, .external_lex_state = 11}, + [806] = {.lex_state = 149, .external_lex_state = 11}, + [807] = {.lex_state = 149, .external_lex_state = 11}, + [808] = {.lex_state = 149, .external_lex_state = 11}, + [809] = {.lex_state = 149, .external_lex_state = 11}, + [810] = {.lex_state = 149, .external_lex_state = 11}, + [811] = {.lex_state = 149, .external_lex_state = 11}, + [812] = {.lex_state = 149, .external_lex_state = 11}, + [813] = {.lex_state = 149, .external_lex_state = 11}, + [814] = {.lex_state = 149, .external_lex_state = 11}, + [815] = {.lex_state = 149, .external_lex_state = 11}, + [816] = {.lex_state = 149, .external_lex_state = 11}, + [817] = {.lex_state = 149, .external_lex_state = 11}, + [818] = {.lex_state = 149, .external_lex_state = 11}, + [819] = {.lex_state = 149, .external_lex_state = 11}, + [820] = {.lex_state = 149, .external_lex_state = 11}, + [821] = {.lex_state = 149, .external_lex_state = 11}, + [822] = {.lex_state = 149, .external_lex_state = 11}, + [823] = {.lex_state = 149, .external_lex_state = 11}, + [824] = {.lex_state = 149, .external_lex_state = 11}, + [825] = {.lex_state = 149, .external_lex_state = 11}, + [826] = {.lex_state = 326, .external_lex_state = 9}, + [827] = {.lex_state = 25, .external_lex_state = 7}, + [828] = {.lex_state = 326, .external_lex_state = 9}, + [829] = {.lex_state = 326, .external_lex_state = 9}, + [830] = {.lex_state = 326, .external_lex_state = 10}, + [831] = {.lex_state = 22, .external_lex_state = 6}, + [832] = {.lex_state = 22, .external_lex_state = 6}, + [833] = {.lex_state = 22, .external_lex_state = 7}, + [834] = {.lex_state = 22, .external_lex_state = 6}, + [835] = {.lex_state = 23, .external_lex_state = 6}, + [836] = {.lex_state = 23, .external_lex_state = 6}, + [837] = {.lex_state = 326, .external_lex_state = 10}, + [838] = {.lex_state = 23, .external_lex_state = 6}, + [839] = {.lex_state = 24, .external_lex_state = 6}, + [840] = {.lex_state = 24, .external_lex_state = 6}, + [841] = {.lex_state = 24, .external_lex_state = 6}, + [842] = {.lex_state = 24, .external_lex_state = 7}, + [843] = {.lex_state = 23, .external_lex_state = 7}, + [844] = {.lex_state = 22, .external_lex_state = 7}, + [845] = {.lex_state = 24, .external_lex_state = 7}, + [846] = {.lex_state = 25, .external_lex_state = 6}, + [847] = {.lex_state = 25, .external_lex_state = 6}, + [848] = {.lex_state = 25, .external_lex_state = 6}, + [849] = {.lex_state = 25, .external_lex_state = 7}, + [850] = {.lex_state = 23, .external_lex_state = 7}, + [851] = {.lex_state = 152, .external_lex_state = 11}, + [852] = {.lex_state = 152, .external_lex_state = 11}, + [853] = {.lex_state = 152, .external_lex_state = 11}, + [854] = {.lex_state = 152, .external_lex_state = 11}, + [855] = {.lex_state = 152, .external_lex_state = 11}, + [856] = {.lex_state = 152, .external_lex_state = 11}, + [857] = {.lex_state = 152, .external_lex_state = 11}, + [858] = {.lex_state = 152, .external_lex_state = 11}, + [859] = {.lex_state = 152, .external_lex_state = 11}, + [860] = {.lex_state = 152, .external_lex_state = 11}, + [861] = {.lex_state = 152, .external_lex_state = 11}, + [862] = {.lex_state = 152, .external_lex_state = 11}, + [863] = {.lex_state = 152, .external_lex_state = 11}, + [864] = {.lex_state = 152, .external_lex_state = 11}, + [865] = {.lex_state = 152, .external_lex_state = 11}, + [866] = {.lex_state = 152, .external_lex_state = 11}, + [867] = {.lex_state = 152, .external_lex_state = 11}, + [868] = {.lex_state = 152, .external_lex_state = 11}, + [869] = {.lex_state = 152, .external_lex_state = 11}, + [870] = {.lex_state = 152, .external_lex_state = 11}, + [871] = {.lex_state = 152, .external_lex_state = 11}, + [872] = {.lex_state = 152, .external_lex_state = 11}, + [873] = {.lex_state = 152, .external_lex_state = 11}, + [874] = {.lex_state = 152, .external_lex_state = 11}, + [875] = {.lex_state = 152, .external_lex_state = 11}, + [876] = {.lex_state = 152, .external_lex_state = 11}, + [877] = {.lex_state = 152, .external_lex_state = 11}, + [878] = {.lex_state = 152, .external_lex_state = 11}, + [879] = {.lex_state = 152, .external_lex_state = 11}, + [880] = {.lex_state = 152, .external_lex_state = 11}, + [881] = {.lex_state = 152, .external_lex_state = 11}, + [882] = {.lex_state = 152, .external_lex_state = 11}, + [883] = {.lex_state = 152, .external_lex_state = 11}, + [884] = {.lex_state = 152, .external_lex_state = 11}, + [885] = {.lex_state = 152, .external_lex_state = 11}, + [886] = {.lex_state = 152, .external_lex_state = 11}, + [887] = {.lex_state = 152, .external_lex_state = 11}, + [888] = {.lex_state = 152, .external_lex_state = 11}, + [889] = {.lex_state = 152, .external_lex_state = 11}, + [890] = {.lex_state = 152, .external_lex_state = 11}, + [891] = {.lex_state = 152, .external_lex_state = 11}, + [892] = {.lex_state = 152, .external_lex_state = 11}, + [893] = {.lex_state = 152, .external_lex_state = 11}, + [894] = {.lex_state = 152, .external_lex_state = 11}, + [895] = {.lex_state = 152, .external_lex_state = 11}, + [896] = {.lex_state = 152, .external_lex_state = 11}, + [897] = {.lex_state = 152, .external_lex_state = 11}, + [898] = {.lex_state = 152, .external_lex_state = 11}, + [899] = {.lex_state = 152, .external_lex_state = 11}, + [900] = {.lex_state = 152, .external_lex_state = 11}, + [901] = {.lex_state = 152, .external_lex_state = 11}, + [902] = {.lex_state = 152, .external_lex_state = 11}, + [903] = {.lex_state = 152, .external_lex_state = 11}, + [904] = {.lex_state = 152, .external_lex_state = 11}, + [905] = {.lex_state = 152, .external_lex_state = 11}, + [906] = {.lex_state = 152, .external_lex_state = 11}, + [907] = {.lex_state = 152, .external_lex_state = 11}, + [908] = {.lex_state = 152, .external_lex_state = 11}, + [909] = {.lex_state = 152, .external_lex_state = 11}, + [910] = {.lex_state = 152, .external_lex_state = 11}, + [911] = {.lex_state = 152, .external_lex_state = 11}, + [912] = {.lex_state = 152, .external_lex_state = 11}, + [913] = {.lex_state = 152, .external_lex_state = 11}, + [914] = {.lex_state = 152, .external_lex_state = 11}, + [915] = {.lex_state = 152, .external_lex_state = 11}, + [916] = {.lex_state = 152, .external_lex_state = 11}, + [917] = {.lex_state = 152, .external_lex_state = 11}, + [918] = {.lex_state = 152, .external_lex_state = 11}, + [919] = {.lex_state = 152, .external_lex_state = 11}, + [920] = {.lex_state = 152, .external_lex_state = 11}, + [921] = {.lex_state = 152, .external_lex_state = 11}, + [922] = {.lex_state = 152, .external_lex_state = 11}, + [923] = {.lex_state = 152, .external_lex_state = 11}, + [924] = {.lex_state = 152, .external_lex_state = 11}, + [925] = {.lex_state = 156, .external_lex_state = 4}, + [926] = {.lex_state = 154, .external_lex_state = 11}, + [927] = {.lex_state = 156, .external_lex_state = 4}, + [928] = {.lex_state = 154, .external_lex_state = 11}, + [929] = {.lex_state = 154, .external_lex_state = 11}, + [930] = {.lex_state = 154, .external_lex_state = 11}, + [931] = {.lex_state = 154, .external_lex_state = 11}, + [932] = {.lex_state = 154, .external_lex_state = 11}, + [933] = {.lex_state = 154, .external_lex_state = 11}, + [934] = {.lex_state = 154, .external_lex_state = 11}, + [935] = {.lex_state = 154, .external_lex_state = 11}, + [936] = {.lex_state = 154, .external_lex_state = 11}, + [937] = {.lex_state = 154, .external_lex_state = 11}, + [938] = {.lex_state = 154, .external_lex_state = 11}, + [939] = {.lex_state = 154, .external_lex_state = 11}, + [940] = {.lex_state = 154, .external_lex_state = 11}, + [941] = {.lex_state = 154, .external_lex_state = 11}, + [942] = {.lex_state = 154, .external_lex_state = 11}, + [943] = {.lex_state = 154, .external_lex_state = 11}, + [944] = {.lex_state = 154, .external_lex_state = 11}, + [945] = {.lex_state = 154, .external_lex_state = 11}, + [946] = {.lex_state = 154, .external_lex_state = 11}, + [947] = {.lex_state = 154, .external_lex_state = 11}, + [948] = {.lex_state = 154, .external_lex_state = 11}, + [949] = {.lex_state = 154, .external_lex_state = 11}, + [950] = {.lex_state = 154, .external_lex_state = 11}, + [951] = {.lex_state = 154, .external_lex_state = 11}, + [952] = {.lex_state = 154, .external_lex_state = 11}, + [953] = {.lex_state = 154, .external_lex_state = 11}, + [954] = {.lex_state = 154, .external_lex_state = 11}, + [955] = {.lex_state = 156, .external_lex_state = 4}, + [956] = {.lex_state = 154, .external_lex_state = 11}, + [957] = {.lex_state = 154, .external_lex_state = 11}, + [958] = {.lex_state = 154, .external_lex_state = 11}, + [959] = {.lex_state = 154, .external_lex_state = 11}, + [960] = {.lex_state = 154, .external_lex_state = 11}, + [961] = {.lex_state = 154, .external_lex_state = 11}, + [962] = {.lex_state = 154, .external_lex_state = 11}, + [963] = {.lex_state = 154, .external_lex_state = 11}, + [964] = {.lex_state = 154, .external_lex_state = 11}, + [965] = {.lex_state = 154, .external_lex_state = 11}, + [966] = {.lex_state = 154, .external_lex_state = 11}, + [967] = {.lex_state = 154, .external_lex_state = 11}, + [968] = {.lex_state = 156, .external_lex_state = 4}, + [969] = {.lex_state = 154, .external_lex_state = 11}, + [970] = {.lex_state = 154, .external_lex_state = 11}, + [971] = {.lex_state = 154, .external_lex_state = 11}, + [972] = {.lex_state = 154, .external_lex_state = 11}, + [973] = {.lex_state = 154, .external_lex_state = 11}, + [974] = {.lex_state = 154, .external_lex_state = 11}, + [975] = {.lex_state = 154, .external_lex_state = 11}, + [976] = {.lex_state = 154, .external_lex_state = 11}, + [977] = {.lex_state = 154, .external_lex_state = 11}, + [978] = {.lex_state = 154, .external_lex_state = 11}, + [979] = {.lex_state = 154, .external_lex_state = 11}, + [980] = {.lex_state = 154, .external_lex_state = 11}, + [981] = {.lex_state = 154, .external_lex_state = 11}, + [982] = {.lex_state = 154, .external_lex_state = 11}, + [983] = {.lex_state = 154, .external_lex_state = 11}, + [984] = {.lex_state = 154, .external_lex_state = 11}, + [985] = {.lex_state = 154, .external_lex_state = 11}, + [986] = {.lex_state = 154, .external_lex_state = 11}, + [987] = {.lex_state = 154, .external_lex_state = 11}, + [988] = {.lex_state = 154, .external_lex_state = 11}, + [989] = {.lex_state = 154, .external_lex_state = 11}, + [990] = {.lex_state = 154, .external_lex_state = 11}, + [991] = {.lex_state = 154, .external_lex_state = 11}, + [992] = {.lex_state = 154, .external_lex_state = 11}, + [993] = {.lex_state = 154, .external_lex_state = 11}, + [994] = {.lex_state = 154, .external_lex_state = 11}, + [995] = {.lex_state = 154, .external_lex_state = 11}, + [996] = {.lex_state = 154, .external_lex_state = 11}, + [997] = {.lex_state = 154, .external_lex_state = 11}, + [998] = {.lex_state = 154, .external_lex_state = 11}, + [999] = {.lex_state = 154, .external_lex_state = 11}, + [1000] = {.lex_state = 154, .external_lex_state = 11}, + [1001] = {.lex_state = 154, .external_lex_state = 11}, + [1002] = {.lex_state = 154, .external_lex_state = 11}, + [1003] = {.lex_state = 156, .external_lex_state = 4}, + [1004] = {.lex_state = 154, .external_lex_state = 11}, + [1005] = {.lex_state = 154, .external_lex_state = 11}, + [1006] = {.lex_state = 154, .external_lex_state = 11}, + [1007] = {.lex_state = 154, .external_lex_state = 11}, + [1008] = {.lex_state = 154, .external_lex_state = 11}, + [1009] = {.lex_state = 154, .external_lex_state = 11}, + [1010] = {.lex_state = 154, .external_lex_state = 11}, + [1011] = {.lex_state = 154, .external_lex_state = 11}, + [1012] = {.lex_state = 154, .external_lex_state = 11}, + [1013] = {.lex_state = 154, .external_lex_state = 11}, + [1014] = {.lex_state = 154, .external_lex_state = 11}, + [1015] = {.lex_state = 154, .external_lex_state = 11}, + [1016] = {.lex_state = 154, .external_lex_state = 11}, + [1017] = {.lex_state = 154, .external_lex_state = 11}, + [1018] = {.lex_state = 154, .external_lex_state = 11}, + [1019] = {.lex_state = 154, .external_lex_state = 11}, + [1020] = {.lex_state = 154, .external_lex_state = 11}, + [1021] = {.lex_state = 154, .external_lex_state = 11}, + [1022] = {.lex_state = 154, .external_lex_state = 11}, + [1023] = {.lex_state = 154, .external_lex_state = 11}, + [1024] = {.lex_state = 154, .external_lex_state = 11}, + [1025] = {.lex_state = 154, .external_lex_state = 11}, + [1026] = {.lex_state = 154, .external_lex_state = 11}, + [1027] = {.lex_state = 154, .external_lex_state = 11}, + [1028] = {.lex_state = 154, .external_lex_state = 11}, + [1029] = {.lex_state = 154, .external_lex_state = 11}, + [1030] = {.lex_state = 154, .external_lex_state = 11}, + [1031] = {.lex_state = 154, .external_lex_state = 11}, + [1032] = {.lex_state = 154, .external_lex_state = 11}, + [1033] = {.lex_state = 154, .external_lex_state = 11}, + [1034] = {.lex_state = 154, .external_lex_state = 11}, + [1035] = {.lex_state = 154, .external_lex_state = 11}, + [1036] = {.lex_state = 154, .external_lex_state = 11}, + [1037] = {.lex_state = 154, .external_lex_state = 11}, + [1038] = {.lex_state = 154, .external_lex_state = 11}, + [1039] = {.lex_state = 154, .external_lex_state = 11}, + [1040] = {.lex_state = 154, .external_lex_state = 11}, + [1041] = {.lex_state = 154, .external_lex_state = 11}, + [1042] = {.lex_state = 154, .external_lex_state = 11}, + [1043] = {.lex_state = 154, .external_lex_state = 11}, + [1044] = {.lex_state = 154, .external_lex_state = 11}, + [1045] = {.lex_state = 154, .external_lex_state = 11}, + [1046] = {.lex_state = 154, .external_lex_state = 11}, + [1047] = {.lex_state = 154, .external_lex_state = 11}, + [1048] = {.lex_state = 156, .external_lex_state = 4}, + [1049] = {.lex_state = 154, .external_lex_state = 11}, + [1050] = {.lex_state = 154, .external_lex_state = 11}, + [1051] = {.lex_state = 154, .external_lex_state = 11}, + [1052] = {.lex_state = 154, .external_lex_state = 11}, + [1053] = {.lex_state = 154, .external_lex_state = 11}, + [1054] = {.lex_state = 154, .external_lex_state = 11}, + [1055] = {.lex_state = 154, .external_lex_state = 11}, + [1056] = {.lex_state = 154, .external_lex_state = 11}, + [1057] = {.lex_state = 154, .external_lex_state = 11}, + [1058] = {.lex_state = 156, .external_lex_state = 4}, + [1059] = {.lex_state = 156, .external_lex_state = 4}, + [1060] = {.lex_state = 154, .external_lex_state = 11}, + [1061] = {.lex_state = 156, .external_lex_state = 4}, + [1062] = {.lex_state = 154, .external_lex_state = 11}, + [1063] = {.lex_state = 154, .external_lex_state = 11}, + [1064] = {.lex_state = 154, .external_lex_state = 11}, + [1065] = {.lex_state = 154, .external_lex_state = 11}, + [1066] = {.lex_state = 154, .external_lex_state = 11}, + [1067] = {.lex_state = 154, .external_lex_state = 11}, + [1068] = {.lex_state = 154, .external_lex_state = 11}, + [1069] = {.lex_state = 154, .external_lex_state = 11}, + [1070] = {.lex_state = 154, .external_lex_state = 11}, + [1071] = {.lex_state = 154, .external_lex_state = 11}, + [1072] = {.lex_state = 154, .external_lex_state = 11}, + [1073] = {.lex_state = 154, .external_lex_state = 11}, + [1074] = {.lex_state = 154, .external_lex_state = 11}, + [1075] = {.lex_state = 154, .external_lex_state = 11}, + [1076] = {.lex_state = 154, .external_lex_state = 11}, + [1077] = {.lex_state = 154, .external_lex_state = 11}, + [1078] = {.lex_state = 154, .external_lex_state = 11}, + [1079] = {.lex_state = 154, .external_lex_state = 11}, + [1080] = {.lex_state = 154, .external_lex_state = 11}, + [1081] = {.lex_state = 154, .external_lex_state = 11}, + [1082] = {.lex_state = 156, .external_lex_state = 4}, + [1083] = {.lex_state = 156, .external_lex_state = 4}, + [1084] = {.lex_state = 154, .external_lex_state = 11}, + [1085] = {.lex_state = 154, .external_lex_state = 11}, + [1086] = {.lex_state = 154, .external_lex_state = 11}, + [1087] = {.lex_state = 154, .external_lex_state = 11}, + [1088] = {.lex_state = 154, .external_lex_state = 11}, + [1089] = {.lex_state = 154, .external_lex_state = 11}, + [1090] = {.lex_state = 154, .external_lex_state = 11}, + [1091] = {.lex_state = 154, .external_lex_state = 11}, + [1092] = {.lex_state = 154, .external_lex_state = 11}, + [1093] = {.lex_state = 154, .external_lex_state = 11}, + [1094] = {.lex_state = 154, .external_lex_state = 11}, + [1095] = {.lex_state = 154, .external_lex_state = 11}, + [1096] = {.lex_state = 154, .external_lex_state = 11}, + [1097] = {.lex_state = 154, .external_lex_state = 11}, + [1098] = {.lex_state = 154, .external_lex_state = 11}, + [1099] = {.lex_state = 154, .external_lex_state = 11}, + [1100] = {.lex_state = 154, .external_lex_state = 11}, + [1101] = {.lex_state = 154, .external_lex_state = 11}, + [1102] = {.lex_state = 154, .external_lex_state = 11}, + [1103] = {.lex_state = 154, .external_lex_state = 11}, + [1104] = {.lex_state = 154, .external_lex_state = 11}, + [1105] = {.lex_state = 154, .external_lex_state = 11}, + [1106] = {.lex_state = 154, .external_lex_state = 11}, + [1107] = {.lex_state = 156, .external_lex_state = 4}, + [1108] = {.lex_state = 154, .external_lex_state = 11}, + [1109] = {.lex_state = 156, .external_lex_state = 4}, + [1110] = {.lex_state = 154, .external_lex_state = 11}, + [1111] = {.lex_state = 156, .external_lex_state = 4}, + [1112] = {.lex_state = 154, .external_lex_state = 11}, + [1113] = {.lex_state = 154, .external_lex_state = 11}, + [1114] = {.lex_state = 154, .external_lex_state = 11}, + [1115] = {.lex_state = 154, .external_lex_state = 11}, + [1116] = {.lex_state = 156, .external_lex_state = 4}, + [1117] = {.lex_state = 154, .external_lex_state = 11}, + [1118] = {.lex_state = 154, .external_lex_state = 11}, + [1119] = {.lex_state = 154, .external_lex_state = 11}, + [1120] = {.lex_state = 154, .external_lex_state = 11}, + [1121] = {.lex_state = 154, .external_lex_state = 11}, + [1122] = {.lex_state = 154, .external_lex_state = 11}, + [1123] = {.lex_state = 154, .external_lex_state = 11}, + [1124] = {.lex_state = 154, .external_lex_state = 11}, + [1125] = {.lex_state = 154, .external_lex_state = 11}, + [1126] = {.lex_state = 154, .external_lex_state = 11}, + [1127] = {.lex_state = 156, .external_lex_state = 4}, + [1128] = {.lex_state = 154, .external_lex_state = 11}, + [1129] = {.lex_state = 156, .external_lex_state = 4}, + [1130] = {.lex_state = 154, .external_lex_state = 11}, + [1131] = {.lex_state = 156, .external_lex_state = 4}, + [1132] = {.lex_state = 154, .external_lex_state = 11}, + [1133] = {.lex_state = 154, .external_lex_state = 11}, + [1134] = {.lex_state = 154, .external_lex_state = 11}, + [1135] = {.lex_state = 154, .external_lex_state = 11}, + [1136] = {.lex_state = 154, .external_lex_state = 11}, + [1137] = {.lex_state = 154, .external_lex_state = 11}, + [1138] = {.lex_state = 154, .external_lex_state = 11}, + [1139] = {.lex_state = 154, .external_lex_state = 11}, + [1140] = {.lex_state = 154, .external_lex_state = 11}, + [1141] = {.lex_state = 154, .external_lex_state = 11}, + [1142] = {.lex_state = 154, .external_lex_state = 11}, + [1143] = {.lex_state = 154, .external_lex_state = 11}, + [1144] = {.lex_state = 154, .external_lex_state = 11}, + [1145] = {.lex_state = 154, .external_lex_state = 11}, + [1146] = {.lex_state = 154, .external_lex_state = 11}, + [1147] = {.lex_state = 154, .external_lex_state = 11}, + [1148] = {.lex_state = 154, .external_lex_state = 11}, + [1149] = {.lex_state = 154, .external_lex_state = 11}, + [1150] = {.lex_state = 154, .external_lex_state = 11}, + [1151] = {.lex_state = 154, .external_lex_state = 11}, + [1152] = {.lex_state = 156, .external_lex_state = 4}, + [1153] = {.lex_state = 154, .external_lex_state = 11}, + [1154] = {.lex_state = 154, .external_lex_state = 11}, + [1155] = {.lex_state = 154, .external_lex_state = 11}, + [1156] = {.lex_state = 154, .external_lex_state = 11}, + [1157] = {.lex_state = 154, .external_lex_state = 11}, + [1158] = {.lex_state = 154, .external_lex_state = 11}, + [1159] = {.lex_state = 154, .external_lex_state = 11}, + [1160] = {.lex_state = 154, .external_lex_state = 11}, + [1161] = {.lex_state = 154, .external_lex_state = 11}, + [1162] = {.lex_state = 154, .external_lex_state = 11}, + [1163] = {.lex_state = 154, .external_lex_state = 11}, + [1164] = {.lex_state = 156, .external_lex_state = 4}, + [1165] = {.lex_state = 154, .external_lex_state = 11}, + [1166] = {.lex_state = 154, .external_lex_state = 11}, + [1167] = {.lex_state = 154, .external_lex_state = 11}, + [1168] = {.lex_state = 155, .external_lex_state = 4}, + [1169] = {.lex_state = 155, .external_lex_state = 4}, + [1170] = {.lex_state = 155, .external_lex_state = 4}, + [1171] = {.lex_state = 155, .external_lex_state = 4}, + [1172] = {.lex_state = 155, .external_lex_state = 4}, + [1173] = {.lex_state = 155, .external_lex_state = 4}, + [1174] = {.lex_state = 155, .external_lex_state = 4}, + [1175] = {.lex_state = 155, .external_lex_state = 4}, + [1176] = {.lex_state = 155, .external_lex_state = 4}, + [1177] = {.lex_state = 155, .external_lex_state = 4}, + [1178] = {.lex_state = 155, .external_lex_state = 4}, + [1179] = {.lex_state = 155, .external_lex_state = 4}, + [1180] = {.lex_state = 155, .external_lex_state = 4}, + [1181] = {.lex_state = 155, .external_lex_state = 4}, + [1182] = {.lex_state = 155, .external_lex_state = 4}, + [1183] = {.lex_state = 155, .external_lex_state = 4}, + [1184] = {.lex_state = 155, .external_lex_state = 4}, + [1185] = {.lex_state = 155, .external_lex_state = 4}, + [1186] = {.lex_state = 155, .external_lex_state = 4}, + [1187] = {.lex_state = 155, .external_lex_state = 4}, + [1188] = {.lex_state = 18, .external_lex_state = 2}, + [1189] = {.lex_state = 18, .external_lex_state = 2}, + [1190] = {.lex_state = 18, .external_lex_state = 2}, + [1191] = {.lex_state = 18, .external_lex_state = 2}, + [1192] = {.lex_state = 18, .external_lex_state = 2}, + [1193] = {.lex_state = 18, .external_lex_state = 2}, + [1194] = {.lex_state = 18, .external_lex_state = 2}, + [1195] = {.lex_state = 18, .external_lex_state = 2}, + [1196] = {.lex_state = 18, .external_lex_state = 2}, + [1197] = {.lex_state = 324, .external_lex_state = 12}, + [1198] = {.lex_state = 18, .external_lex_state = 2}, + [1199] = {.lex_state = 18, .external_lex_state = 2}, + [1200] = {.lex_state = 324, .external_lex_state = 12}, + [1201] = {.lex_state = 324, .external_lex_state = 12}, + [1202] = {.lex_state = 325, .external_lex_state = 12}, + [1203] = {.lex_state = 20, .external_lex_state = 7}, + [1204] = {.lex_state = 12, .external_lex_state = 12}, [1205] = {.lex_state = 27, .external_lex_state = 13}, - [1206] = {.lex_state = 321, .external_lex_state = 9}, - [1207] = {.lex_state = 321, .external_lex_state = 9}, - [1208] = {.lex_state = 13, .external_lex_state = 9}, - [1209] = {.lex_state = 19, .external_lex_state = 12}, - [1210] = {.lex_state = 321, .external_lex_state = 9}, - [1211] = {.lex_state = 12, .external_lex_state = 9}, - [1212] = {.lex_state = 13, .external_lex_state = 8}, - [1213] = {.lex_state = 321, .external_lex_state = 9}, - [1214] = {.lex_state = 321, .external_lex_state = 9}, - [1215] = {.lex_state = 322, .external_lex_state = 8}, - [1216] = {.lex_state = 321, .external_lex_state = 9}, - [1217] = {.lex_state = 321, .external_lex_state = 9}, - [1218] = {.lex_state = 27, .external_lex_state = 13}, - [1219] = {.lex_state = 321, .external_lex_state = 9}, - [1220] = {.lex_state = 321, .external_lex_state = 9}, - [1221] = {.lex_state = 321, .external_lex_state = 9}, - [1222] = {.lex_state = 13, .external_lex_state = 9}, - [1223] = {.lex_state = 21, .external_lex_state = 2}, - [1224] = {.lex_state = 12, .external_lex_state = 9}, - [1225] = {.lex_state = 19, .external_lex_state = 12}, - [1226] = {.lex_state = 322, .external_lex_state = 11}, - [1227] = {.lex_state = 323, .external_lex_state = 10}, - [1228] = {.lex_state = 19, .external_lex_state = 12}, - [1229] = {.lex_state = 12, .external_lex_state = 9}, - [1230] = {.lex_state = 12, .external_lex_state = 9}, - [1231] = {.lex_state = 19, .external_lex_state = 12}, - [1232] = {.lex_state = 13, .external_lex_state = 9}, - [1233] = {.lex_state = 12, .external_lex_state = 9}, - [1234] = {.lex_state = 323, .external_lex_state = 10}, - [1235] = {.lex_state = 12, .external_lex_state = 9}, - [1236] = {.lex_state = 322, .external_lex_state = 9}, - [1237] = {.lex_state = 20, .external_lex_state = 2}, - [1238] = {.lex_state = 13, .external_lex_state = 9}, - [1239] = {.lex_state = 19, .external_lex_state = 12}, - [1240] = {.lex_state = 19, .external_lex_state = 12}, - [1241] = {.lex_state = 19, .external_lex_state = 12}, - [1242] = {.lex_state = 20, .external_lex_state = 12}, - [1243] = {.lex_state = 19, .external_lex_state = 12}, - [1244] = {.lex_state = 19, .external_lex_state = 12}, - [1245] = {.lex_state = 322, .external_lex_state = 9}, - [1246] = {.lex_state = 20, .external_lex_state = 12}, - [1247] = {.lex_state = 13, .external_lex_state = 9}, - [1248] = {.lex_state = 19, .external_lex_state = 12}, - [1249] = {.lex_state = 322, .external_lex_state = 11}, - [1250] = {.lex_state = 12, .external_lex_state = 9}, - [1251] = {.lex_state = 12, .external_lex_state = 9}, - [1252] = {.lex_state = 19, .external_lex_state = 12}, - [1253] = {.lex_state = 19, .external_lex_state = 12}, - [1254] = {.lex_state = 12, .external_lex_state = 9}, - [1255] = {.lex_state = 19, .external_lex_state = 12}, - [1256] = {.lex_state = 19, .external_lex_state = 12}, - [1257] = {.lex_state = 322, .external_lex_state = 9}, - [1258] = {.lex_state = 19, .external_lex_state = 12}, - [1259] = {.lex_state = 12, .external_lex_state = 9}, - [1260] = {.lex_state = 321, .external_lex_state = 4}, - [1261] = {.lex_state = 321, .external_lex_state = 4}, - [1262] = {.lex_state = 19, .external_lex_state = 12}, - [1263] = {.lex_state = 19, .external_lex_state = 12}, - [1264] = {.lex_state = 19, .external_lex_state = 14}, - [1265] = {.lex_state = 19, .external_lex_state = 12}, - [1266] = {.lex_state = 321, .external_lex_state = 4}, - [1267] = {.lex_state = 324, .external_lex_state = 13}, - [1268] = {.lex_state = 322, .external_lex_state = 9}, - [1269] = {.lex_state = 322, .external_lex_state = 9}, - [1270] = {.lex_state = 12, .external_lex_state = 9}, - [1271] = {.lex_state = 12, .external_lex_state = 9}, - [1272] = {.lex_state = 147, .external_lex_state = 7}, - [1273] = {.lex_state = 19, .external_lex_state = 12}, - [1274] = {.lex_state = 322, .external_lex_state = 9}, - [1275] = {.lex_state = 19, .external_lex_state = 12}, - [1276] = {.lex_state = 19, .external_lex_state = 12}, - [1277] = {.lex_state = 322, .external_lex_state = 9}, - [1278] = {.lex_state = 322, .external_lex_state = 9}, - [1279] = {.lex_state = 19, .external_lex_state = 14}, - [1280] = {.lex_state = 147, .external_lex_state = 7}, - [1281] = {.lex_state = 13, .external_lex_state = 9}, - [1282] = {.lex_state = 323, .external_lex_state = 12}, - [1283] = {.lex_state = 13, .external_lex_state = 9}, - [1284] = {.lex_state = 322, .external_lex_state = 9}, - [1285] = {.lex_state = 19, .external_lex_state = 12}, + [1206] = {.lex_state = 13, .external_lex_state = 12}, + [1207] = {.lex_state = 13, .external_lex_state = 12}, + [1208] = {.lex_state = 27, .external_lex_state = 13}, + [1209] = {.lex_state = 324, .external_lex_state = 12}, + [1210] = {.lex_state = 324, .external_lex_state = 12}, + [1211] = {.lex_state = 324, .external_lex_state = 12}, + [1212] = {.lex_state = 324, .external_lex_state = 12}, + [1213] = {.lex_state = 324, .external_lex_state = 12}, + [1214] = {.lex_state = 20, .external_lex_state = 14}, + [1215] = {.lex_state = 20, .external_lex_state = 14}, + [1216] = {.lex_state = 324, .external_lex_state = 12}, + [1217] = {.lex_state = 324, .external_lex_state = 12}, + [1218] = {.lex_state = 13, .external_lex_state = 12}, + [1219] = {.lex_state = 12, .external_lex_state = 12}, + [1220] = {.lex_state = 324, .external_lex_state = 12}, + [1221] = {.lex_state = 324, .external_lex_state = 12}, + [1222] = {.lex_state = 12, .external_lex_state = 12}, + [1223] = {.lex_state = 324, .external_lex_state = 12}, + [1224] = {.lex_state = 324, .external_lex_state = 12}, + [1225] = {.lex_state = 324, .external_lex_state = 12}, + [1226] = {.lex_state = 324, .external_lex_state = 12}, + [1227] = {.lex_state = 324, .external_lex_state = 12}, + [1228] = {.lex_state = 324, .external_lex_state = 12}, + [1229] = {.lex_state = 324, .external_lex_state = 12}, + [1230] = {.lex_state = 324, .external_lex_state = 12}, + [1231] = {.lex_state = 324, .external_lex_state = 12}, + [1232] = {.lex_state = 324, .external_lex_state = 12}, + [1233] = {.lex_state = 324, .external_lex_state = 12}, + [1234] = {.lex_state = 324, .external_lex_state = 12}, + [1235] = {.lex_state = 324, .external_lex_state = 12}, + [1236] = {.lex_state = 325, .external_lex_state = 12}, + [1237] = {.lex_state = 325, .external_lex_state = 12}, + [1238] = {.lex_state = 324, .external_lex_state = 12}, + [1239] = {.lex_state = 325, .external_lex_state = 12}, + [1240] = {.lex_state = 13, .external_lex_state = 12}, + [1241] = {.lex_state = 13, .external_lex_state = 12}, + [1242] = {.lex_state = 13, .external_lex_state = 12}, + [1243] = {.lex_state = 13, .external_lex_state = 12}, + [1244] = {.lex_state = 13, .external_lex_state = 12}, + [1245] = {.lex_state = 13, .external_lex_state = 12}, + [1246] = {.lex_state = 21, .external_lex_state = 14}, + [1247] = {.lex_state = 13, .external_lex_state = 12}, + [1248] = {.lex_state = 13, .external_lex_state = 12}, + [1249] = {.lex_state = 13, .external_lex_state = 12}, + [1250] = {.lex_state = 13, .external_lex_state = 12}, + [1251] = {.lex_state = 21, .external_lex_state = 14}, + [1252] = {.lex_state = 13, .external_lex_state = 12}, + [1253] = {.lex_state = 13, .external_lex_state = 12}, + [1254] = {.lex_state = 13, .external_lex_state = 12}, + [1255] = {.lex_state = 13, .external_lex_state = 12}, + [1256] = {.lex_state = 322, .external_lex_state = 11}, + [1257] = {.lex_state = 325, .external_lex_state = 12}, + [1258] = {.lex_state = 324, .external_lex_state = 6}, + [1259] = {.lex_state = 18, .external_lex_state = 7}, + [1260] = {.lex_state = 325, .external_lex_state = 12}, + [1261] = {.lex_state = 20, .external_lex_state = 14}, + [1262] = {.lex_state = 20, .external_lex_state = 14}, + [1263] = {.lex_state = 12, .external_lex_state = 12}, + [1264] = {.lex_state = 20, .external_lex_state = 14}, + [1265] = {.lex_state = 325, .external_lex_state = 12}, + [1266] = {.lex_state = 12, .external_lex_state = 12}, + [1267] = {.lex_state = 325, .external_lex_state = 12}, + [1268] = {.lex_state = 20, .external_lex_state = 14}, + [1269] = {.lex_state = 20, .external_lex_state = 14}, + [1270] = {.lex_state = 12, .external_lex_state = 12}, + [1271] = {.lex_state = 29, .external_lex_state = 13}, + [1272] = {.lex_state = 29, .external_lex_state = 13}, + [1273] = {.lex_state = 13, .external_lex_state = 12}, + [1274] = {.lex_state = 324, .external_lex_state = 6}, + [1275] = {.lex_state = 324, .external_lex_state = 6}, + [1276] = {.lex_state = 13, .external_lex_state = 12}, + [1277] = {.lex_state = 326, .external_lex_state = 14}, + [1278] = {.lex_state = 12, .external_lex_state = 12}, + [1279] = {.lex_state = 326, .external_lex_state = 14}, + [1280] = {.lex_state = 12, .external_lex_state = 12}, + [1281] = {.lex_state = 13, .external_lex_state = 12}, + [1282] = {.lex_state = 325, .external_lex_state = 12}, + [1283] = {.lex_state = 13, .external_lex_state = 12}, + [1284] = {.lex_state = 13, .external_lex_state = 12}, + [1285] = {.lex_state = 28, .external_lex_state = 13}, [1286] = {.lex_state = 28, .external_lex_state = 13}, - [1287] = {.lex_state = 147, .external_lex_state = 7}, - [1288] = {.lex_state = 322, .external_lex_state = 9}, - [1289] = {.lex_state = 147, .external_lex_state = 7}, - [1290] = {.lex_state = 21, .external_lex_state = 10}, - [1291] = {.lex_state = 12, .external_lex_state = 9}, - [1292] = {.lex_state = 12, .external_lex_state = 9}, - [1293] = {.lex_state = 322, .external_lex_state = 9}, - [1294] = {.lex_state = 19, .external_lex_state = 12}, - [1295] = {.lex_state = 322, .external_lex_state = 9}, - [1296] = {.lex_state = 12, .external_lex_state = 9}, - [1297] = {.lex_state = 28, .external_lex_state = 13}, - [1298] = {.lex_state = 322, .external_lex_state = 9}, - [1299] = {.lex_state = 322, .external_lex_state = 9}, - [1300] = {.lex_state = 12, .external_lex_state = 9}, - [1301] = {.lex_state = 322, .external_lex_state = 9}, - [1302] = {.lex_state = 322, .external_lex_state = 9}, - [1303] = {.lex_state = 321, .external_lex_state = 4}, - [1304] = {.lex_state = 321, .external_lex_state = 4}, - [1305] = {.lex_state = 321, .external_lex_state = 4}, - [1306] = {.lex_state = 12, .external_lex_state = 9}, - [1307] = {.lex_state = 12, .external_lex_state = 9}, - [1308] = {.lex_state = 322, .external_lex_state = 9}, - [1309] = {.lex_state = 12, .external_lex_state = 9}, - [1310] = {.lex_state = 321, .external_lex_state = 4}, - [1311] = {.lex_state = 322, .external_lex_state = 9}, - [1312] = {.lex_state = 321, .external_lex_state = 4}, - [1313] = {.lex_state = 322, .external_lex_state = 9}, - [1314] = {.lex_state = 322, .external_lex_state = 9}, - [1315] = {.lex_state = 321, .external_lex_state = 4}, - [1316] = {.lex_state = 321, .external_lex_state = 4}, - [1317] = {.lex_state = 13, .external_lex_state = 9}, - [1318] = {.lex_state = 13, .external_lex_state = 9}, - [1319] = {.lex_state = 20, .external_lex_state = 10}, - [1320] = {.lex_state = 13, .external_lex_state = 9}, - [1321] = {.lex_state = 322, .external_lex_state = 9}, - [1322] = {.lex_state = 20, .external_lex_state = 10}, - [1323] = {.lex_state = 13, .external_lex_state = 9}, - [1324] = {.lex_state = 12, .external_lex_state = 9}, - [1325] = {.lex_state = 13, .external_lex_state = 9}, - [1326] = {.lex_state = 13, .external_lex_state = 9}, - [1327] = {.lex_state = 29, .external_lex_state = 13}, - [1328] = {.lex_state = 13, .external_lex_state = 9}, - [1329] = {.lex_state = 323, .external_lex_state = 2}, - [1330] = {.lex_state = 13, .external_lex_state = 9}, - [1331] = {.lex_state = 13, .external_lex_state = 9}, - [1332] = {.lex_state = 21, .external_lex_state = 12}, - [1333] = {.lex_state = 322, .external_lex_state = 9}, - [1334] = {.lex_state = 12, .external_lex_state = 9}, - [1335] = {.lex_state = 12, .external_lex_state = 9}, - [1336] = {.lex_state = 12, .external_lex_state = 9}, - [1337] = {.lex_state = 324, .external_lex_state = 13}, - [1338] = {.lex_state = 29, .external_lex_state = 13}, - [1339] = {.lex_state = 13, .external_lex_state = 9}, - [1340] = {.lex_state = 12, .external_lex_state = 9}, - [1341] = {.lex_state = 12, .external_lex_state = 11}, - [1342] = {.lex_state = 323, .external_lex_state = 12}, - [1343] = {.lex_state = 13, .external_lex_state = 9}, - [1344] = {.lex_state = 13, .external_lex_state = 9}, - [1345] = {.lex_state = 13, .external_lex_state = 9}, - [1346] = {.lex_state = 21, .external_lex_state = 12}, - [1347] = {.lex_state = 12, .external_lex_state = 11}, - [1348] = {.lex_state = 13, .external_lex_state = 9}, - [1349] = {.lex_state = 13, .external_lex_state = 9}, - [1350] = {.lex_state = 322, .external_lex_state = 9}, - [1351] = {.lex_state = 13, .external_lex_state = 9}, - [1352] = {.lex_state = 13, .external_lex_state = 9}, - [1353] = {.lex_state = 13, .external_lex_state = 11}, - [1354] = {.lex_state = 13, .external_lex_state = 11}, - [1355] = {.lex_state = 19, .external_lex_state = 12}, - [1356] = {.lex_state = 21, .external_lex_state = 10}, - [1357] = {.lex_state = 20, .external_lex_state = 12}, - [1358] = {.lex_state = 16, .external_lex_state = 9}, - [1359] = {.lex_state = 17, .external_lex_state = 8}, - [1360] = {.lex_state = 13, .external_lex_state = 4}, - [1361] = {.lex_state = 15, .external_lex_state = 8}, - [1362] = {.lex_state = 323, .external_lex_state = 12}, - [1363] = {.lex_state = 14, .external_lex_state = 8}, - [1364] = {.lex_state = 322, .external_lex_state = 4}, - [1365] = {.lex_state = 323, .external_lex_state = 12}, - [1366] = {.lex_state = 323, .external_lex_state = 12}, - [1367] = {.lex_state = 322, .external_lex_state = 4}, - [1368] = {.lex_state = 20, .external_lex_state = 12}, + [1287] = {.lex_state = 324, .external_lex_state = 6}, + [1288] = {.lex_state = 324, .external_lex_state = 6}, + [1289] = {.lex_state = 324, .external_lex_state = 6}, + [1290] = {.lex_state = 324, .external_lex_state = 6}, + [1291] = {.lex_state = 324, .external_lex_state = 6}, + [1292] = {.lex_state = 13, .external_lex_state = 12}, + [1293] = {.lex_state = 20, .external_lex_state = 14}, + [1294] = {.lex_state = 20, .external_lex_state = 14}, + [1295] = {.lex_state = 20, .external_lex_state = 14}, + [1296] = {.lex_state = 18, .external_lex_state = 14}, + [1297] = {.lex_state = 20, .external_lex_state = 14}, + [1298] = {.lex_state = 20, .external_lex_state = 14}, + [1299] = {.lex_state = 325, .external_lex_state = 12}, + [1300] = {.lex_state = 20, .external_lex_state = 14}, + [1301] = {.lex_state = 12, .external_lex_state = 12}, + [1302] = {.lex_state = 12, .external_lex_state = 12}, + [1303] = {.lex_state = 20, .external_lex_state = 14}, + [1304] = {.lex_state = 20, .external_lex_state = 14}, + [1305] = {.lex_state = 12, .external_lex_state = 12}, + [1306] = {.lex_state = 20, .external_lex_state = 14}, + [1307] = {.lex_state = 20, .external_lex_state = 14}, + [1308] = {.lex_state = 20, .external_lex_state = 14}, + [1309] = {.lex_state = 12, .external_lex_state = 12}, + [1310] = {.lex_state = 20, .external_lex_state = 14}, + [1311] = {.lex_state = 20, .external_lex_state = 14}, + [1312] = {.lex_state = 20, .external_lex_state = 14}, + [1313] = {.lex_state = 12, .external_lex_state = 12}, + [1314] = {.lex_state = 12, .external_lex_state = 12}, + [1315] = {.lex_state = 20, .external_lex_state = 14}, + [1316] = {.lex_state = 20, .external_lex_state = 14}, + [1317] = {.lex_state = 20, .external_lex_state = 14}, + [1318] = {.lex_state = 20, .external_lex_state = 14}, + [1319] = {.lex_state = 12, .external_lex_state = 12}, + [1320] = {.lex_state = 12, .external_lex_state = 12}, + [1321] = {.lex_state = 12, .external_lex_state = 12}, + [1322] = {.lex_state = 12, .external_lex_state = 12}, + [1323] = {.lex_state = 12, .external_lex_state = 12}, + [1324] = {.lex_state = 12, .external_lex_state = 12}, + [1325] = {.lex_state = 12, .external_lex_state = 12}, + [1326] = {.lex_state = 12, .external_lex_state = 12}, + [1327] = {.lex_state = 12, .external_lex_state = 12}, + [1328] = {.lex_state = 12, .external_lex_state = 12}, + [1329] = {.lex_state = 12, .external_lex_state = 12}, + [1330] = {.lex_state = 12, .external_lex_state = 12}, + [1331] = {.lex_state = 325, .external_lex_state = 12}, + [1332] = {.lex_state = 322, .external_lex_state = 11}, + [1333] = {.lex_state = 322, .external_lex_state = 11}, + [1334] = {.lex_state = 13, .external_lex_state = 12}, + [1335] = {.lex_state = 322, .external_lex_state = 11}, + [1336] = {.lex_state = 325, .external_lex_state = 12}, + [1337] = {.lex_state = 326, .external_lex_state = 7}, + [1338] = {.lex_state = 325, .external_lex_state = 12}, + [1339] = {.lex_state = 322, .external_lex_state = 11}, + [1340] = {.lex_state = 325, .external_lex_state = 12}, + [1341] = {.lex_state = 325, .external_lex_state = 12}, + [1342] = {.lex_state = 325, .external_lex_state = 12}, + [1343] = {.lex_state = 325, .external_lex_state = 12}, + [1344] = {.lex_state = 325, .external_lex_state = 12}, + [1345] = {.lex_state = 325, .external_lex_state = 12}, + [1346] = {.lex_state = 325, .external_lex_state = 12}, + [1347] = {.lex_state = 13, .external_lex_state = 12}, + [1348] = {.lex_state = 325, .external_lex_state = 12}, + [1349] = {.lex_state = 13, .external_lex_state = 12}, + [1350] = {.lex_state = 21, .external_lex_state = 7}, + [1351] = {.lex_state = 327, .external_lex_state = 13}, + [1352] = {.lex_state = 325, .external_lex_state = 12}, + [1353] = {.lex_state = 325, .external_lex_state = 12}, + [1354] = {.lex_state = 325, .external_lex_state = 12}, + [1355] = {.lex_state = 325, .external_lex_state = 12}, + [1356] = {.lex_state = 325, .external_lex_state = 12}, + [1357] = {.lex_state = 327, .external_lex_state = 13}, + [1358] = {.lex_state = 18, .external_lex_state = 14}, + [1359] = {.lex_state = 326, .external_lex_state = 14}, + [1360] = {.lex_state = 21, .external_lex_state = 14}, + [1361] = {.lex_state = 326, .external_lex_state = 14}, + [1362] = {.lex_state = 326, .external_lex_state = 14}, + [1363] = {.lex_state = 326, .external_lex_state = 14}, + [1364] = {.lex_state = 326, .external_lex_state = 14}, + [1365] = {.lex_state = 21, .external_lex_state = 14}, + [1366] = {.lex_state = 21, .external_lex_state = 14}, + [1367] = {.lex_state = 21, .external_lex_state = 14}, + [1368] = {.lex_state = 326, .external_lex_state = 14}, [1369] = {.lex_state = 21, .external_lex_state = 14}, - [1370] = {.lex_state = 16, .external_lex_state = 8}, - [1371] = {.lex_state = 17, .external_lex_state = 9}, + [1370] = {.lex_state = 21, .external_lex_state = 14}, + [1371] = {.lex_state = 21, .external_lex_state = 14}, [1372] = {.lex_state = 21, .external_lex_state = 14}, - [1373] = {.lex_state = 19, .external_lex_state = 2}, - [1374] = {.lex_state = 14, .external_lex_state = 9}, - [1375] = {.lex_state = 323, .external_lex_state = 12}, - [1376] = {.lex_state = 19, .external_lex_state = 2}, - [1377] = {.lex_state = 14, .external_lex_state = 8}, - [1378] = {.lex_state = 323, .external_lex_state = 12}, - [1379] = {.lex_state = 322, .external_lex_state = 4}, - [1380] = {.lex_state = 20, .external_lex_state = 12}, - [1381] = {.lex_state = 323, .external_lex_state = 12}, - [1382] = {.lex_state = 13, .external_lex_state = 4}, - [1383] = {.lex_state = 19, .external_lex_state = 2}, - [1384] = {.lex_state = 17, .external_lex_state = 8}, - [1385] = {.lex_state = 323, .external_lex_state = 12}, - [1386] = {.lex_state = 322, .external_lex_state = 4}, - [1387] = {.lex_state = 323, .external_lex_state = 12}, - [1388] = {.lex_state = 19, .external_lex_state = 2}, - [1389] = {.lex_state = 323, .external_lex_state = 12}, - [1390] = {.lex_state = 16, .external_lex_state = 9}, - [1391] = {.lex_state = 323, .external_lex_state = 12}, - [1392] = {.lex_state = 14, .external_lex_state = 9}, - [1393] = {.lex_state = 323, .external_lex_state = 14}, - [1394] = {.lex_state = 20, .external_lex_state = 14}, - [1395] = {.lex_state = 323, .external_lex_state = 12}, - [1396] = {.lex_state = 15, .external_lex_state = 9}, - [1397] = {.lex_state = 16, .external_lex_state = 9}, - [1398] = {.lex_state = 322, .external_lex_state = 4}, - [1399] = {.lex_state = 20, .external_lex_state = 14}, - [1400] = {.lex_state = 19, .external_lex_state = 2}, - [1401] = {.lex_state = 21, .external_lex_state = 12}, - [1402] = {.lex_state = 12, .external_lex_state = 4}, - [1403] = {.lex_state = 17, .external_lex_state = 9}, - [1404] = {.lex_state = 12, .external_lex_state = 4}, - [1405] = {.lex_state = 19, .external_lex_state = 2}, - [1406] = {.lex_state = 17, .external_lex_state = 9}, - [1407] = {.lex_state = 19, .external_lex_state = 2}, - [1408] = {.lex_state = 20, .external_lex_state = 12}, - [1409] = {.lex_state = 323, .external_lex_state = 12}, - [1410] = {.lex_state = 20, .external_lex_state = 12}, - [1411] = {.lex_state = 13, .external_lex_state = 4}, - [1412] = {.lex_state = 12, .external_lex_state = 4}, - [1413] = {.lex_state = 15, .external_lex_state = 8}, - [1414] = {.lex_state = 19, .external_lex_state = 2}, - [1415] = {.lex_state = 14, .external_lex_state = 9}, - [1416] = {.lex_state = 20, .external_lex_state = 12}, - [1417] = {.lex_state = 19, .external_lex_state = 2}, - [1418] = {.lex_state = 322, .external_lex_state = 15}, - [1419] = {.lex_state = 19, .external_lex_state = 2}, - [1420] = {.lex_state = 322, .external_lex_state = 4}, - [1421] = {.lex_state = 323, .external_lex_state = 12}, - [1422] = {.lex_state = 19, .external_lex_state = 2}, - [1423] = {.lex_state = 323, .external_lex_state = 12}, - [1424] = {.lex_state = 323, .external_lex_state = 12}, - [1425] = {.lex_state = 323, .external_lex_state = 12}, - [1426] = {.lex_state = 12, .external_lex_state = 4}, - [1427] = {.lex_state = 12, .external_lex_state = 4}, - [1428] = {.lex_state = 20, .external_lex_state = 12}, - [1429] = {.lex_state = 20, .external_lex_state = 12}, - [1430] = {.lex_state = 322, .external_lex_state = 15}, - [1431] = {.lex_state = 322, .external_lex_state = 4}, - [1432] = {.lex_state = 20, .external_lex_state = 12}, - [1433] = {.lex_state = 20, .external_lex_state = 12}, - [1434] = {.lex_state = 21, .external_lex_state = 12}, - [1435] = {.lex_state = 13, .external_lex_state = 4}, - [1436] = {.lex_state = 323, .external_lex_state = 14}, - [1437] = {.lex_state = 21, .external_lex_state = 12}, - [1438] = {.lex_state = 12, .external_lex_state = 4}, - [1439] = {.lex_state = 20, .external_lex_state = 12}, - [1440] = {.lex_state = 322, .external_lex_state = 15}, - [1441] = {.lex_state = 12, .external_lex_state = 4}, - [1442] = {.lex_state = 20, .external_lex_state = 12}, - [1443] = {.lex_state = 323, .external_lex_state = 12}, - [1444] = {.lex_state = 16, .external_lex_state = 8}, - [1445] = {.lex_state = 322, .external_lex_state = 16}, - [1446] = {.lex_state = 323, .external_lex_state = 12}, - [1447] = {.lex_state = 322, .external_lex_state = 4}, - [1448] = {.lex_state = 19, .external_lex_state = 2}, - [1449] = {.lex_state = 13, .external_lex_state = 4}, - [1450] = {.lex_state = 12, .external_lex_state = 4}, - [1451] = {.lex_state = 20, .external_lex_state = 12}, - [1452] = {.lex_state = 13, .external_lex_state = 4}, - [1453] = {.lex_state = 323, .external_lex_state = 12}, - [1454] = {.lex_state = 21, .external_lex_state = 12}, - [1455] = {.lex_state = 21, .external_lex_state = 12}, - [1456] = {.lex_state = 21, .external_lex_state = 12}, - [1457] = {.lex_state = 20, .external_lex_state = 12}, - [1458] = {.lex_state = 20, .external_lex_state = 12}, - [1459] = {.lex_state = 20, .external_lex_state = 12}, - [1460] = {.lex_state = 20, .external_lex_state = 12}, - [1461] = {.lex_state = 323, .external_lex_state = 12}, - [1462] = {.lex_state = 15, .external_lex_state = 9}, - [1463] = {.lex_state = 13, .external_lex_state = 4}, - [1464] = {.lex_state = 323, .external_lex_state = 12}, - [1465] = {.lex_state = 322, .external_lex_state = 4}, - [1466] = {.lex_state = 20, .external_lex_state = 12}, - [1467] = {.lex_state = 20, .external_lex_state = 12}, - [1468] = {.lex_state = 20, .external_lex_state = 12}, - [1469] = {.lex_state = 13, .external_lex_state = 4}, - [1470] = {.lex_state = 21, .external_lex_state = 12}, - [1471] = {.lex_state = 21, .external_lex_state = 12}, - [1472] = {.lex_state = 21, .external_lex_state = 12}, - [1473] = {.lex_state = 13, .external_lex_state = 4}, - [1474] = {.lex_state = 15, .external_lex_state = 9}, - [1475] = {.lex_state = 323, .external_lex_state = 12}, - [1476] = {.lex_state = 21, .external_lex_state = 12}, - [1477] = {.lex_state = 20, .external_lex_state = 12}, - [1478] = {.lex_state = 21, .external_lex_state = 12}, - [1479] = {.lex_state = 20, .external_lex_state = 12}, - [1480] = {.lex_state = 21, .external_lex_state = 12}, - [1481] = {.lex_state = 20, .external_lex_state = 12}, - [1482] = {.lex_state = 322, .external_lex_state = 4}, - [1483] = {.lex_state = 21, .external_lex_state = 12}, - [1484] = {.lex_state = 12, .external_lex_state = 4}, - [1485] = {.lex_state = 12, .external_lex_state = 4}, - [1486] = {.lex_state = 21, .external_lex_state = 12}, - [1487] = {.lex_state = 21, .external_lex_state = 12}, - [1488] = {.lex_state = 21, .external_lex_state = 12}, - [1489] = {.lex_state = 21, .external_lex_state = 12}, - [1490] = {.lex_state = 21, .external_lex_state = 12}, - [1491] = {.lex_state = 21, .external_lex_state = 12}, - [1492] = {.lex_state = 21, .external_lex_state = 12}, - [1493] = {.lex_state = 21, .external_lex_state = 12}, - [1494] = {.lex_state = 322, .external_lex_state = 16}, - [1495] = {.lex_state = 21, .external_lex_state = 12}, - [1496] = {.lex_state = 21, .external_lex_state = 12}, - [1497] = {.lex_state = 13, .external_lex_state = 4}, - [1498] = {.lex_state = 323, .external_lex_state = 12}, - [1499] = {.lex_state = 16, .external_lex_state = 9}, - [1500] = {.lex_state = 323, .external_lex_state = 2}, - [1501] = {.lex_state = 16, .external_lex_state = 9}, - [1502] = {.lex_state = 16, .external_lex_state = 9}, - [1503] = {.lex_state = 16, .external_lex_state = 9}, - [1504] = {.lex_state = 16, .external_lex_state = 9}, - [1505] = {.lex_state = 16, .external_lex_state = 9}, - [1506] = {.lex_state = 16, .external_lex_state = 9}, - [1507] = {.lex_state = 16, .external_lex_state = 9}, - [1508] = {.lex_state = 16, .external_lex_state = 9}, - [1509] = {.lex_state = 16, .external_lex_state = 9}, - [1510] = {.lex_state = 16, .external_lex_state = 9}, - [1511] = {.lex_state = 16, .external_lex_state = 9}, - [1512] = {.lex_state = 14, .external_lex_state = 9}, - [1513] = {.lex_state = 322, .external_lex_state = 15}, - [1514] = {.lex_state = 14, .external_lex_state = 9}, - [1515] = {.lex_state = 323, .external_lex_state = 2}, - [1516] = {.lex_state = 21, .external_lex_state = 2}, - [1517] = {.lex_state = 323, .external_lex_state = 2}, - [1518] = {.lex_state = 322, .external_lex_state = 15}, - [1519] = {.lex_state = 322, .external_lex_state = 15}, - [1520] = {.lex_state = 323, .external_lex_state = 5}, - [1521] = {.lex_state = 322, .external_lex_state = 15}, - [1522] = {.lex_state = 322, .external_lex_state = 15}, - [1523] = {.lex_state = 323, .external_lex_state = 2}, - [1524] = {.lex_state = 323, .external_lex_state = 2}, - [1525] = {.lex_state = 323, .external_lex_state = 17}, - [1526] = {.lex_state = 322, .external_lex_state = 15}, - [1527] = {.lex_state = 322, .external_lex_state = 15}, - [1528] = {.lex_state = 322, .external_lex_state = 15}, - [1529] = {.lex_state = 322, .external_lex_state = 15}, - [1530] = {.lex_state = 14, .external_lex_state = 9}, - [1531] = {.lex_state = 14, .external_lex_state = 9}, - [1532] = {.lex_state = 14, .external_lex_state = 9}, - [1533] = {.lex_state = 323, .external_lex_state = 17}, - [1534] = {.lex_state = 322, .external_lex_state = 15}, - [1535] = {.lex_state = 14, .external_lex_state = 9}, - [1536] = {.lex_state = 23, .external_lex_state = 2}, - [1537] = {.lex_state = 14, .external_lex_state = 9}, - [1538] = {.lex_state = 14, .external_lex_state = 9}, - [1539] = {.lex_state = 324, .external_lex_state = 18}, - [1540] = {.lex_state = 322, .external_lex_state = 15}, - [1541] = {.lex_state = 322, .external_lex_state = 15}, - [1542] = {.lex_state = 14, .external_lex_state = 9}, - [1543] = {.lex_state = 14, .external_lex_state = 9}, - [1544] = {.lex_state = 14, .external_lex_state = 9}, - [1545] = {.lex_state = 14, .external_lex_state = 9}, - [1546] = {.lex_state = 322, .external_lex_state = 15}, - [1547] = {.lex_state = 322, .external_lex_state = 15}, - [1548] = {.lex_state = 322, .external_lex_state = 15}, - [1549] = {.lex_state = 323, .external_lex_state = 2}, - [1550] = {.lex_state = 322, .external_lex_state = 15}, - [1551] = {.lex_state = 14, .external_lex_state = 9}, - [1552] = {.lex_state = 323, .external_lex_state = 2}, - [1553] = {.lex_state = 14, .external_lex_state = 9}, - [1554] = {.lex_state = 14, .external_lex_state = 9}, - [1555] = {.lex_state = 14, .external_lex_state = 9}, - [1556] = {.lex_state = 14, .external_lex_state = 9}, - [1557] = {.lex_state = 14, .external_lex_state = 9}, - [1558] = {.lex_state = 322, .external_lex_state = 15}, - [1559] = {.lex_state = 14, .external_lex_state = 9}, - [1560] = {.lex_state = 14, .external_lex_state = 9}, - [1561] = {.lex_state = 14, .external_lex_state = 9}, - [1562] = {.lex_state = 14, .external_lex_state = 9}, - [1563] = {.lex_state = 324, .external_lex_state = 18}, - [1564] = {.lex_state = 322, .external_lex_state = 15}, - [1565] = {.lex_state = 14, .external_lex_state = 9}, - [1566] = {.lex_state = 322, .external_lex_state = 15}, - [1567] = {.lex_state = 322, .external_lex_state = 15}, - [1568] = {.lex_state = 322, .external_lex_state = 15}, - [1569] = {.lex_state = 322, .external_lex_state = 15}, - [1570] = {.lex_state = 22, .external_lex_state = 2}, - [1571] = {.lex_state = 30, .external_lex_state = 13}, - [1572] = {.lex_state = 323, .external_lex_state = 2}, - [1573] = {.lex_state = 322, .external_lex_state = 15}, - [1574] = {.lex_state = 21, .external_lex_state = 2}, - [1575] = {.lex_state = 21, .external_lex_state = 2}, - [1576] = {.lex_state = 30, .external_lex_state = 13}, - [1577] = {.lex_state = 21, .external_lex_state = 2}, - [1578] = {.lex_state = 21, .external_lex_state = 2}, - [1579] = {.lex_state = 31, .external_lex_state = 13}, - [1580] = {.lex_state = 15, .external_lex_state = 9}, - [1581] = {.lex_state = 323, .external_lex_state = 2}, - [1582] = {.lex_state = 322, .external_lex_state = 19}, - [1583] = {.lex_state = 323, .external_lex_state = 2}, - [1584] = {.lex_state = 15, .external_lex_state = 9}, - [1585] = {.lex_state = 15, .external_lex_state = 9}, - [1586] = {.lex_state = 25, .external_lex_state = 2}, - [1587] = {.lex_state = 322, .external_lex_state = 19}, - [1588] = {.lex_state = 15, .external_lex_state = 9}, - [1589] = {.lex_state = 15, .external_lex_state = 9}, - [1590] = {.lex_state = 31, .external_lex_state = 13}, - [1591] = {.lex_state = 20, .external_lex_state = 2}, - [1592] = {.lex_state = 25, .external_lex_state = 10}, - [1593] = {.lex_state = 15, .external_lex_state = 9}, - [1594] = {.lex_state = 15, .external_lex_state = 9}, - [1595] = {.lex_state = 15, .external_lex_state = 9}, - [1596] = {.lex_state = 15, .external_lex_state = 9}, - [1597] = {.lex_state = 25, .external_lex_state = 10}, - [1598] = {.lex_state = 15, .external_lex_state = 9}, - [1599] = {.lex_state = 15, .external_lex_state = 11}, - [1600] = {.lex_state = 16, .external_lex_state = 9}, - [1601] = {.lex_state = 15, .external_lex_state = 11}, - [1602] = {.lex_state = 15, .external_lex_state = 9}, - [1603] = {.lex_state = 15, .external_lex_state = 9}, - [1604] = {.lex_state = 15, .external_lex_state = 9}, - [1605] = {.lex_state = 15, .external_lex_state = 9}, - [1606] = {.lex_state = 15, .external_lex_state = 9}, - [1607] = {.lex_state = 22, .external_lex_state = 12}, - [1608] = {.lex_state = 14, .external_lex_state = 11}, - [1609] = {.lex_state = 14, .external_lex_state = 11}, - [1610] = {.lex_state = 15, .external_lex_state = 9}, - [1611] = {.lex_state = 21, .external_lex_state = 2}, - [1612] = {.lex_state = 21, .external_lex_state = 2}, - [1613] = {.lex_state = 21, .external_lex_state = 2}, - [1614] = {.lex_state = 21, .external_lex_state = 2}, - [1615] = {.lex_state = 21, .external_lex_state = 2}, - [1616] = {.lex_state = 21, .external_lex_state = 2}, - [1617] = {.lex_state = 21, .external_lex_state = 2}, - [1618] = {.lex_state = 15, .external_lex_state = 9}, - [1619] = {.lex_state = 23, .external_lex_state = 10}, - [1620] = {.lex_state = 323, .external_lex_state = 20}, - [1621] = {.lex_state = 15, .external_lex_state = 9}, - [1622] = {.lex_state = 20, .external_lex_state = 2}, - [1623] = {.lex_state = 23, .external_lex_state = 10}, - [1624] = {.lex_state = 323, .external_lex_state = 20}, - [1625] = {.lex_state = 20, .external_lex_state = 2}, - [1626] = {.lex_state = 15, .external_lex_state = 9}, - [1627] = {.lex_state = 20, .external_lex_state = 2}, - [1628] = {.lex_state = 20, .external_lex_state = 2}, - [1629] = {.lex_state = 32, .external_lex_state = 13}, - [1630] = {.lex_state = 22, .external_lex_state = 10}, - [1631] = {.lex_state = 25, .external_lex_state = 12}, - [1632] = {.lex_state = 15, .external_lex_state = 9}, - [1633] = {.lex_state = 22, .external_lex_state = 10}, - [1634] = {.lex_state = 25, .external_lex_state = 12}, - [1635] = {.lex_state = 32, .external_lex_state = 13}, - [1636] = {.lex_state = 323, .external_lex_state = 2}, - [1637] = {.lex_state = 33, .external_lex_state = 13}, - [1638] = {.lex_state = 323, .external_lex_state = 2}, - [1639] = {.lex_state = 24, .external_lex_state = 12}, - [1640] = {.lex_state = 15, .external_lex_state = 9}, - [1641] = {.lex_state = 24, .external_lex_state = 12}, - [1642] = {.lex_state = 33, .external_lex_state = 13}, - [1643] = {.lex_state = 17, .external_lex_state = 11}, - [1644] = {.lex_state = 17, .external_lex_state = 11}, - [1645] = {.lex_state = 15, .external_lex_state = 9}, - [1646] = {.lex_state = 16, .external_lex_state = 11}, - [1647] = {.lex_state = 16, .external_lex_state = 11}, - [1648] = {.lex_state = 17, .external_lex_state = 9}, - [1649] = {.lex_state = 17, .external_lex_state = 9}, - [1650] = {.lex_state = 17, .external_lex_state = 9}, - [1651] = {.lex_state = 17, .external_lex_state = 9}, - [1652] = {.lex_state = 17, .external_lex_state = 9}, - [1653] = {.lex_state = 24, .external_lex_state = 2}, - [1654] = {.lex_state = 16, .external_lex_state = 9}, - [1655] = {.lex_state = 20, .external_lex_state = 2}, - [1656] = {.lex_state = 20, .external_lex_state = 2}, - [1657] = {.lex_state = 20, .external_lex_state = 2}, - [1658] = {.lex_state = 20, .external_lex_state = 2}, - [1659] = {.lex_state = 16, .external_lex_state = 9}, - [1660] = {.lex_state = 20, .external_lex_state = 2}, - [1661] = {.lex_state = 20, .external_lex_state = 2}, - [1662] = {.lex_state = 20, .external_lex_state = 2}, - [1663] = {.lex_state = 16, .external_lex_state = 9}, - [1664] = {.lex_state = 17, .external_lex_state = 9}, - [1665] = {.lex_state = 17, .external_lex_state = 9}, - [1666] = {.lex_state = 24, .external_lex_state = 10}, - [1667] = {.lex_state = 17, .external_lex_state = 9}, - [1668] = {.lex_state = 17, .external_lex_state = 9}, - [1669] = {.lex_state = 17, .external_lex_state = 9}, - [1670] = {.lex_state = 24, .external_lex_state = 10}, - [1671] = {.lex_state = 16, .external_lex_state = 9}, - [1672] = {.lex_state = 17, .external_lex_state = 9}, - [1673] = {.lex_state = 16, .external_lex_state = 9}, - [1674] = {.lex_state = 17, .external_lex_state = 9}, - [1675] = {.lex_state = 17, .external_lex_state = 9}, - [1676] = {.lex_state = 17, .external_lex_state = 9}, - [1677] = {.lex_state = 17, .external_lex_state = 9}, - [1678] = {.lex_state = 17, .external_lex_state = 9}, - [1679] = {.lex_state = 17, .external_lex_state = 9}, - [1680] = {.lex_state = 17, .external_lex_state = 9}, - [1681] = {.lex_state = 17, .external_lex_state = 9}, - [1682] = {.lex_state = 17, .external_lex_state = 9}, - [1683] = {.lex_state = 17, .external_lex_state = 9}, - [1684] = {.lex_state = 17, .external_lex_state = 9}, - [1685] = {.lex_state = 17, .external_lex_state = 9}, - [1686] = {.lex_state = 23, .external_lex_state = 12}, - [1687] = {.lex_state = 23, .external_lex_state = 12}, - [1688] = {.lex_state = 16, .external_lex_state = 9}, - [1689] = {.lex_state = 16, .external_lex_state = 9}, - [1690] = {.lex_state = 16, .external_lex_state = 9}, - [1691] = {.lex_state = 22, .external_lex_state = 12}, - [1692] = {.lex_state = 16, .external_lex_state = 9}, - [1693] = {.lex_state = 16, .external_lex_state = 9}, - [1694] = {.lex_state = 15, .external_lex_state = 9}, - [1695] = {.lex_state = 23, .external_lex_state = 12}, - [1696] = {.lex_state = 24, .external_lex_state = 14}, - [1697] = {.lex_state = 148, .external_lex_state = 7}, - [1698] = {.lex_state = 16, .external_lex_state = 4}, - [1699] = {.lex_state = 16, .external_lex_state = 4}, - [1700] = {.lex_state = 16, .external_lex_state = 4}, - [1701] = {.lex_state = 23, .external_lex_state = 12}, - [1702] = {.lex_state = 322, .external_lex_state = 6}, - [1703] = {.lex_state = 23, .external_lex_state = 12}, - [1704] = {.lex_state = 322, .external_lex_state = 6}, - [1705] = {.lex_state = 23, .external_lex_state = 12}, - [1706] = {.lex_state = 322, .external_lex_state = 6}, - [1707] = {.lex_state = 322, .external_lex_state = 6}, - [1708] = {.lex_state = 23, .external_lex_state = 12}, - [1709] = {.lex_state = 322, .external_lex_state = 6}, - [1710] = {.lex_state = 322, .external_lex_state = 6}, - [1711] = {.lex_state = 148, .external_lex_state = 7}, - [1712] = {.lex_state = 148, .external_lex_state = 7}, - [1713] = {.lex_state = 322, .external_lex_state = 6}, - [1714] = {.lex_state = 15, .external_lex_state = 4}, - [1715] = {.lex_state = 23, .external_lex_state = 12}, - [1716] = {.lex_state = 23, .external_lex_state = 12}, - [1717] = {.lex_state = 22, .external_lex_state = 12}, - [1718] = {.lex_state = 15, .external_lex_state = 4}, - [1719] = {.lex_state = 15, .external_lex_state = 4}, - [1720] = {.lex_state = 15, .external_lex_state = 4}, - [1721] = {.lex_state = 15, .external_lex_state = 4}, - [1722] = {.lex_state = 15, .external_lex_state = 4}, - [1723] = {.lex_state = 22, .external_lex_state = 12}, - [1724] = {.lex_state = 15, .external_lex_state = 4}, - [1725] = {.lex_state = 23, .external_lex_state = 12}, - [1726] = {.lex_state = 15, .external_lex_state = 4}, - [1727] = {.lex_state = 15, .external_lex_state = 4}, - [1728] = {.lex_state = 148, .external_lex_state = 7}, - [1729] = {.lex_state = 25, .external_lex_state = 14}, - [1730] = {.lex_state = 15, .external_lex_state = 4}, - [1731] = {.lex_state = 14, .external_lex_state = 4}, - [1732] = {.lex_state = 14, .external_lex_state = 4}, - [1733] = {.lex_state = 151, .external_lex_state = 21}, - [1734] = {.lex_state = 14, .external_lex_state = 4}, - [1735] = {.lex_state = 25, .external_lex_state = 14}, - [1736] = {.lex_state = 14, .external_lex_state = 4}, - [1737] = {.lex_state = 151, .external_lex_state = 21}, - [1738] = {.lex_state = 14, .external_lex_state = 4}, - [1739] = {.lex_state = 14, .external_lex_state = 4}, - [1740] = {.lex_state = 322, .external_lex_state = 6}, - [1741] = {.lex_state = 14, .external_lex_state = 4}, - [1742] = {.lex_state = 322, .external_lex_state = 6}, - [1743] = {.lex_state = 322, .external_lex_state = 6}, - [1744] = {.lex_state = 148, .external_lex_state = 7}, - [1745] = {.lex_state = 23, .external_lex_state = 12}, - [1746] = {.lex_state = 148, .external_lex_state = 7}, - [1747] = {.lex_state = 323, .external_lex_state = 20}, - [1748] = {.lex_state = 323, .external_lex_state = 20}, - [1749] = {.lex_state = 22, .external_lex_state = 12}, - [1750] = {.lex_state = 23, .external_lex_state = 12}, - [1751] = {.lex_state = 23, .external_lex_state = 14}, - [1752] = {.lex_state = 323, .external_lex_state = 20}, - [1753] = {.lex_state = 23, .external_lex_state = 14}, - [1754] = {.lex_state = 323, .external_lex_state = 20}, - [1755] = {.lex_state = 323, .external_lex_state = 20}, - [1756] = {.lex_state = 25, .external_lex_state = 12}, - [1757] = {.lex_state = 23, .external_lex_state = 12}, - [1758] = {.lex_state = 23, .external_lex_state = 12}, - [1759] = {.lex_state = 22, .external_lex_state = 14}, - [1760] = {.lex_state = 25, .external_lex_state = 12}, - [1761] = {.lex_state = 22, .external_lex_state = 14}, - [1762] = {.lex_state = 24, .external_lex_state = 12}, - [1763] = {.lex_state = 25, .external_lex_state = 12}, - [1764] = {.lex_state = 323, .external_lex_state = 20}, - [1765] = {.lex_state = 22, .external_lex_state = 12}, - [1766] = {.lex_state = 323, .external_lex_state = 20}, - [1767] = {.lex_state = 22, .external_lex_state = 12}, - [1768] = {.lex_state = 323, .external_lex_state = 20}, - [1769] = {.lex_state = 148, .external_lex_state = 7}, - [1770] = {.lex_state = 23, .external_lex_state = 12}, - [1771] = {.lex_state = 323, .external_lex_state = 20}, - [1772] = {.lex_state = 323, .external_lex_state = 20}, - [1773] = {.lex_state = 24, .external_lex_state = 12}, - [1774] = {.lex_state = 323, .external_lex_state = 22}, - [1775] = {.lex_state = 25, .external_lex_state = 12}, - [1776] = {.lex_state = 323, .external_lex_state = 20}, - [1777] = {.lex_state = 25, .external_lex_state = 12}, - [1778] = {.lex_state = 24, .external_lex_state = 12}, - [1779] = {.lex_state = 17, .external_lex_state = 4}, - [1780] = {.lex_state = 323, .external_lex_state = 20}, - [1781] = {.lex_state = 17, .external_lex_state = 4}, - [1782] = {.lex_state = 323, .external_lex_state = 20}, - [1783] = {.lex_state = 323, .external_lex_state = 20}, - [1784] = {.lex_state = 323, .external_lex_state = 20}, - [1785] = {.lex_state = 17, .external_lex_state = 4}, - [1786] = {.lex_state = 323, .external_lex_state = 20}, - [1787] = {.lex_state = 23, .external_lex_state = 12}, - [1788] = {.lex_state = 17, .external_lex_state = 4}, - [1789] = {.lex_state = 323, .external_lex_state = 20}, - [1790] = {.lex_state = 323, .external_lex_state = 20}, - [1791] = {.lex_state = 323, .external_lex_state = 20}, - [1792] = {.lex_state = 148, .external_lex_state = 7}, - [1793] = {.lex_state = 17, .external_lex_state = 4}, - [1794] = {.lex_state = 24, .external_lex_state = 12}, - [1795] = {.lex_state = 22, .external_lex_state = 12}, - [1796] = {.lex_state = 323, .external_lex_state = 20}, - [1797] = {.lex_state = 323, .external_lex_state = 20}, - [1798] = {.lex_state = 323, .external_lex_state = 20}, - [1799] = {.lex_state = 17, .external_lex_state = 4}, - [1800] = {.lex_state = 24, .external_lex_state = 12}, - [1801] = {.lex_state = 323, .external_lex_state = 20}, - [1802] = {.lex_state = 25, .external_lex_state = 12}, - [1803] = {.lex_state = 16, .external_lex_state = 4}, - [1804] = {.lex_state = 25, .external_lex_state = 12}, - [1805] = {.lex_state = 22, .external_lex_state = 12}, - [1806] = {.lex_state = 16, .external_lex_state = 4}, - [1807] = {.lex_state = 25, .external_lex_state = 12}, - [1808] = {.lex_state = 16, .external_lex_state = 4}, - [1809] = {.lex_state = 16, .external_lex_state = 4}, - [1810] = {.lex_state = 25, .external_lex_state = 12}, - [1811] = {.lex_state = 25, .external_lex_state = 12}, - [1812] = {.lex_state = 22, .external_lex_state = 12}, - [1813] = {.lex_state = 16, .external_lex_state = 4}, - [1814] = {.lex_state = 16, .external_lex_state = 4}, - [1815] = {.lex_state = 25, .external_lex_state = 12}, - [1816] = {.lex_state = 16, .external_lex_state = 4}, - [1817] = {.lex_state = 23, .external_lex_state = 12}, - [1818] = {.lex_state = 25, .external_lex_state = 12}, - [1819] = {.lex_state = 25, .external_lex_state = 12}, - [1820] = {.lex_state = 25, .external_lex_state = 12}, - [1821] = {.lex_state = 25, .external_lex_state = 12}, - [1822] = {.lex_state = 25, .external_lex_state = 12}, - [1823] = {.lex_state = 25, .external_lex_state = 12}, - [1824] = {.lex_state = 25, .external_lex_state = 12}, - [1825] = {.lex_state = 25, .external_lex_state = 12}, - [1826] = {.lex_state = 23, .external_lex_state = 12}, - [1827] = {.lex_state = 25, .external_lex_state = 12}, - [1828] = {.lex_state = 25, .external_lex_state = 12}, - [1829] = {.lex_state = 25, .external_lex_state = 12}, - [1830] = {.lex_state = 25, .external_lex_state = 12}, - [1831] = {.lex_state = 23, .external_lex_state = 12}, - [1832] = {.lex_state = 24, .external_lex_state = 12}, - [1833] = {.lex_state = 24, .external_lex_state = 12}, - [1834] = {.lex_state = 24, .external_lex_state = 12}, - [1835] = {.lex_state = 24, .external_lex_state = 12}, - [1836] = {.lex_state = 24, .external_lex_state = 12}, - [1837] = {.lex_state = 23, .external_lex_state = 12}, - [1838] = {.lex_state = 24, .external_lex_state = 12}, - [1839] = {.lex_state = 24, .external_lex_state = 12}, - [1840] = {.lex_state = 24, .external_lex_state = 12}, - [1841] = {.lex_state = 24, .external_lex_state = 12}, - [1842] = {.lex_state = 24, .external_lex_state = 12}, - [1843] = {.lex_state = 24, .external_lex_state = 12}, - [1844] = {.lex_state = 24, .external_lex_state = 12}, - [1845] = {.lex_state = 24, .external_lex_state = 12}, - [1846] = {.lex_state = 24, .external_lex_state = 12}, - [1847] = {.lex_state = 24, .external_lex_state = 12}, - [1848] = {.lex_state = 24, .external_lex_state = 12}, - [1849] = {.lex_state = 24, .external_lex_state = 12}, - [1850] = {.lex_state = 24, .external_lex_state = 12}, - [1851] = {.lex_state = 148, .external_lex_state = 7}, - [1852] = {.lex_state = 17, .external_lex_state = 4}, - [1853] = {.lex_state = 17, .external_lex_state = 4}, - [1854] = {.lex_state = 17, .external_lex_state = 4}, - [1855] = {.lex_state = 14, .external_lex_state = 4}, - [1856] = {.lex_state = 14, .external_lex_state = 4}, - [1857] = {.lex_state = 14, .external_lex_state = 4}, - [1858] = {.lex_state = 22, .external_lex_state = 12}, - [1859] = {.lex_state = 22, .external_lex_state = 12}, - [1860] = {.lex_state = 22, .external_lex_state = 12}, - [1861] = {.lex_state = 23, .external_lex_state = 12}, - [1862] = {.lex_state = 323, .external_lex_state = 22}, - [1863] = {.lex_state = 22, .external_lex_state = 12}, - [1864] = {.lex_state = 22, .external_lex_state = 12}, - [1865] = {.lex_state = 22, .external_lex_state = 12}, - [1866] = {.lex_state = 22, .external_lex_state = 12}, - [1867] = {.lex_state = 22, .external_lex_state = 12}, - [1868] = {.lex_state = 23, .external_lex_state = 12}, - [1869] = {.lex_state = 22, .external_lex_state = 12}, - [1870] = {.lex_state = 22, .external_lex_state = 12}, - [1871] = {.lex_state = 22, .external_lex_state = 12}, - [1872] = {.lex_state = 23, .external_lex_state = 12}, - [1873] = {.lex_state = 22, .external_lex_state = 12}, - [1874] = {.lex_state = 22, .external_lex_state = 12}, - [1875] = {.lex_state = 22, .external_lex_state = 12}, - [1876] = {.lex_state = 23, .external_lex_state = 12}, - [1877] = {.lex_state = 23, .external_lex_state = 12}, - [1878] = {.lex_state = 24, .external_lex_state = 14}, - [1879] = {.lex_state = 22, .external_lex_state = 12}, - [1880] = {.lex_state = 17, .external_lex_state = 4}, - [1881] = {.lex_state = 323, .external_lex_state = 5}, - [1882] = {.lex_state = 23, .external_lex_state = 2}, - [1883] = {.lex_state = 151, .external_lex_state = 21}, - [1884] = {.lex_state = 151, .external_lex_state = 21}, - [1885] = {.lex_state = 151, .external_lex_state = 21}, - [1886] = {.lex_state = 24, .external_lex_state = 2}, - [1887] = {.lex_state = 23, .external_lex_state = 2}, - [1888] = {.lex_state = 23, .external_lex_state = 2}, - [1889] = {.lex_state = 151, .external_lex_state = 21}, - [1890] = {.lex_state = 151, .external_lex_state = 21}, - [1891] = {.lex_state = 23, .external_lex_state = 2}, - [1892] = {.lex_state = 151, .external_lex_state = 21}, - [1893] = {.lex_state = 25, .external_lex_state = 2}, - [1894] = {.lex_state = 22, .external_lex_state = 2}, - [1895] = {.lex_state = 22, .external_lex_state = 2}, - [1896] = {.lex_state = 25, .external_lex_state = 2}, - [1897] = {.lex_state = 22, .external_lex_state = 2}, - [1898] = {.lex_state = 23, .external_lex_state = 2}, - [1899] = {.lex_state = 151, .external_lex_state = 21}, - [1900] = {.lex_state = 22, .external_lex_state = 2}, - [1901] = {.lex_state = 22, .external_lex_state = 2}, - [1902] = {.lex_state = 22, .external_lex_state = 2}, - [1903] = {.lex_state = 23, .external_lex_state = 2}, - [1904] = {.lex_state = 22, .external_lex_state = 2}, - [1905] = {.lex_state = 23, .external_lex_state = 2}, - [1906] = {.lex_state = 25, .external_lex_state = 2}, - [1907] = {.lex_state = 25, .external_lex_state = 2}, - [1908] = {.lex_state = 23, .external_lex_state = 2}, - [1909] = {.lex_state = 25, .external_lex_state = 2}, - [1910] = {.lex_state = 323, .external_lex_state = 5}, - [1911] = {.lex_state = 323, .external_lex_state = 5}, - [1912] = {.lex_state = 24, .external_lex_state = 2}, - [1913] = {.lex_state = 323, .external_lex_state = 5}, - [1914] = {.lex_state = 24, .external_lex_state = 2}, - [1915] = {.lex_state = 25, .external_lex_state = 2}, - [1916] = {.lex_state = 22, .external_lex_state = 2}, - [1917] = {.lex_state = 24, .external_lex_state = 2}, - [1918] = {.lex_state = 25, .external_lex_state = 2}, - [1919] = {.lex_state = 323, .external_lex_state = 5}, - [1920] = {.lex_state = 22, .external_lex_state = 2}, - [1921] = {.lex_state = 25, .external_lex_state = 2}, - [1922] = {.lex_state = 323, .external_lex_state = 5}, - [1923] = {.lex_state = 25, .external_lex_state = 2}, - [1924] = {.lex_state = 22, .external_lex_state = 2}, - [1925] = {.lex_state = 22, .external_lex_state = 2}, - [1926] = {.lex_state = 151, .external_lex_state = 21}, - [1927] = {.lex_state = 151, .external_lex_state = 21}, - [1928] = {.lex_state = 25, .external_lex_state = 2}, - [1929] = {.lex_state = 151, .external_lex_state = 21}, - [1930] = {.lex_state = 25, .external_lex_state = 2}, - [1931] = {.lex_state = 151, .external_lex_state = 21}, - [1932] = {.lex_state = 24, .external_lex_state = 2}, - [1933] = {.lex_state = 24, .external_lex_state = 2}, - [1934] = {.lex_state = 151, .external_lex_state = 21}, - [1935] = {.lex_state = 151, .external_lex_state = 21}, - [1936] = {.lex_state = 23, .external_lex_state = 2}, - [1937] = {.lex_state = 151, .external_lex_state = 21}, - [1938] = {.lex_state = 22, .external_lex_state = 2}, - [1939] = {.lex_state = 151, .external_lex_state = 21}, - [1940] = {.lex_state = 24, .external_lex_state = 2}, - [1941] = {.lex_state = 24, .external_lex_state = 2}, - [1942] = {.lex_state = 323, .external_lex_state = 5}, - [1943] = {.lex_state = 151, .external_lex_state = 21}, - [1944] = {.lex_state = 151, .external_lex_state = 21}, - [1945] = {.lex_state = 24, .external_lex_state = 2}, - [1946] = {.lex_state = 24, .external_lex_state = 2}, - [1947] = {.lex_state = 151, .external_lex_state = 21}, - [1948] = {.lex_state = 25, .external_lex_state = 2}, - [1949] = {.lex_state = 323, .external_lex_state = 5}, - [1950] = {.lex_state = 23, .external_lex_state = 2}, - [1951] = {.lex_state = 151, .external_lex_state = 21}, - [1952] = {.lex_state = 323, .external_lex_state = 5}, - [1953] = {.lex_state = 323, .external_lex_state = 5}, - [1954] = {.lex_state = 23, .external_lex_state = 2}, - [1955] = {.lex_state = 323, .external_lex_state = 5}, - [1956] = {.lex_state = 151, .external_lex_state = 21}, - [1957] = {.lex_state = 151, .external_lex_state = 21}, - [1958] = {.lex_state = 151, .external_lex_state = 21}, - [1959] = {.lex_state = 24, .external_lex_state = 2}, - [1960] = {.lex_state = 23, .external_lex_state = 2}, - [1961] = {.lex_state = 151, .external_lex_state = 21}, - [1962] = {.lex_state = 323, .external_lex_state = 5}, - [1963] = {.lex_state = 24, .external_lex_state = 2}, - [1964] = {.lex_state = 151, .external_lex_state = 21}, - [1965] = {.lex_state = 19, .external_lex_state = 7}, - [1966] = {.lex_state = 19, .external_lex_state = 7}, - [1967] = {.lex_state = 19, .external_lex_state = 7}, - [1968] = {.lex_state = 19, .external_lex_state = 7}, - [1969] = {.lex_state = 19, .external_lex_state = 7}, - [1970] = {.lex_state = 151, .external_lex_state = 7}, - [1971] = {.lex_state = 19, .external_lex_state = 7}, - [1972] = {.lex_state = 19, .external_lex_state = 7}, - [1973] = {.lex_state = 19, .external_lex_state = 7}, - [1974] = {.lex_state = 19, .external_lex_state = 7}, - [1975] = {.lex_state = 19, .external_lex_state = 7}, - [1976] = {.lex_state = 19, .external_lex_state = 7}, - [1977] = {.lex_state = 19, .external_lex_state = 7}, - [1978] = {.lex_state = 19, .external_lex_state = 7}, - [1979] = {.lex_state = 19, .external_lex_state = 7}, - [1980] = {.lex_state = 19, .external_lex_state = 7}, - [1981] = {.lex_state = 19, .external_lex_state = 7}, - [1982] = {.lex_state = 19, .external_lex_state = 7}, - [1983] = {.lex_state = 19, .external_lex_state = 7}, - [1984] = {.lex_state = 19, .external_lex_state = 7}, - [1985] = {.lex_state = 19, .external_lex_state = 7}, - [1986] = {.lex_state = 19, .external_lex_state = 7}, - [1987] = {.lex_state = 19, .external_lex_state = 7}, - [1988] = {.lex_state = 19, .external_lex_state = 7}, - [1989] = {.lex_state = 19, .external_lex_state = 7}, - [1990] = {.lex_state = 19, .external_lex_state = 7}, - [1991] = {.lex_state = 19, .external_lex_state = 7}, - [1992] = {.lex_state = 19, .external_lex_state = 7}, - [1993] = {.lex_state = 19, .external_lex_state = 7}, - [1994] = {.lex_state = 34, .external_lex_state = 7}, - [1995] = {.lex_state = 34, .external_lex_state = 7}, - [1996] = {.lex_state = 34, .external_lex_state = 7}, - [1997] = {.lex_state = 19, .external_lex_state = 7}, - [1998] = {.lex_state = 34, .external_lex_state = 7}, - [1999] = {.lex_state = 323, .external_lex_state = 2}, - [2000] = {.lex_state = 34, .external_lex_state = 7}, - [2001] = {.lex_state = 325, .external_lex_state = 23}, - [2002] = {.lex_state = 323, .external_lex_state = 7}, - [2003] = {.lex_state = 325, .external_lex_state = 23}, - [2004] = {.lex_state = 323, .external_lex_state = 7}, - [2005] = {.lex_state = 325, .external_lex_state = 23}, - [2006] = {.lex_state = 323, .external_lex_state = 7}, - [2007] = {.lex_state = 323, .external_lex_state = 7}, - [2008] = {.lex_state = 323, .external_lex_state = 7}, - [2009] = {.lex_state = 323, .external_lex_state = 7}, - [2010] = {.lex_state = 323, .external_lex_state = 7}, - [2011] = {.lex_state = 323, .external_lex_state = 7}, - [2012] = {.lex_state = 323, .external_lex_state = 7}, - [2013] = {.lex_state = 323, .external_lex_state = 7}, - [2014] = {.lex_state = 323, .external_lex_state = 7}, - [2015] = {.lex_state = 323, .external_lex_state = 7}, - [2016] = {.lex_state = 323, .external_lex_state = 7}, - [2017] = {.lex_state = 323, .external_lex_state = 7}, - [2018] = {.lex_state = 323, .external_lex_state = 7}, - [2019] = {.lex_state = 323, .external_lex_state = 7}, - [2020] = {.lex_state = 323, .external_lex_state = 7}, - [2021] = {.lex_state = 323, .external_lex_state = 7}, - [2022] = {.lex_state = 323, .external_lex_state = 7}, - [2023] = {.lex_state = 323, .external_lex_state = 7}, - [2024] = {.lex_state = 323, .external_lex_state = 7}, - [2025] = {.lex_state = 323, .external_lex_state = 7}, - [2026] = {.lex_state = 323, .external_lex_state = 7}, - [2027] = {.lex_state = 323, .external_lex_state = 7}, - [2028] = {.lex_state = 323, .external_lex_state = 7}, - [2029] = {.lex_state = 323, .external_lex_state = 7}, - [2030] = {.lex_state = 323, .external_lex_state = 7}, - [2031] = {.lex_state = 325, .external_lex_state = 24}, - [2032] = {.lex_state = 325, .external_lex_state = 24}, - [2033] = {.lex_state = 325, .external_lex_state = 24}, - [2034] = {.lex_state = 325, .external_lex_state = 24}, - [2035] = {.lex_state = 325, .external_lex_state = 24}, - [2036] = {.lex_state = 325, .external_lex_state = 24}, - [2037] = {.lex_state = 325, .external_lex_state = 24}, - [2038] = {.lex_state = 325, .external_lex_state = 24}, - [2039] = {.lex_state = 325, .external_lex_state = 24}, - [2040] = {.lex_state = 319, .external_lex_state = 21}, - [2041] = {.lex_state = 325, .external_lex_state = 24}, - [2042] = {.lex_state = 319, .external_lex_state = 7}, - [2043] = {.lex_state = 325, .external_lex_state = 24}, - [2044] = {.lex_state = 325, .external_lex_state = 24}, - [2045] = {.lex_state = 325, .external_lex_state = 24}, - [2046] = {.lex_state = 325, .external_lex_state = 24}, - [2047] = {.lex_state = 325, .external_lex_state = 24}, - [2048] = {.lex_state = 325, .external_lex_state = 24}, - [2049] = {.lex_state = 325, .external_lex_state = 24}, - [2050] = {.lex_state = 325, .external_lex_state = 24}, - [2051] = {.lex_state = 325, .external_lex_state = 24}, - [2052] = {.lex_state = 325, .external_lex_state = 24}, - [2053] = {.lex_state = 325, .external_lex_state = 24}, - [2054] = {.lex_state = 325, .external_lex_state = 24}, - [2055] = {.lex_state = 325, .external_lex_state = 24}, - [2056] = {.lex_state = 325, .external_lex_state = 24}, - [2057] = {.lex_state = 325, .external_lex_state = 24}, - [2058] = {.lex_state = 325, .external_lex_state = 24}, - [2059] = {.lex_state = 325, .external_lex_state = 24}, - [2060] = {.lex_state = 325, .external_lex_state = 24}, - [2061] = {.lex_state = 325, .external_lex_state = 24}, - [2062] = {.lex_state = 325, .external_lex_state = 24}, - [2063] = {.lex_state = 325, .external_lex_state = 24}, - [2064] = {.lex_state = 319, .external_lex_state = 7}, - [2065] = {.lex_state = 325, .external_lex_state = 24}, - [2066] = {.lex_state = 325, .external_lex_state = 24}, - [2067] = {.lex_state = 325, .external_lex_state = 24}, - [2068] = {.lex_state = 325, .external_lex_state = 24}, - [2069] = {.lex_state = 325, .external_lex_state = 24}, - [2070] = {.lex_state = 325, .external_lex_state = 24}, - [2071] = {.lex_state = 325, .external_lex_state = 24}, - [2072] = {.lex_state = 325, .external_lex_state = 24}, - [2073] = {.lex_state = 325, .external_lex_state = 24}, - [2074] = {.lex_state = 325, .external_lex_state = 24}, - [2075] = {.lex_state = 325, .external_lex_state = 24}, - [2076] = {.lex_state = 325, .external_lex_state = 24}, - [2077] = {.lex_state = 325, .external_lex_state = 24}, - [2078] = {.lex_state = 325, .external_lex_state = 24}, - [2079] = {.lex_state = 325, .external_lex_state = 24}, - [2080] = {.lex_state = 325, .external_lex_state = 24}, - [2081] = {.lex_state = 325, .external_lex_state = 24}, - [2082] = {.lex_state = 325, .external_lex_state = 24}, - [2083] = {.lex_state = 325, .external_lex_state = 24}, - [2084] = {.lex_state = 325, .external_lex_state = 24}, - [2085] = {.lex_state = 325, .external_lex_state = 24}, - [2086] = {.lex_state = 325, .external_lex_state = 24}, - [2087] = {.lex_state = 325, .external_lex_state = 24}, - [2088] = {.lex_state = 325, .external_lex_state = 24}, - [2089] = {.lex_state = 325, .external_lex_state = 24}, - [2090] = {.lex_state = 319, .external_lex_state = 21}, - [2091] = {.lex_state = 325, .external_lex_state = 24}, - [2092] = {.lex_state = 325, .external_lex_state = 24}, - [2093] = {.lex_state = 325, .external_lex_state = 24}, - [2094] = {.lex_state = 325, .external_lex_state = 24}, - [2095] = {.lex_state = 325, .external_lex_state = 24}, - [2096] = {.lex_state = 325, .external_lex_state = 24}, - [2097] = {.lex_state = 325, .external_lex_state = 24}, - [2098] = {.lex_state = 325, .external_lex_state = 24}, - [2099] = {.lex_state = 325, .external_lex_state = 24}, - [2100] = {.lex_state = 325, .external_lex_state = 24}, - [2101] = {.lex_state = 325, .external_lex_state = 24}, - [2102] = {.lex_state = 325, .external_lex_state = 24}, - [2103] = {.lex_state = 325, .external_lex_state = 24}, - [2104] = {.lex_state = 325, .external_lex_state = 24}, - [2105] = {.lex_state = 325, .external_lex_state = 24}, - [2106] = {.lex_state = 325, .external_lex_state = 24}, - [2107] = {.lex_state = 325, .external_lex_state = 24}, - [2108] = {.lex_state = 319, .external_lex_state = 7}, - [2109] = {.lex_state = 319, .external_lex_state = 21}, - [2110] = {.lex_state = 325, .external_lex_state = 23}, - [2111] = {.lex_state = 319, .external_lex_state = 21}, - [2112] = {.lex_state = 325, .external_lex_state = 25}, - [2113] = {.lex_state = 319, .external_lex_state = 21}, - [2114] = {.lex_state = 319, .external_lex_state = 21}, - [2115] = {.lex_state = 319, .external_lex_state = 21}, - [2116] = {.lex_state = 319, .external_lex_state = 21}, - [2117] = {.lex_state = 319, .external_lex_state = 21}, - [2118] = {.lex_state = 319, .external_lex_state = 21}, - [2119] = {.lex_state = 319, .external_lex_state = 21}, - [2120] = {.lex_state = 319, .external_lex_state = 21}, - [2121] = {.lex_state = 319, .external_lex_state = 21}, - [2122] = {.lex_state = 325, .external_lex_state = 23}, - [2123] = {.lex_state = 319, .external_lex_state = 21}, - [2124] = {.lex_state = 319, .external_lex_state = 21}, - [2125] = {.lex_state = 323, .external_lex_state = 7}, - [2126] = {.lex_state = 319, .external_lex_state = 21}, - [2127] = {.lex_state = 319, .external_lex_state = 21}, - [2128] = {.lex_state = 319, .external_lex_state = 21}, - [2129] = {.lex_state = 319, .external_lex_state = 21}, - [2130] = {.lex_state = 319, .external_lex_state = 21}, - [2131] = {.lex_state = 319, .external_lex_state = 21}, - [2132] = {.lex_state = 319, .external_lex_state = 21}, - [2133] = {.lex_state = 325, .external_lex_state = 25}, - [2134] = {.lex_state = 155, .external_lex_state = 7}, - [2135] = {.lex_state = 323, .external_lex_state = 7}, - [2136] = {.lex_state = 323, .external_lex_state = 7}, - [2137] = {.lex_state = 323, .external_lex_state = 7}, - [2138] = {.lex_state = 319, .external_lex_state = 21}, - [2139] = {.lex_state = 319, .external_lex_state = 21}, - [2140] = {.lex_state = 323, .external_lex_state = 7}, - [2141] = {.lex_state = 323, .external_lex_state = 7}, - [2142] = {.lex_state = 319, .external_lex_state = 21}, - [2143] = {.lex_state = 325, .external_lex_state = 23}, - [2144] = {.lex_state = 323, .external_lex_state = 7}, - [2145] = {.lex_state = 323, .external_lex_state = 7}, - [2146] = {.lex_state = 323, .external_lex_state = 7}, - [2147] = {.lex_state = 325, .external_lex_state = 23}, - [2148] = {.lex_state = 325, .external_lex_state = 26}, - [2149] = {.lex_state = 323, .external_lex_state = 7}, - [2150] = {.lex_state = 323, .external_lex_state = 7}, - [2151] = {.lex_state = 323, .external_lex_state = 7}, - [2152] = {.lex_state = 323, .external_lex_state = 7}, - [2153] = {.lex_state = 325, .external_lex_state = 23}, - [2154] = {.lex_state = 325, .external_lex_state = 23}, - [2155] = {.lex_state = 325, .external_lex_state = 23}, - [2156] = {.lex_state = 325, .external_lex_state = 23}, - [2157] = {.lex_state = 325, .external_lex_state = 23}, - [2158] = {.lex_state = 325, .external_lex_state = 23}, - [2159] = {.lex_state = 325, .external_lex_state = 23}, - [2160] = {.lex_state = 323, .external_lex_state = 7}, - [2161] = {.lex_state = 323, .external_lex_state = 7}, - [2162] = {.lex_state = 325, .external_lex_state = 26}, - [2163] = {.lex_state = 325, .external_lex_state = 23}, - [2164] = {.lex_state = 323, .external_lex_state = 7}, - [2165] = {.lex_state = 323, .external_lex_state = 7}, - [2166] = {.lex_state = 325, .external_lex_state = 23}, - [2167] = {.lex_state = 325, .external_lex_state = 23}, - [2168] = {.lex_state = 325, .external_lex_state = 23}, - [2169] = {.lex_state = 325, .external_lex_state = 23}, - [2170] = {.lex_state = 323, .external_lex_state = 7}, - [2171] = {.lex_state = 323, .external_lex_state = 7}, - [2172] = {.lex_state = 323, .external_lex_state = 7}, - [2173] = {.lex_state = 325, .external_lex_state = 23}, - [2174] = {.lex_state = 325, .external_lex_state = 23}, - [2175] = {.lex_state = 325, .external_lex_state = 23}, - [2176] = {.lex_state = 325, .external_lex_state = 23}, - [2177] = {.lex_state = 323, .external_lex_state = 7}, - [2178] = {.lex_state = 325, .external_lex_state = 23}, - [2179] = {.lex_state = 323, .external_lex_state = 7}, - [2180] = {.lex_state = 323, .external_lex_state = 7}, - [2181] = {.lex_state = 323, .external_lex_state = 7}, - [2182] = {.lex_state = 323, .external_lex_state = 7}, - [2183] = {.lex_state = 323, .external_lex_state = 7}, - [2184] = {.lex_state = 323, .external_lex_state = 7}, - [2185] = {.lex_state = 323, .external_lex_state = 7}, - [2186] = {.lex_state = 323, .external_lex_state = 7}, - [2187] = {.lex_state = 319, .external_lex_state = 7}, - [2188] = {.lex_state = 323, .external_lex_state = 7}, - [2189] = {.lex_state = 325, .external_lex_state = 23}, - [2190] = {.lex_state = 323, .external_lex_state = 7}, - [2191] = {.lex_state = 323, .external_lex_state = 7}, - [2192] = {.lex_state = 323, .external_lex_state = 7}, - [2193] = {.lex_state = 325, .external_lex_state = 23}, - [2194] = {.lex_state = 323, .external_lex_state = 7}, - [2195] = {.lex_state = 323, .external_lex_state = 7}, - [2196] = {.lex_state = 323, .external_lex_state = 7}, - [2197] = {.lex_state = 325, .external_lex_state = 23}, - [2198] = {.lex_state = 323, .external_lex_state = 7}, - [2199] = {.lex_state = 323, .external_lex_state = 7}, - [2200] = {.lex_state = 323, .external_lex_state = 7}, - [2201] = {.lex_state = 323, .external_lex_state = 7}, - [2202] = {.lex_state = 325, .external_lex_state = 23}, - [2203] = {.lex_state = 323, .external_lex_state = 7}, - [2204] = {.lex_state = 323, .external_lex_state = 7}, - [2205] = {.lex_state = 323, .external_lex_state = 7}, - [2206] = {.lex_state = 323, .external_lex_state = 7}, - [2207] = {.lex_state = 323, .external_lex_state = 7}, - [2208] = {.lex_state = 323, .external_lex_state = 7}, - [2209] = {.lex_state = 323, .external_lex_state = 7}, - [2210] = {.lex_state = 323, .external_lex_state = 7}, - [2211] = {.lex_state = 323, .external_lex_state = 7}, - [2212] = {.lex_state = 323, .external_lex_state = 7}, - [2213] = {.lex_state = 323, .external_lex_state = 7}, - [2214] = {.lex_state = 323, .external_lex_state = 7}, - [2215] = {.lex_state = 323, .external_lex_state = 7}, - [2216] = {.lex_state = 323, .external_lex_state = 7}, - [2217] = {.lex_state = 323, .external_lex_state = 7}, - [2218] = {.lex_state = 158, .external_lex_state = 27}, - [2219] = {.lex_state = 158, .external_lex_state = 27}, - [2220] = {.lex_state = 325, .external_lex_state = 24}, - [2221] = {.lex_state = 158, .external_lex_state = 27}, - [2222] = {.lex_state = 158, .external_lex_state = 27}, - [2223] = {.lex_state = 158, .external_lex_state = 27}, - [2224] = {.lex_state = 325, .external_lex_state = 24}, - [2225] = {.lex_state = 158, .external_lex_state = 27}, - [2226] = {.lex_state = 158, .external_lex_state = 27}, - [2227] = {.lex_state = 325, .external_lex_state = 24}, - [2228] = {.lex_state = 158, .external_lex_state = 27}, - [2229] = {.lex_state = 158, .external_lex_state = 27}, - [2230] = {.lex_state = 158, .external_lex_state = 27}, - [2231] = {.lex_state = 158, .external_lex_state = 27}, - [2232] = {.lex_state = 158, .external_lex_state = 27}, - [2233] = {.lex_state = 158, .external_lex_state = 27}, - [2234] = {.lex_state = 158, .external_lex_state = 27}, - [2235] = {.lex_state = 158, .external_lex_state = 27}, - [2236] = {.lex_state = 158, .external_lex_state = 27}, - [2237] = {.lex_state = 158, .external_lex_state = 27}, - [2238] = {.lex_state = 158, .external_lex_state = 27}, - [2239] = {.lex_state = 158, .external_lex_state = 27}, - [2240] = {.lex_state = 158, .external_lex_state = 27}, - [2241] = {.lex_state = 158, .external_lex_state = 27}, - [2242] = {.lex_state = 325, .external_lex_state = 24}, - [2243] = {.lex_state = 158, .external_lex_state = 27}, - [2244] = {.lex_state = 158, .external_lex_state = 27}, - [2245] = {.lex_state = 158, .external_lex_state = 27}, - [2246] = {.lex_state = 158, .external_lex_state = 27}, - [2247] = {.lex_state = 158, .external_lex_state = 27}, - [2248] = {.lex_state = 158, .external_lex_state = 27}, - [2249] = {.lex_state = 158, .external_lex_state = 27}, - [2250] = {.lex_state = 158, .external_lex_state = 27}, - [2251] = {.lex_state = 158, .external_lex_state = 27}, - [2252] = {.lex_state = 158, .external_lex_state = 27}, - [2253] = {.lex_state = 325, .external_lex_state = 24}, - [2254] = {.lex_state = 158, .external_lex_state = 27}, - [2255] = {.lex_state = 158, .external_lex_state = 27}, - [2256] = {.lex_state = 158, .external_lex_state = 27}, - [2257] = {.lex_state = 158, .external_lex_state = 27}, - [2258] = {.lex_state = 158, .external_lex_state = 27}, - [2259] = {.lex_state = 158, .external_lex_state = 27}, - [2260] = {.lex_state = 158, .external_lex_state = 27}, - [2261] = {.lex_state = 158, .external_lex_state = 27}, - [2262] = {.lex_state = 158, .external_lex_state = 27}, - [2263] = {.lex_state = 158, .external_lex_state = 27}, - [2264] = {.lex_state = 158, .external_lex_state = 27}, - [2265] = {.lex_state = 158, .external_lex_state = 27}, - [2266] = {.lex_state = 326, .external_lex_state = 23}, - [2267] = {.lex_state = 158, .external_lex_state = 27}, - [2268] = {.lex_state = 158, .external_lex_state = 27}, - [2269] = {.lex_state = 326, .external_lex_state = 23}, - [2270] = {.lex_state = 158, .external_lex_state = 27}, - [2271] = {.lex_state = 158, .external_lex_state = 27}, - [2272] = {.lex_state = 158, .external_lex_state = 27}, - [2273] = {.lex_state = 158, .external_lex_state = 27}, - [2274] = {.lex_state = 158, .external_lex_state = 27}, - [2275] = {.lex_state = 158, .external_lex_state = 27}, - [2276] = {.lex_state = 158, .external_lex_state = 27}, - [2277] = {.lex_state = 158, .external_lex_state = 27}, - [2278] = {.lex_state = 158, .external_lex_state = 27}, - [2279] = {.lex_state = 158, .external_lex_state = 27}, - [2280] = {.lex_state = 158, .external_lex_state = 27}, - [2281] = {.lex_state = 158, .external_lex_state = 27}, - [2282] = {.lex_state = 326, .external_lex_state = 23}, - [2283] = {.lex_state = 325, .external_lex_state = 24}, - [2284] = {.lex_state = 158, .external_lex_state = 27}, - [2285] = {.lex_state = 158, .external_lex_state = 27}, - [2286] = {.lex_state = 325, .external_lex_state = 24}, - [2287] = {.lex_state = 158, .external_lex_state = 27}, - [2288] = {.lex_state = 158, .external_lex_state = 27}, - [2289] = {.lex_state = 325, .external_lex_state = 24}, - [2290] = {.lex_state = 158, .external_lex_state = 27}, - [2291] = {.lex_state = 158, .external_lex_state = 27}, - [2292] = {.lex_state = 325, .external_lex_state = 24}, - [2293] = {.lex_state = 325, .external_lex_state = 24}, - [2294] = {.lex_state = 158, .external_lex_state = 27}, - [2295] = {.lex_state = 158, .external_lex_state = 27}, - [2296] = {.lex_state = 158, .external_lex_state = 27}, - [2297] = {.lex_state = 158, .external_lex_state = 27}, - [2298] = {.lex_state = 323, .external_lex_state = 7}, - [2299] = {.lex_state = 326, .external_lex_state = 24}, - [2300] = {.lex_state = 326, .external_lex_state = 24}, - [2301] = {.lex_state = 326, .external_lex_state = 24}, - [2302] = {.lex_state = 326, .external_lex_state = 24}, - [2303] = {.lex_state = 323, .external_lex_state = 7}, - [2304] = {.lex_state = 326, .external_lex_state = 24}, - [2305] = {.lex_state = 323, .external_lex_state = 7}, - [2306] = {.lex_state = 326, .external_lex_state = 24}, - [2307] = {.lex_state = 323, .external_lex_state = 7}, - [2308] = {.lex_state = 326, .external_lex_state = 24}, - [2309] = {.lex_state = 323, .external_lex_state = 7}, - [2310] = {.lex_state = 326, .external_lex_state = 24}, - [2311] = {.lex_state = 326, .external_lex_state = 24}, - [2312] = {.lex_state = 323, .external_lex_state = 7}, - [2313] = {.lex_state = 326, .external_lex_state = 24}, - [2314] = {.lex_state = 326, .external_lex_state = 24}, - [2315] = {.lex_state = 326, .external_lex_state = 24}, - [2316] = {.lex_state = 326, .external_lex_state = 24}, - [2317] = {.lex_state = 323, .external_lex_state = 7}, - [2318] = {.lex_state = 326, .external_lex_state = 24}, - [2319] = {.lex_state = 326, .external_lex_state = 24}, - [2320] = {.lex_state = 323, .external_lex_state = 7}, - [2321] = {.lex_state = 326, .external_lex_state = 24}, - [2322] = {.lex_state = 326, .external_lex_state = 24}, - [2323] = {.lex_state = 326, .external_lex_state = 24}, - [2324] = {.lex_state = 326, .external_lex_state = 24}, - [2325] = {.lex_state = 323, .external_lex_state = 7}, - [2326] = {.lex_state = 326, .external_lex_state = 24}, - [2327] = {.lex_state = 326, .external_lex_state = 24}, - [2328] = {.lex_state = 326, .external_lex_state = 24}, - [2329] = {.lex_state = 326, .external_lex_state = 24}, - [2330] = {.lex_state = 326, .external_lex_state = 24}, - [2331] = {.lex_state = 326, .external_lex_state = 24}, - [2332] = {.lex_state = 326, .external_lex_state = 24}, - [2333] = {.lex_state = 326, .external_lex_state = 24}, - [2334] = {.lex_state = 326, .external_lex_state = 24}, - [2335] = {.lex_state = 326, .external_lex_state = 24}, - [2336] = {.lex_state = 326, .external_lex_state = 24}, - [2337] = {.lex_state = 326, .external_lex_state = 24}, - [2338] = {.lex_state = 326, .external_lex_state = 24}, - [2339] = {.lex_state = 323, .external_lex_state = 7}, - [2340] = {.lex_state = 326, .external_lex_state = 24}, - [2341] = {.lex_state = 326, .external_lex_state = 24}, - [2342] = {.lex_state = 326, .external_lex_state = 24}, - [2343] = {.lex_state = 326, .external_lex_state = 24}, - [2344] = {.lex_state = 326, .external_lex_state = 24}, - [2345] = {.lex_state = 323, .external_lex_state = 7}, - [2346] = {.lex_state = 326, .external_lex_state = 24}, - [2347] = {.lex_state = 326, .external_lex_state = 24}, - [2348] = {.lex_state = 323, .external_lex_state = 7}, - [2349] = {.lex_state = 326, .external_lex_state = 24}, - [2350] = {.lex_state = 326, .external_lex_state = 24}, - [2351] = {.lex_state = 326, .external_lex_state = 24}, - [2352] = {.lex_state = 326, .external_lex_state = 24}, - [2353] = {.lex_state = 326, .external_lex_state = 24}, - [2354] = {.lex_state = 326, .external_lex_state = 24}, - [2355] = {.lex_state = 326, .external_lex_state = 24}, - [2356] = {.lex_state = 326, .external_lex_state = 24}, - [2357] = {.lex_state = 326, .external_lex_state = 24}, - [2358] = {.lex_state = 323, .external_lex_state = 7}, - [2359] = {.lex_state = 326, .external_lex_state = 24}, - [2360] = {.lex_state = 326, .external_lex_state = 24}, - [2361] = {.lex_state = 326, .external_lex_state = 24}, - [2362] = {.lex_state = 326, .external_lex_state = 24}, - [2363] = {.lex_state = 326, .external_lex_state = 24}, - [2364] = {.lex_state = 326, .external_lex_state = 24}, - [2365] = {.lex_state = 326, .external_lex_state = 24}, - [2366] = {.lex_state = 323, .external_lex_state = 7}, - [2367] = {.lex_state = 326, .external_lex_state = 24}, - [2368] = {.lex_state = 323, .external_lex_state = 7}, - [2369] = {.lex_state = 323, .external_lex_state = 7}, - [2370] = {.lex_state = 323, .external_lex_state = 7}, - [2371] = {.lex_state = 326, .external_lex_state = 24}, - [2372] = {.lex_state = 326, .external_lex_state = 24}, - [2373] = {.lex_state = 323, .external_lex_state = 7}, - [2374] = {.lex_state = 326, .external_lex_state = 24}, - [2375] = {.lex_state = 323, .external_lex_state = 7}, - [2376] = {.lex_state = 326, .external_lex_state = 24}, - [2377] = {.lex_state = 323, .external_lex_state = 7}, - [2378] = {.lex_state = 323, .external_lex_state = 7}, - [2379] = {.lex_state = 326, .external_lex_state = 24}, - [2380] = {.lex_state = 326, .external_lex_state = 24}, - [2381] = {.lex_state = 323, .external_lex_state = 7}, - [2382] = {.lex_state = 326, .external_lex_state = 24}, - [2383] = {.lex_state = 323, .external_lex_state = 7}, - [2384] = {.lex_state = 326, .external_lex_state = 24}, - [2385] = {.lex_state = 323, .external_lex_state = 7}, - [2386] = {.lex_state = 326, .external_lex_state = 24}, - [2387] = {.lex_state = 323, .external_lex_state = 7}, - [2388] = {.lex_state = 323, .external_lex_state = 7}, - [2389] = {.lex_state = 148, .external_lex_state = 21}, - [2390] = {.lex_state = 326, .external_lex_state = 24}, - [2391] = {.lex_state = 326, .external_lex_state = 24}, - [2392] = {.lex_state = 323, .external_lex_state = 7}, - [2393] = {.lex_state = 326, .external_lex_state = 24}, - [2394] = {.lex_state = 326, .external_lex_state = 24}, - [2395] = {.lex_state = 326, .external_lex_state = 24}, - [2396] = {.lex_state = 326, .external_lex_state = 24}, - [2397] = {.lex_state = 326, .external_lex_state = 24}, - [2398] = {.lex_state = 323, .external_lex_state = 7}, - [2399] = {.lex_state = 323, .external_lex_state = 7}, - [2400] = {.lex_state = 323, .external_lex_state = 7}, - [2401] = {.lex_state = 148, .external_lex_state = 21}, - [2402] = {.lex_state = 323, .external_lex_state = 7}, - [2403] = {.lex_state = 326, .external_lex_state = 24}, - [2404] = {.lex_state = 326, .external_lex_state = 25}, - [2405] = {.lex_state = 148, .external_lex_state = 21}, - [2406] = {.lex_state = 326, .external_lex_state = 23}, - [2407] = {.lex_state = 148, .external_lex_state = 21}, - [2408] = {.lex_state = 148, .external_lex_state = 21}, - [2409] = {.lex_state = 148, .external_lex_state = 21}, - [2410] = {.lex_state = 148, .external_lex_state = 21}, - [2411] = {.lex_state = 148, .external_lex_state = 21}, - [2412] = {.lex_state = 148, .external_lex_state = 21}, - [2413] = {.lex_state = 148, .external_lex_state = 21}, - [2414] = {.lex_state = 148, .external_lex_state = 21}, - [2415] = {.lex_state = 148, .external_lex_state = 21}, - [2416] = {.lex_state = 148, .external_lex_state = 21}, - [2417] = {.lex_state = 148, .external_lex_state = 21}, - [2418] = {.lex_state = 326, .external_lex_state = 23}, - [2419] = {.lex_state = 148, .external_lex_state = 21}, - [2420] = {.lex_state = 148, .external_lex_state = 21}, - [2421] = {.lex_state = 148, .external_lex_state = 21}, - [2422] = {.lex_state = 148, .external_lex_state = 21}, - [2423] = {.lex_state = 148, .external_lex_state = 21}, - [2424] = {.lex_state = 148, .external_lex_state = 21}, - [2425] = {.lex_state = 148, .external_lex_state = 21}, - [2426] = {.lex_state = 326, .external_lex_state = 25}, - [2427] = {.lex_state = 148, .external_lex_state = 21}, - [2428] = {.lex_state = 148, .external_lex_state = 21}, - [2429] = {.lex_state = 148, .external_lex_state = 21}, - [2430] = {.lex_state = 148, .external_lex_state = 21}, - [2431] = {.lex_state = 326, .external_lex_state = 23}, - [2432] = {.lex_state = 326, .external_lex_state = 23}, - [2433] = {.lex_state = 326, .external_lex_state = 23}, - [2434] = {.lex_state = 326, .external_lex_state = 23}, - [2435] = {.lex_state = 326, .external_lex_state = 23}, - [2436] = {.lex_state = 326, .external_lex_state = 23}, - [2437] = {.lex_state = 326, .external_lex_state = 23}, - [2438] = {.lex_state = 326, .external_lex_state = 23}, - [2439] = {.lex_state = 326, .external_lex_state = 23}, - [2440] = {.lex_state = 326, .external_lex_state = 23}, - [2441] = {.lex_state = 326, .external_lex_state = 23}, - [2442] = {.lex_state = 326, .external_lex_state = 26}, - [2443] = {.lex_state = 326, .external_lex_state = 23}, - [2444] = {.lex_state = 326, .external_lex_state = 23}, - [2445] = {.lex_state = 326, .external_lex_state = 23}, - [2446] = {.lex_state = 326, .external_lex_state = 23}, - [2447] = {.lex_state = 326, .external_lex_state = 23}, - [2448] = {.lex_state = 325, .external_lex_state = 28}, - [2449] = {.lex_state = 326, .external_lex_state = 23}, - [2450] = {.lex_state = 326, .external_lex_state = 23}, - [2451] = {.lex_state = 326, .external_lex_state = 23}, - [2452] = {.lex_state = 326, .external_lex_state = 23}, - [2453] = {.lex_state = 325, .external_lex_state = 28}, - [2454] = {.lex_state = 35, .external_lex_state = 23}, - [2455] = {.lex_state = 326, .external_lex_state = 23}, - [2456] = {.lex_state = 35, .external_lex_state = 23}, - [2457] = {.lex_state = 326, .external_lex_state = 26}, - [2458] = {.lex_state = 326, .external_lex_state = 23}, - [2459] = {.lex_state = 325, .external_lex_state = 28}, - [2460] = {.lex_state = 326, .external_lex_state = 23}, - [2461] = {.lex_state = 35, .external_lex_state = 23}, - [2462] = {.lex_state = 325, .external_lex_state = 29}, - [2463] = {.lex_state = 325, .external_lex_state = 29}, - [2464] = {.lex_state = 325, .external_lex_state = 29}, - [2465] = {.lex_state = 325, .external_lex_state = 29}, - [2466] = {.lex_state = 325, .external_lex_state = 29}, - [2467] = {.lex_state = 325, .external_lex_state = 29}, - [2468] = {.lex_state = 325, .external_lex_state = 29}, - [2469] = {.lex_state = 325, .external_lex_state = 29}, - [2470] = {.lex_state = 159, .external_lex_state = 3}, - [2471] = {.lex_state = 325, .external_lex_state = 29}, - [2472] = {.lex_state = 325, .external_lex_state = 29}, - [2473] = {.lex_state = 35, .external_lex_state = 24}, - [2474] = {.lex_state = 35, .external_lex_state = 24}, - [2475] = {.lex_state = 159, .external_lex_state = 3}, - [2476] = {.lex_state = 35, .external_lex_state = 24}, - [2477] = {.lex_state = 35, .external_lex_state = 24}, - [2478] = {.lex_state = 325, .external_lex_state = 29}, - [2479] = {.lex_state = 325, .external_lex_state = 29}, - [2480] = {.lex_state = 159, .external_lex_state = 3}, - [2481] = {.lex_state = 325, .external_lex_state = 29}, - [2482] = {.lex_state = 325, .external_lex_state = 29}, - [2483] = {.lex_state = 35, .external_lex_state = 24}, - [2484] = {.lex_state = 325, .external_lex_state = 29}, - [2485] = {.lex_state = 35, .external_lex_state = 24}, - [2486] = {.lex_state = 159, .external_lex_state = 3}, - [2487] = {.lex_state = 35, .external_lex_state = 24}, - [2488] = {.lex_state = 35, .external_lex_state = 24}, - [2489] = {.lex_state = 325, .external_lex_state = 29}, - [2490] = {.lex_state = 325, .external_lex_state = 29}, - [2491] = {.lex_state = 35, .external_lex_state = 24}, - [2492] = {.lex_state = 159, .external_lex_state = 3}, - [2493] = {.lex_state = 159, .external_lex_state = 3}, - [2494] = {.lex_state = 325, .external_lex_state = 29}, - [2495] = {.lex_state = 159, .external_lex_state = 3}, - [2496] = {.lex_state = 35, .external_lex_state = 24}, - [2497] = {.lex_state = 325, .external_lex_state = 29}, - [2498] = {.lex_state = 159, .external_lex_state = 3}, - [2499] = {.lex_state = 325, .external_lex_state = 29}, - [2500] = {.lex_state = 325, .external_lex_state = 29}, - [2501] = {.lex_state = 325, .external_lex_state = 29}, - [2502] = {.lex_state = 35, .external_lex_state = 24}, - [2503] = {.lex_state = 325, .external_lex_state = 29}, - [2504] = {.lex_state = 159, .external_lex_state = 3}, - [2505] = {.lex_state = 325, .external_lex_state = 29}, - [2506] = {.lex_state = 35, .external_lex_state = 24}, - [2507] = {.lex_state = 35, .external_lex_state = 24}, - [2508] = {.lex_state = 35, .external_lex_state = 24}, - [2509] = {.lex_state = 35, .external_lex_state = 24}, - [2510] = {.lex_state = 159, .external_lex_state = 3}, - [2511] = {.lex_state = 325, .external_lex_state = 29}, - [2512] = {.lex_state = 35, .external_lex_state = 24}, - [2513] = {.lex_state = 35, .external_lex_state = 24}, - [2514] = {.lex_state = 35, .external_lex_state = 24}, - [2515] = {.lex_state = 325, .external_lex_state = 29}, - [2516] = {.lex_state = 159, .external_lex_state = 3}, - [2517] = {.lex_state = 325, .external_lex_state = 29}, - [2518] = {.lex_state = 35, .external_lex_state = 24}, - [2519] = {.lex_state = 325, .external_lex_state = 29}, - [2520] = {.lex_state = 325, .external_lex_state = 29}, - [2521] = {.lex_state = 159, .external_lex_state = 3}, - [2522] = {.lex_state = 159, .external_lex_state = 3}, - [2523] = {.lex_state = 35, .external_lex_state = 24}, - [2524] = {.lex_state = 35, .external_lex_state = 24}, - [2525] = {.lex_state = 35, .external_lex_state = 24}, - [2526] = {.lex_state = 35, .external_lex_state = 24}, - [2527] = {.lex_state = 35, .external_lex_state = 24}, - [2528] = {.lex_state = 159, .external_lex_state = 3}, - [2529] = {.lex_state = 35, .external_lex_state = 24}, - [2530] = {.lex_state = 35, .external_lex_state = 24}, - [2531] = {.lex_state = 35, .external_lex_state = 24}, - [2532] = {.lex_state = 35, .external_lex_state = 24}, - [2533] = {.lex_state = 325, .external_lex_state = 29}, - [2534] = {.lex_state = 326, .external_lex_state = 24}, - [2535] = {.lex_state = 35, .external_lex_state = 24}, - [2536] = {.lex_state = 325, .external_lex_state = 29}, - [2537] = {.lex_state = 325, .external_lex_state = 29}, - [2538] = {.lex_state = 325, .external_lex_state = 29}, - [2539] = {.lex_state = 325, .external_lex_state = 29}, - [2540] = {.lex_state = 35, .external_lex_state = 24}, - [2541] = {.lex_state = 326, .external_lex_state = 24}, - [2542] = {.lex_state = 325, .external_lex_state = 29}, - [2543] = {.lex_state = 325, .external_lex_state = 29}, - [2544] = {.lex_state = 325, .external_lex_state = 29}, - [2545] = {.lex_state = 325, .external_lex_state = 29}, - [2546] = {.lex_state = 325, .external_lex_state = 29}, - [2547] = {.lex_state = 325, .external_lex_state = 29}, - [2548] = {.lex_state = 325, .external_lex_state = 29}, - [2549] = {.lex_state = 159, .external_lex_state = 3}, - [2550] = {.lex_state = 325, .external_lex_state = 29}, - [2551] = {.lex_state = 35, .external_lex_state = 24}, - [2552] = {.lex_state = 35, .external_lex_state = 24}, - [2553] = {.lex_state = 325, .external_lex_state = 29}, - [2554] = {.lex_state = 35, .external_lex_state = 24}, - [2555] = {.lex_state = 35, .external_lex_state = 24}, - [2556] = {.lex_state = 326, .external_lex_state = 24}, - [2557] = {.lex_state = 35, .external_lex_state = 24}, - [2558] = {.lex_state = 35, .external_lex_state = 24}, - [2559] = {.lex_state = 325, .external_lex_state = 29}, - [2560] = {.lex_state = 325, .external_lex_state = 29}, - [2561] = {.lex_state = 326, .external_lex_state = 24}, - [2562] = {.lex_state = 35, .external_lex_state = 24}, - [2563] = {.lex_state = 325, .external_lex_state = 29}, - [2564] = {.lex_state = 325, .external_lex_state = 29}, - [2565] = {.lex_state = 325, .external_lex_state = 29}, - [2566] = {.lex_state = 35, .external_lex_state = 24}, - [2567] = {.lex_state = 325, .external_lex_state = 29}, - [2568] = {.lex_state = 35, .external_lex_state = 24}, - [2569] = {.lex_state = 35, .external_lex_state = 24}, - [2570] = {.lex_state = 325, .external_lex_state = 29}, - [2571] = {.lex_state = 35, .external_lex_state = 24}, - [2572] = {.lex_state = 325, .external_lex_state = 29}, - [2573] = {.lex_state = 159, .external_lex_state = 3}, - [2574] = {.lex_state = 35, .external_lex_state = 24}, - [2575] = {.lex_state = 35, .external_lex_state = 24}, - [2576] = {.lex_state = 325, .external_lex_state = 29}, - [2577] = {.lex_state = 326, .external_lex_state = 24}, - [2578] = {.lex_state = 326, .external_lex_state = 24}, - [2579] = {.lex_state = 35, .external_lex_state = 24}, - [2580] = {.lex_state = 325, .external_lex_state = 29}, - [2581] = {.lex_state = 326, .external_lex_state = 24}, - [2582] = {.lex_state = 35, .external_lex_state = 24}, - [2583] = {.lex_state = 159, .external_lex_state = 3}, - [2584] = {.lex_state = 326, .external_lex_state = 24}, - [2585] = {.lex_state = 35, .external_lex_state = 24}, - [2586] = {.lex_state = 35, .external_lex_state = 24}, - [2587] = {.lex_state = 35, .external_lex_state = 24}, - [2588] = {.lex_state = 325, .external_lex_state = 29}, - [2589] = {.lex_state = 325, .external_lex_state = 29}, - [2590] = {.lex_state = 35, .external_lex_state = 24}, - [2591] = {.lex_state = 35, .external_lex_state = 24}, - [2592] = {.lex_state = 325, .external_lex_state = 29}, - [2593] = {.lex_state = 35, .external_lex_state = 24}, - [2594] = {.lex_state = 325, .external_lex_state = 29}, - [2595] = {.lex_state = 35, .external_lex_state = 24}, - [2596] = {.lex_state = 35, .external_lex_state = 24}, - [2597] = {.lex_state = 325, .external_lex_state = 29}, - [2598] = {.lex_state = 325, .external_lex_state = 29}, - [2599] = {.lex_state = 325, .external_lex_state = 29}, - [2600] = {.lex_state = 325, .external_lex_state = 29}, - [2601] = {.lex_state = 35, .external_lex_state = 24}, - [2602] = {.lex_state = 159, .external_lex_state = 3}, - [2603] = {.lex_state = 159, .external_lex_state = 3}, - [2604] = {.lex_state = 325, .external_lex_state = 29}, - [2605] = {.lex_state = 325, .external_lex_state = 29}, - [2606] = {.lex_state = 325, .external_lex_state = 29}, - [2607] = {.lex_state = 35, .external_lex_state = 24}, - [2608] = {.lex_state = 326, .external_lex_state = 24}, - [2609] = {.lex_state = 35, .external_lex_state = 24}, - [2610] = {.lex_state = 35, .external_lex_state = 24}, - [2611] = {.lex_state = 35, .external_lex_state = 24}, - [2612] = {.lex_state = 35, .external_lex_state = 24}, - [2613] = {.lex_state = 35, .external_lex_state = 24}, - [2614] = {.lex_state = 35, .external_lex_state = 24}, - [2615] = {.lex_state = 325, .external_lex_state = 29}, - [2616] = {.lex_state = 35, .external_lex_state = 24}, - [2617] = {.lex_state = 325, .external_lex_state = 29}, - [2618] = {.lex_state = 325, .external_lex_state = 29}, - [2619] = {.lex_state = 35, .external_lex_state = 24}, - [2620] = {.lex_state = 325, .external_lex_state = 29}, - [2621] = {.lex_state = 35, .external_lex_state = 24}, - [2622] = {.lex_state = 35, .external_lex_state = 24}, - [2623] = {.lex_state = 325, .external_lex_state = 29}, - [2624] = {.lex_state = 325, .external_lex_state = 29}, - [2625] = {.lex_state = 325, .external_lex_state = 29}, - [2626] = {.lex_state = 325, .external_lex_state = 29}, - [2627] = {.lex_state = 35, .external_lex_state = 24}, - [2628] = {.lex_state = 35, .external_lex_state = 24}, - [2629] = {.lex_state = 35, .external_lex_state = 24}, - [2630] = {.lex_state = 159, .external_lex_state = 3}, - [2631] = {.lex_state = 35, .external_lex_state = 24}, - [2632] = {.lex_state = 326, .external_lex_state = 24}, - [2633] = {.lex_state = 35, .external_lex_state = 24}, - [2634] = {.lex_state = 35, .external_lex_state = 24}, - [2635] = {.lex_state = 35, .external_lex_state = 24}, - [2636] = {.lex_state = 35, .external_lex_state = 24}, - [2637] = {.lex_state = 325, .external_lex_state = 29}, - [2638] = {.lex_state = 159, .external_lex_state = 3}, - [2639] = {.lex_state = 159, .external_lex_state = 3}, - [2640] = {.lex_state = 159, .external_lex_state = 3}, - [2641] = {.lex_state = 35, .external_lex_state = 25}, - [2642] = {.lex_state = 35, .external_lex_state = 23}, - [2643] = {.lex_state = 35, .external_lex_state = 25}, - [2644] = {.lex_state = 35, .external_lex_state = 23}, - [2645] = {.lex_state = 325, .external_lex_state = 28}, - [2646] = {.lex_state = 325, .external_lex_state = 28}, - [2647] = {.lex_state = 159, .external_lex_state = 3}, - [2648] = {.lex_state = 325, .external_lex_state = 30}, - [2649] = {.lex_state = 325, .external_lex_state = 30}, - [2650] = {.lex_state = 159, .external_lex_state = 3}, - [2651] = {.lex_state = 159, .external_lex_state = 3}, - [2652] = {.lex_state = 159, .external_lex_state = 3}, - [2653] = {.lex_state = 159, .external_lex_state = 3}, - [2654] = {.lex_state = 159, .external_lex_state = 3}, - [2655] = {.lex_state = 159, .external_lex_state = 3}, - [2656] = {.lex_state = 159, .external_lex_state = 3}, - [2657] = {.lex_state = 159, .external_lex_state = 3}, - [2658] = {.lex_state = 159, .external_lex_state = 3}, - [2659] = {.lex_state = 159, .external_lex_state = 3}, - [2660] = {.lex_state = 159, .external_lex_state = 3}, - [2661] = {.lex_state = 159, .external_lex_state = 3}, - [2662] = {.lex_state = 159, .external_lex_state = 3}, - [2663] = {.lex_state = 159, .external_lex_state = 3}, - [2664] = {.lex_state = 159, .external_lex_state = 3}, - [2665] = {.lex_state = 325, .external_lex_state = 28}, - [2666] = {.lex_state = 325, .external_lex_state = 28}, - [2667] = {.lex_state = 325, .external_lex_state = 28}, - [2668] = {.lex_state = 325, .external_lex_state = 28}, - [2669] = {.lex_state = 325, .external_lex_state = 28}, - [2670] = {.lex_state = 325, .external_lex_state = 28}, - [2671] = {.lex_state = 325, .external_lex_state = 28}, - [2672] = {.lex_state = 325, .external_lex_state = 28}, - [2673] = {.lex_state = 35, .external_lex_state = 23}, - [2674] = {.lex_state = 325, .external_lex_state = 28}, - [2675] = {.lex_state = 325, .external_lex_state = 28}, - [2676] = {.lex_state = 35, .external_lex_state = 23}, - [2677] = {.lex_state = 325, .external_lex_state = 28}, - [2678] = {.lex_state = 35, .external_lex_state = 23}, - [2679] = {.lex_state = 325, .external_lex_state = 31}, - [2680] = {.lex_state = 325, .external_lex_state = 28}, - [2681] = {.lex_state = 35, .external_lex_state = 23}, - [2682] = {.lex_state = 325, .external_lex_state = 28}, - [2683] = {.lex_state = 35, .external_lex_state = 23}, - [2684] = {.lex_state = 325, .external_lex_state = 28}, - [2685] = {.lex_state = 325, .external_lex_state = 28}, - [2686] = {.lex_state = 325, .external_lex_state = 28}, - [2687] = {.lex_state = 325, .external_lex_state = 28}, - [2688] = {.lex_state = 325, .external_lex_state = 28}, - [2689] = {.lex_state = 35, .external_lex_state = 26}, - [2690] = {.lex_state = 325, .external_lex_state = 31}, - [2691] = {.lex_state = 35, .external_lex_state = 23}, - [2692] = {.lex_state = 35, .external_lex_state = 23}, - [2693] = {.lex_state = 325, .external_lex_state = 28}, - [2694] = {.lex_state = 35, .external_lex_state = 23}, - [2695] = {.lex_state = 325, .external_lex_state = 28}, - [2696] = {.lex_state = 325, .external_lex_state = 28}, - [2697] = {.lex_state = 35, .external_lex_state = 23}, - [2698] = {.lex_state = 325, .external_lex_state = 28}, - [2699] = {.lex_state = 35, .external_lex_state = 23}, - [2700] = {.lex_state = 35, .external_lex_state = 23}, - [2701] = {.lex_state = 35, .external_lex_state = 23}, - [2702] = {.lex_state = 35, .external_lex_state = 23}, - [2703] = {.lex_state = 35, .external_lex_state = 23}, - [2704] = {.lex_state = 35, .external_lex_state = 23}, - [2705] = {.lex_state = 35, .external_lex_state = 23}, - [2706] = {.lex_state = 35, .external_lex_state = 23}, - [2707] = {.lex_state = 35, .external_lex_state = 23}, - [2708] = {.lex_state = 35, .external_lex_state = 23}, - [2709] = {.lex_state = 35, .external_lex_state = 23}, - [2710] = {.lex_state = 35, .external_lex_state = 23}, - [2711] = {.lex_state = 35, .external_lex_state = 23}, - [2712] = {.lex_state = 35, .external_lex_state = 23}, - [2713] = {.lex_state = 34, .external_lex_state = 21}, - [2714] = {.lex_state = 34, .external_lex_state = 21}, - [2715] = {.lex_state = 35, .external_lex_state = 26}, - [2716] = {.lex_state = 325, .external_lex_state = 28}, - [2717] = {.lex_state = 34, .external_lex_state = 21}, - [2718] = {.lex_state = 34, .external_lex_state = 21}, - [2719] = {.lex_state = 325, .external_lex_state = 29}, - [2720] = {.lex_state = 325, .external_lex_state = 29}, - [2721] = {.lex_state = 325, .external_lex_state = 29}, - [2722] = {.lex_state = 34, .external_lex_state = 21}, - [2723] = {.lex_state = 325, .external_lex_state = 29}, - [2724] = {.lex_state = 325, .external_lex_state = 29}, - [2725] = {.lex_state = 34, .external_lex_state = 21}, - [2726] = {.lex_state = 34, .external_lex_state = 21}, - [2727] = {.lex_state = 325, .external_lex_state = 29}, - [2728] = {.lex_state = 34, .external_lex_state = 21}, - [2729] = {.lex_state = 35, .external_lex_state = 24}, - [2730] = {.lex_state = 325, .external_lex_state = 29}, - [2731] = {.lex_state = 35, .external_lex_state = 24}, - [2732] = {.lex_state = 325, .external_lex_state = 29}, - [2733] = {.lex_state = 35, .external_lex_state = 24}, - [2734] = {.lex_state = 34, .external_lex_state = 21}, - [2735] = {.lex_state = 34, .external_lex_state = 21}, - [2736] = {.lex_state = 34, .external_lex_state = 21}, - [2737] = {.lex_state = 35, .external_lex_state = 24}, - [2738] = {.lex_state = 325, .external_lex_state = 29}, - [2739] = {.lex_state = 35, .external_lex_state = 24}, - [2740] = {.lex_state = 325, .external_lex_state = 29}, - [2741] = {.lex_state = 34, .external_lex_state = 21}, - [2742] = {.lex_state = 34, .external_lex_state = 21}, - [2743] = {.lex_state = 34, .external_lex_state = 21}, - [2744] = {.lex_state = 35, .external_lex_state = 24}, - [2745] = {.lex_state = 34, .external_lex_state = 21}, - [2746] = {.lex_state = 34, .external_lex_state = 21}, - [2747] = {.lex_state = 34, .external_lex_state = 21}, - [2748] = {.lex_state = 34, .external_lex_state = 21}, - [2749] = {.lex_state = 35, .external_lex_state = 24}, - [2750] = {.lex_state = 35, .external_lex_state = 24}, - [2751] = {.lex_state = 34, .external_lex_state = 21}, - [2752] = {.lex_state = 34, .external_lex_state = 21}, - [2753] = {.lex_state = 35, .external_lex_state = 24}, - [2754] = {.lex_state = 34, .external_lex_state = 21}, - [2755] = {.lex_state = 34, .external_lex_state = 21}, - [2756] = {.lex_state = 35, .external_lex_state = 24}, - [2757] = {.lex_state = 34, .external_lex_state = 21}, - [2758] = {.lex_state = 34, .external_lex_state = 21}, - [2759] = {.lex_state = 34, .external_lex_state = 21}, - [2760] = {.lex_state = 19, .external_lex_state = 7}, - [2761] = {.lex_state = 19, .external_lex_state = 7}, - [2762] = {.lex_state = 19, .external_lex_state = 7}, - [2763] = {.lex_state = 19, .external_lex_state = 7}, - [2764] = {.lex_state = 19, .external_lex_state = 7}, - [2765] = {.lex_state = 19, .external_lex_state = 7}, - [2766] = {.lex_state = 19, .external_lex_state = 7}, - [2767] = {.lex_state = 19, .external_lex_state = 7}, - [2768] = {.lex_state = 19, .external_lex_state = 7}, - [2769] = {.lex_state = 160, .external_lex_state = 32}, - [2770] = {.lex_state = 160, .external_lex_state = 32}, - [2771] = {.lex_state = 160, .external_lex_state = 32}, - [2772] = {.lex_state = 160, .external_lex_state = 32}, - [2773] = {.lex_state = 160, .external_lex_state = 32}, - [2774] = {.lex_state = 160, .external_lex_state = 32}, - [2775] = {.lex_state = 160, .external_lex_state = 32}, - [2776] = {.lex_state = 160, .external_lex_state = 32}, - [2777] = {.lex_state = 160, .external_lex_state = 32}, - [2778] = {.lex_state = 160, .external_lex_state = 32}, - [2779] = {.lex_state = 160, .external_lex_state = 32}, - [2780] = {.lex_state = 160, .external_lex_state = 32}, - [2781] = {.lex_state = 160, .external_lex_state = 32}, - [2782] = {.lex_state = 160, .external_lex_state = 32}, - [2783] = {.lex_state = 160, .external_lex_state = 32}, - [2784] = {.lex_state = 160, .external_lex_state = 32}, - [2785] = {.lex_state = 160, .external_lex_state = 32}, - [2786] = {.lex_state = 160, .external_lex_state = 32}, - [2787] = {.lex_state = 160, .external_lex_state = 32}, - [2788] = {.lex_state = 160, .external_lex_state = 32}, - [2789] = {.lex_state = 160, .external_lex_state = 32}, - [2790] = {.lex_state = 160, .external_lex_state = 32}, - [2791] = {.lex_state = 160, .external_lex_state = 32}, - [2792] = {.lex_state = 160, .external_lex_state = 32}, - [2793] = {.lex_state = 160, .external_lex_state = 32}, - [2794] = {.lex_state = 160, .external_lex_state = 32}, - [2795] = {.lex_state = 160, .external_lex_state = 32}, - [2796] = {.lex_state = 160, .external_lex_state = 32}, - [2797] = {.lex_state = 160, .external_lex_state = 32}, - [2798] = {.lex_state = 160, .external_lex_state = 32}, - [2799] = {.lex_state = 160, .external_lex_state = 32}, - [2800] = {.lex_state = 160, .external_lex_state = 32}, - [2801] = {.lex_state = 160, .external_lex_state = 32}, - [2802] = {.lex_state = 160, .external_lex_state = 32}, - [2803] = {.lex_state = 160, .external_lex_state = 32}, - [2804] = {.lex_state = 160, .external_lex_state = 32}, - [2805] = {.lex_state = 160, .external_lex_state = 32}, - [2806] = {.lex_state = 160, .external_lex_state = 32}, - [2807] = {.lex_state = 160, .external_lex_state = 32}, - [2808] = {.lex_state = 160, .external_lex_state = 32}, - [2809] = {.lex_state = 160, .external_lex_state = 32}, - [2810] = {.lex_state = 160, .external_lex_state = 32}, - [2811] = {.lex_state = 160, .external_lex_state = 32}, - [2812] = {.lex_state = 160, .external_lex_state = 32}, - [2813] = {.lex_state = 160, .external_lex_state = 32}, - [2814] = {.lex_state = 160, .external_lex_state = 32}, - [2815] = {.lex_state = 160, .external_lex_state = 32}, - [2816] = {.lex_state = 160, .external_lex_state = 32}, - [2817] = {.lex_state = 160, .external_lex_state = 32}, - [2818] = {.lex_state = 160, .external_lex_state = 32}, - [2819] = {.lex_state = 160, .external_lex_state = 32}, - [2820] = {.lex_state = 160, .external_lex_state = 32}, - [2821] = {.lex_state = 160, .external_lex_state = 32}, - [2822] = {.lex_state = 160, .external_lex_state = 32}, - [2823] = {.lex_state = 160, .external_lex_state = 32}, - [2824] = {.lex_state = 160, .external_lex_state = 32}, - [2825] = {.lex_state = 160, .external_lex_state = 32}, - [2826] = {.lex_state = 160, .external_lex_state = 32}, - [2827] = {.lex_state = 160, .external_lex_state = 32}, - [2828] = {.lex_state = 160, .external_lex_state = 32}, - [2829] = {.lex_state = 160, .external_lex_state = 32}, - [2830] = {.lex_state = 160, .external_lex_state = 32}, - [2831] = {.lex_state = 160, .external_lex_state = 32}, - [2832] = {.lex_state = 160, .external_lex_state = 32}, - [2833] = {.lex_state = 160, .external_lex_state = 32}, - [2834] = {.lex_state = 160, .external_lex_state = 32}, - [2835] = {.lex_state = 160, .external_lex_state = 32}, - [2836] = {.lex_state = 160, .external_lex_state = 32}, - [2837] = {.lex_state = 160, .external_lex_state = 32}, - [2838] = {.lex_state = 160, .external_lex_state = 32}, - [2839] = {.lex_state = 160, .external_lex_state = 32}, - [2840] = {.lex_state = 160, .external_lex_state = 32}, - [2841] = {.lex_state = 160, .external_lex_state = 32}, - [2842] = {.lex_state = 160, .external_lex_state = 32}, - [2843] = {.lex_state = 160, .external_lex_state = 32}, - [2844] = {.lex_state = 160, .external_lex_state = 32}, - [2845] = {.lex_state = 160, .external_lex_state = 32}, - [2846] = {.lex_state = 160, .external_lex_state = 32}, - [2847] = {.lex_state = 160, .external_lex_state = 32}, - [2848] = {.lex_state = 160, .external_lex_state = 32}, - [2849] = {.lex_state = 160, .external_lex_state = 32}, - [2850] = {.lex_state = 160, .external_lex_state = 32}, - [2851] = {.lex_state = 160, .external_lex_state = 32}, - [2852] = {.lex_state = 160, .external_lex_state = 32}, - [2853] = {.lex_state = 160, .external_lex_state = 32}, - [2854] = {.lex_state = 160, .external_lex_state = 32}, - [2855] = {.lex_state = 160, .external_lex_state = 32}, - [2856] = {.lex_state = 160, .external_lex_state = 32}, - [2857] = {.lex_state = 160, .external_lex_state = 32}, - [2858] = {.lex_state = 160, .external_lex_state = 32}, - [2859] = {.lex_state = 160, .external_lex_state = 32}, - [2860] = {.lex_state = 160, .external_lex_state = 32}, - [2861] = {.lex_state = 160, .external_lex_state = 32}, - [2862] = {.lex_state = 160, .external_lex_state = 32}, - [2863] = {.lex_state = 160, .external_lex_state = 32}, - [2864] = {.lex_state = 160, .external_lex_state = 32}, - [2865] = {.lex_state = 160, .external_lex_state = 32}, - [2866] = {.lex_state = 160, .external_lex_state = 32}, - [2867] = {.lex_state = 160, .external_lex_state = 32}, - [2868] = {.lex_state = 160, .external_lex_state = 32}, - [2869] = {.lex_state = 160, .external_lex_state = 32}, - [2870] = {.lex_state = 160, .external_lex_state = 32}, - [2871] = {.lex_state = 160, .external_lex_state = 32}, - [2872] = {.lex_state = 160, .external_lex_state = 32}, - [2873] = {.lex_state = 160, .external_lex_state = 32}, - [2874] = {.lex_state = 160, .external_lex_state = 32}, - [2875] = {.lex_state = 160, .external_lex_state = 32}, - [2876] = {.lex_state = 160, .external_lex_state = 32}, - [2877] = {.lex_state = 160, .external_lex_state = 32}, - [2878] = {.lex_state = 160, .external_lex_state = 32}, - [2879] = {.lex_state = 160, .external_lex_state = 32}, - [2880] = {.lex_state = 160, .external_lex_state = 32}, - [2881] = {.lex_state = 160, .external_lex_state = 32}, - [2882] = {.lex_state = 160, .external_lex_state = 32}, - [2883] = {.lex_state = 160, .external_lex_state = 32}, - [2884] = {.lex_state = 160, .external_lex_state = 32}, - [2885] = {.lex_state = 160, .external_lex_state = 32}, - [2886] = {.lex_state = 160, .external_lex_state = 32}, - [2887] = {.lex_state = 160, .external_lex_state = 32}, - [2888] = {.lex_state = 160, .external_lex_state = 32}, - [2889] = {.lex_state = 160, .external_lex_state = 32}, - [2890] = {.lex_state = 160, .external_lex_state = 32}, - [2891] = {.lex_state = 160, .external_lex_state = 32}, - [2892] = {.lex_state = 160, .external_lex_state = 32}, - [2893] = {.lex_state = 160, .external_lex_state = 32}, - [2894] = {.lex_state = 160, .external_lex_state = 32}, - [2895] = {.lex_state = 160, .external_lex_state = 32}, - [2896] = {.lex_state = 160, .external_lex_state = 32}, - [2897] = {.lex_state = 160, .external_lex_state = 32}, - [2898] = {.lex_state = 160, .external_lex_state = 32}, - [2899] = {.lex_state = 160, .external_lex_state = 32}, - [2900] = {.lex_state = 327, .external_lex_state = 33}, - [2901] = {.lex_state = 160, .external_lex_state = 32}, - [2902] = {.lex_state = 160, .external_lex_state = 32}, - [2903] = {.lex_state = 327, .external_lex_state = 33}, - [2904] = {.lex_state = 160, .external_lex_state = 32}, - [2905] = {.lex_state = 160, .external_lex_state = 32}, - [2906] = {.lex_state = 160, .external_lex_state = 32}, - [2907] = {.lex_state = 160, .external_lex_state = 32}, - [2908] = {.lex_state = 160, .external_lex_state = 32}, - [2909] = {.lex_state = 160, .external_lex_state = 32}, - [2910] = {.lex_state = 160, .external_lex_state = 32}, - [2911] = {.lex_state = 160, .external_lex_state = 32}, - [2912] = {.lex_state = 327, .external_lex_state = 33}, - [2913] = {.lex_state = 327, .external_lex_state = 33}, - [2914] = {.lex_state = 158, .external_lex_state = 27}, - [2915] = {.lex_state = 158, .external_lex_state = 27}, - [2916] = {.lex_state = 327, .external_lex_state = 33}, - [2917] = {.lex_state = 327, .external_lex_state = 33}, - [2918] = {.lex_state = 327, .external_lex_state = 33}, - [2919] = {.lex_state = 327, .external_lex_state = 33}, - [2920] = {.lex_state = 158, .external_lex_state = 27}, - [2921] = {.lex_state = 327, .external_lex_state = 33}, - [2922] = {.lex_state = 327, .external_lex_state = 33}, - [2923] = {.lex_state = 158, .external_lex_state = 27}, - [2924] = {.lex_state = 158, .external_lex_state = 27}, - [2925] = {.lex_state = 326}, - [2926] = {.lex_state = 158, .external_lex_state = 27}, - [2927] = {.lex_state = 158, .external_lex_state = 27}, - [2928] = {.lex_state = 158, .external_lex_state = 27}, - [2929] = {.lex_state = 327, .external_lex_state = 33}, - [2930] = {.lex_state = 158, .external_lex_state = 27}, - [2931] = {.lex_state = 158, .external_lex_state = 27}, - [2932] = {.lex_state = 158, .external_lex_state = 27}, - [2933] = {.lex_state = 158, .external_lex_state = 27}, - [2934] = {.lex_state = 158, .external_lex_state = 27}, - [2935] = {.lex_state = 158, .external_lex_state = 27}, - [2936] = {.lex_state = 158, .external_lex_state = 27}, - [2937] = {.lex_state = 158, .external_lex_state = 27}, - [2938] = {.lex_state = 158, .external_lex_state = 27}, - [2939] = {.lex_state = 158, .external_lex_state = 27}, - [2940] = {.lex_state = 158, .external_lex_state = 27}, - [2941] = {.lex_state = 327, .external_lex_state = 33}, - [2942] = {.lex_state = 158, .external_lex_state = 27}, - [2943] = {.lex_state = 327, .external_lex_state = 33}, - [2944] = {.lex_state = 327, .external_lex_state = 33}, - [2945] = {.lex_state = 327, .external_lex_state = 33}, - [2946] = {.lex_state = 327, .external_lex_state = 33}, - [2947] = {.lex_state = 327, .external_lex_state = 33}, - [2948] = {.lex_state = 327, .external_lex_state = 33}, - [2949] = {.lex_state = 327, .external_lex_state = 33}, - [2950] = {.lex_state = 327, .external_lex_state = 33}, - [2951] = {.lex_state = 327, .external_lex_state = 33}, - [2952] = {.lex_state = 327, .external_lex_state = 33}, - [2953] = {.lex_state = 327, .external_lex_state = 33}, - [2954] = {.lex_state = 327, .external_lex_state = 33}, - [2955] = {.lex_state = 327, .external_lex_state = 33}, - [2956] = {.lex_state = 158, .external_lex_state = 27}, - [2957] = {.lex_state = 327, .external_lex_state = 34}, - [2958] = {.lex_state = 327, .external_lex_state = 34}, - [2959] = {.lex_state = 327, .external_lex_state = 34}, - [2960] = {.lex_state = 327, .external_lex_state = 34}, - [2961] = {.lex_state = 327}, - [2962] = {.lex_state = 327}, - [2963] = {.lex_state = 327}, - [2964] = {.lex_state = 327}, - [2965] = {.lex_state = 327}, - [2966] = {.lex_state = 327}, - [2967] = {.lex_state = 327}, - [2968] = {.lex_state = 327}, - [2969] = {.lex_state = 327}, - [2970] = {.lex_state = 327}, - [2971] = {.lex_state = 327}, - [2972] = {.lex_state = 327}, - [2973] = {.lex_state = 327}, - [2974] = {.lex_state = 327}, - [2975] = {.lex_state = 327}, - [2976] = {.lex_state = 327}, - [2977] = {.lex_state = 327}, - [2978] = {.lex_state = 327}, - [2979] = {.lex_state = 327}, - [2980] = {.lex_state = 327}, - [2981] = {.lex_state = 327}, - [2982] = {.lex_state = 327}, - [2983] = {.lex_state = 327}, - [2984] = {.lex_state = 327}, - [2985] = {.lex_state = 327}, - [2986] = {.lex_state = 327}, - [2987] = {.lex_state = 327}, - [2988] = {.lex_state = 37, .external_lex_state = 33}, - [2989] = {.lex_state = 159, .external_lex_state = 3}, - [2990] = {.lex_state = 159, .external_lex_state = 3}, - [2991] = {.lex_state = 159, .external_lex_state = 3}, - [2992] = {.lex_state = 37, .external_lex_state = 34}, - [2993] = {.lex_state = 159, .external_lex_state = 3}, - [2994] = {.lex_state = 159, .external_lex_state = 3}, - [2995] = {.lex_state = 37, .external_lex_state = 33}, - [2996] = {.lex_state = 159, .external_lex_state = 3}, - [2997] = {.lex_state = 159, .external_lex_state = 3}, - [2998] = {.lex_state = 159, .external_lex_state = 3}, - [2999] = {.lex_state = 159, .external_lex_state = 3}, - [3000] = {.lex_state = 159, .external_lex_state = 3}, - [3001] = {.lex_state = 159, .external_lex_state = 3}, - [3002] = {.lex_state = 159, .external_lex_state = 3}, - [3003] = {.lex_state = 159, .external_lex_state = 3}, - [3004] = {.lex_state = 37, .external_lex_state = 34}, - [3005] = {.lex_state = 326}, - [3006] = {.lex_state = 326}, - [3007] = {.lex_state = 326}, - [3008] = {.lex_state = 159, .external_lex_state = 3}, - [3009] = {.lex_state = 159, .external_lex_state = 3}, - [3010] = {.lex_state = 159, .external_lex_state = 3}, - [3011] = {.lex_state = 159, .external_lex_state = 3}, - [3012] = {.lex_state = 159, .external_lex_state = 3}, - [3013] = {.lex_state = 319, .external_lex_state = 34}, - [3014] = {.lex_state = 27, .external_lex_state = 34}, - [3015] = {.lex_state = 37, .external_lex_state = 33}, - [3016] = {.lex_state = 37}, - [3017] = {.lex_state = 327, .external_lex_state = 34}, - [3018] = {.lex_state = 327, .external_lex_state = 34}, - [3019] = {.lex_state = 37, .external_lex_state = 33}, - [3020] = {.lex_state = 37, .external_lex_state = 33}, - [3021] = {.lex_state = 37, .external_lex_state = 33}, - [3022] = {.lex_state = 37}, - [3023] = {.lex_state = 37, .external_lex_state = 33}, - [3024] = {.lex_state = 37, .external_lex_state = 33}, - [3025] = {.lex_state = 37, .external_lex_state = 33}, - [3026] = {.lex_state = 37, .external_lex_state = 33}, - [3027] = {.lex_state = 37, .external_lex_state = 33}, - [3028] = {.lex_state = 37, .external_lex_state = 33}, - [3029] = {.lex_state = 319, .external_lex_state = 34}, - [3030] = {.lex_state = 37, .external_lex_state = 33}, - [3031] = {.lex_state = 37, .external_lex_state = 33}, - [3032] = {.lex_state = 37, .external_lex_state = 33}, - [3033] = {.lex_state = 37, .external_lex_state = 33}, - [3034] = {.lex_state = 37}, - [3035] = {.lex_state = 37, .external_lex_state = 33}, - [3036] = {.lex_state = 37, .external_lex_state = 33}, - [3037] = {.lex_state = 37, .external_lex_state = 33}, - [3038] = {.lex_state = 37, .external_lex_state = 33}, - [3039] = {.lex_state = 37, .external_lex_state = 33}, - [3040] = {.lex_state = 37, .external_lex_state = 33}, - [3041] = {.lex_state = 37, .external_lex_state = 33}, - [3042] = {.lex_state = 37, .external_lex_state = 33}, - [3043] = {.lex_state = 27, .external_lex_state = 34}, - [3044] = {.lex_state = 37, .external_lex_state = 33}, - [3045] = {.lex_state = 37, .external_lex_state = 34}, - [3046] = {.lex_state = 327}, - [3047] = {.lex_state = 27}, - [3048] = {.lex_state = 27}, - [3049] = {.lex_state = 37, .external_lex_state = 34}, - [3050] = {.lex_state = 319}, - [3051] = {.lex_state = 327}, - [3052] = {.lex_state = 327}, - [3053] = {.lex_state = 37, .external_lex_state = 34}, - [3054] = {.lex_state = 27}, - [3055] = {.lex_state = 319}, - [3056] = {.lex_state = 319}, - [3057] = {.lex_state = 37, .external_lex_state = 34}, - [3058] = {.lex_state = 36}, - [3059] = {.lex_state = 37}, - [3060] = {.lex_state = 38, .external_lex_state = 33}, - [3061] = {.lex_state = 37}, - [3062] = {.lex_state = 160, .external_lex_state = 32}, - [3063] = {.lex_state = 160, .external_lex_state = 32}, - [3064] = {.lex_state = 160, .external_lex_state = 32}, - [3065] = {.lex_state = 319, .external_lex_state = 35}, - [3066] = {.lex_state = 37}, - [3067] = {.lex_state = 160, .external_lex_state = 32}, - [3068] = {.lex_state = 38, .external_lex_state = 33}, - [3069] = {.lex_state = 37}, - [3070] = {.lex_state = 36}, - [3071] = {.lex_state = 319, .external_lex_state = 36}, - [3072] = {.lex_state = 36}, - [3073] = {.lex_state = 327, .external_lex_state = 34}, - [3074] = {.lex_state = 160, .external_lex_state = 32}, - [3075] = {.lex_state = 160, .external_lex_state = 32}, - [3076] = {.lex_state = 327, .external_lex_state = 34}, - [3077] = {.lex_state = 37}, - [3078] = {.lex_state = 160, .external_lex_state = 32}, - [3079] = {.lex_state = 160, .external_lex_state = 32}, - [3080] = {.lex_state = 37}, - [3081] = {.lex_state = 160, .external_lex_state = 32}, - [3082] = {.lex_state = 37}, - [3083] = {.lex_state = 327, .external_lex_state = 34}, - [3084] = {.lex_state = 327, .external_lex_state = 34}, - [3085] = {.lex_state = 37}, - [3086] = {.lex_state = 36}, - [3087] = {.lex_state = 37}, - [3088] = {.lex_state = 160, .external_lex_state = 32}, - [3089] = {.lex_state = 36}, - [3090] = {.lex_state = 327, .external_lex_state = 34}, - [3091] = {.lex_state = 327, .external_lex_state = 34}, - [3092] = {.lex_state = 36}, - [3093] = {.lex_state = 160, .external_lex_state = 32}, - [3094] = {.lex_state = 36}, - [3095] = {.lex_state = 37}, - [3096] = {.lex_state = 36}, - [3097] = {.lex_state = 37}, - [3098] = {.lex_state = 36}, - [3099] = {.lex_state = 36}, - [3100] = {.lex_state = 36}, - [3101] = {.lex_state = 37}, - [3102] = {.lex_state = 36}, - [3103] = {.lex_state = 37}, - [3104] = {.lex_state = 36}, - [3105] = {.lex_state = 36}, - [3106] = {.lex_state = 36}, - [3107] = {.lex_state = 38, .external_lex_state = 34}, - [3108] = {.lex_state = 319, .external_lex_state = 36}, - [3109] = {.lex_state = 37}, - [3110] = {.lex_state = 36}, - [3111] = {.lex_state = 37}, - [3112] = {.lex_state = 36}, - [3113] = {.lex_state = 37}, - [3114] = {.lex_state = 36}, - [3115] = {.lex_state = 37}, - [3116] = {.lex_state = 36}, - [3117] = {.lex_state = 36}, - [3118] = {.lex_state = 36}, + [1373] = {.lex_state = 21, .external_lex_state = 14}, + [1374] = {.lex_state = 21, .external_lex_state = 14}, + [1375] = {.lex_state = 326, .external_lex_state = 14}, + [1376] = {.lex_state = 21, .external_lex_state = 14}, + [1377] = {.lex_state = 21, .external_lex_state = 14}, + [1378] = {.lex_state = 21, .external_lex_state = 14}, + [1379] = {.lex_state = 21, .external_lex_state = 14}, + [1380] = {.lex_state = 21, .external_lex_state = 14}, + [1381] = {.lex_state = 21, .external_lex_state = 14}, + [1382] = {.lex_state = 21, .external_lex_state = 14}, + [1383] = {.lex_state = 21, .external_lex_state = 14}, + [1384] = {.lex_state = 20, .external_lex_state = 7}, + [1385] = {.lex_state = 21, .external_lex_state = 14}, + [1386] = {.lex_state = 21, .external_lex_state = 14}, + [1387] = {.lex_state = 21, .external_lex_state = 14}, + [1388] = {.lex_state = 21, .external_lex_state = 14}, + [1389] = {.lex_state = 20, .external_lex_state = 7}, + [1390] = {.lex_state = 20, .external_lex_state = 7}, + [1391] = {.lex_state = 20, .external_lex_state = 7}, + [1392] = {.lex_state = 18, .external_lex_state = 14}, + [1393] = {.lex_state = 13, .external_lex_state = 6}, + [1394] = {.lex_state = 13, .external_lex_state = 6}, + [1395] = {.lex_state = 13, .external_lex_state = 6}, + [1396] = {.lex_state = 18, .external_lex_state = 14}, + [1397] = {.lex_state = 13, .external_lex_state = 6}, + [1398] = {.lex_state = 13, .external_lex_state = 6}, + [1399] = {.lex_state = 326, .external_lex_state = 14}, + [1400] = {.lex_state = 18, .external_lex_state = 14}, + [1401] = {.lex_state = 326, .external_lex_state = 14}, + [1402] = {.lex_state = 326, .external_lex_state = 14}, + [1403] = {.lex_state = 18, .external_lex_state = 14}, + [1404] = {.lex_state = 20, .external_lex_state = 7}, + [1405] = {.lex_state = 18, .external_lex_state = 14}, + [1406] = {.lex_state = 20, .external_lex_state = 7}, + [1407] = {.lex_state = 20, .external_lex_state = 7}, + [1408] = {.lex_state = 14, .external_lex_state = 12}, + [1409] = {.lex_state = 20, .external_lex_state = 7}, + [1410] = {.lex_state = 20, .external_lex_state = 7}, + [1411] = {.lex_state = 14, .external_lex_state = 12}, + [1412] = {.lex_state = 326, .external_lex_state = 14}, + [1413] = {.lex_state = 326, .external_lex_state = 14}, + [1414] = {.lex_state = 20, .external_lex_state = 7}, + [1415] = {.lex_state = 326, .external_lex_state = 14}, + [1416] = {.lex_state = 326, .external_lex_state = 14}, + [1417] = {.lex_state = 326, .external_lex_state = 14}, + [1418] = {.lex_state = 326, .external_lex_state = 14}, + [1419] = {.lex_state = 326, .external_lex_state = 14}, + [1420] = {.lex_state = 18, .external_lex_state = 14}, + [1421] = {.lex_state = 18, .external_lex_state = 14}, + [1422] = {.lex_state = 18, .external_lex_state = 14}, + [1423] = {.lex_state = 15, .external_lex_state = 12}, + [1424] = {.lex_state = 18, .external_lex_state = 14}, + [1425] = {.lex_state = 18, .external_lex_state = 14}, + [1426] = {.lex_state = 18, .external_lex_state = 14}, + [1427] = {.lex_state = 18, .external_lex_state = 14}, + [1428] = {.lex_state = 18, .external_lex_state = 14}, + [1429] = {.lex_state = 18, .external_lex_state = 14}, + [1430] = {.lex_state = 18, .external_lex_state = 14}, + [1431] = {.lex_state = 18, .external_lex_state = 14}, + [1432] = {.lex_state = 18, .external_lex_state = 14}, + [1433] = {.lex_state = 18, .external_lex_state = 14}, + [1434] = {.lex_state = 18, .external_lex_state = 14}, + [1435] = {.lex_state = 18, .external_lex_state = 14}, + [1436] = {.lex_state = 18, .external_lex_state = 14}, + [1437] = {.lex_state = 18, .external_lex_state = 14}, + [1438] = {.lex_state = 325, .external_lex_state = 15}, + [1439] = {.lex_state = 326, .external_lex_state = 14}, + [1440] = {.lex_state = 15, .external_lex_state = 12}, + [1441] = {.lex_state = 325, .external_lex_state = 6}, + [1442] = {.lex_state = 325, .external_lex_state = 6}, + [1443] = {.lex_state = 325, .external_lex_state = 6}, + [1444] = {.lex_state = 325, .external_lex_state = 15}, + [1445] = {.lex_state = 325, .external_lex_state = 15}, + [1446] = {.lex_state = 16, .external_lex_state = 12}, + [1447] = {.lex_state = 16, .external_lex_state = 12}, + [1448] = {.lex_state = 16, .external_lex_state = 12}, + [1449] = {.lex_state = 15, .external_lex_state = 12}, + [1450] = {.lex_state = 12, .external_lex_state = 6}, + [1451] = {.lex_state = 21, .external_lex_state = 14}, + [1452] = {.lex_state = 12, .external_lex_state = 6}, + [1453] = {.lex_state = 17, .external_lex_state = 12}, + [1454] = {.lex_state = 12, .external_lex_state = 6}, + [1455] = {.lex_state = 12, .external_lex_state = 6}, + [1456] = {.lex_state = 12, .external_lex_state = 6}, + [1457] = {.lex_state = 12, .external_lex_state = 6}, + [1458] = {.lex_state = 326, .external_lex_state = 14}, + [1459] = {.lex_state = 13, .external_lex_state = 6}, + [1460] = {.lex_state = 13, .external_lex_state = 6}, + [1461] = {.lex_state = 13, .external_lex_state = 6}, + [1462] = {.lex_state = 17, .external_lex_state = 12}, + [1463] = {.lex_state = 326, .external_lex_state = 14}, + [1464] = {.lex_state = 12, .external_lex_state = 6}, + [1465] = {.lex_state = 12, .external_lex_state = 6}, + [1466] = {.lex_state = 326, .external_lex_state = 14}, + [1467] = {.lex_state = 150, .external_lex_state = 11}, + [1468] = {.lex_state = 150, .external_lex_state = 11}, + [1469] = {.lex_state = 17, .external_lex_state = 12}, + [1470] = {.lex_state = 150, .external_lex_state = 11}, + [1471] = {.lex_state = 326, .external_lex_state = 14}, + [1472] = {.lex_state = 150, .external_lex_state = 11}, + [1473] = {.lex_state = 14, .external_lex_state = 12}, + [1474] = {.lex_state = 325, .external_lex_state = 6}, + [1475] = {.lex_state = 325, .external_lex_state = 6}, + [1476] = {.lex_state = 325, .external_lex_state = 6}, + [1477] = {.lex_state = 325, .external_lex_state = 6}, + [1478] = {.lex_state = 325, .external_lex_state = 6}, + [1479] = {.lex_state = 326, .external_lex_state = 14}, + [1480] = {.lex_state = 18, .external_lex_state = 14}, + [1481] = {.lex_state = 17, .external_lex_state = 12}, + [1482] = {.lex_state = 14, .external_lex_state = 12}, + [1483] = {.lex_state = 325, .external_lex_state = 15}, + [1484] = {.lex_state = 325, .external_lex_state = 15}, + [1485] = {.lex_state = 325, .external_lex_state = 15}, + [1486] = {.lex_state = 14, .external_lex_state = 12}, + [1487] = {.lex_state = 325, .external_lex_state = 15}, + [1488] = {.lex_state = 14, .external_lex_state = 12}, + [1489] = {.lex_state = 15, .external_lex_state = 12}, + [1490] = {.lex_state = 14, .external_lex_state = 12}, + [1491] = {.lex_state = 15, .external_lex_state = 12}, + [1492] = {.lex_state = 14, .external_lex_state = 12}, + [1493] = {.lex_state = 18, .external_lex_state = 7}, + [1494] = {.lex_state = 14, .external_lex_state = 12}, + [1495] = {.lex_state = 30, .external_lex_state = 13}, + [1496] = {.lex_state = 15, .external_lex_state = 12}, + [1497] = {.lex_state = 21, .external_lex_state = 7}, + [1498] = {.lex_state = 31, .external_lex_state = 13}, + [1499] = {.lex_state = 15, .external_lex_state = 12}, + [1500] = {.lex_state = 15, .external_lex_state = 12}, + [1501] = {.lex_state = 14, .external_lex_state = 12}, + [1502] = {.lex_state = 18, .external_lex_state = 7}, + [1503] = {.lex_state = 14, .external_lex_state = 12}, + [1504] = {.lex_state = 18, .external_lex_state = 7}, + [1505] = {.lex_state = 18, .external_lex_state = 7}, + [1506] = {.lex_state = 14, .external_lex_state = 12}, + [1507] = {.lex_state = 14, .external_lex_state = 12}, + [1508] = {.lex_state = 326, .external_lex_state = 10}, + [1509] = {.lex_state = 14, .external_lex_state = 12}, + [1510] = {.lex_state = 14, .external_lex_state = 12}, + [1511] = {.lex_state = 14, .external_lex_state = 12}, + [1512] = {.lex_state = 15, .external_lex_state = 12}, + [1513] = {.lex_state = 14, .external_lex_state = 12}, + [1514] = {.lex_state = 22, .external_lex_state = 14}, + [1515] = {.lex_state = 22, .external_lex_state = 14}, + [1516] = {.lex_state = 31, .external_lex_state = 13}, + [1517] = {.lex_state = 15, .external_lex_state = 12}, + [1518] = {.lex_state = 15, .external_lex_state = 12}, + [1519] = {.lex_state = 15, .external_lex_state = 12}, + [1520] = {.lex_state = 23, .external_lex_state = 14}, + [1521] = {.lex_state = 21, .external_lex_state = 7}, + [1522] = {.lex_state = 21, .external_lex_state = 7}, + [1523] = {.lex_state = 21, .external_lex_state = 7}, + [1524] = {.lex_state = 326, .external_lex_state = 16}, + [1525] = {.lex_state = 21, .external_lex_state = 7}, + [1526] = {.lex_state = 21, .external_lex_state = 7}, + [1527] = {.lex_state = 325, .external_lex_state = 15}, + [1528] = {.lex_state = 325, .external_lex_state = 15}, + [1529] = {.lex_state = 325, .external_lex_state = 15}, + [1530] = {.lex_state = 325, .external_lex_state = 15}, + [1531] = {.lex_state = 325, .external_lex_state = 15}, + [1532] = {.lex_state = 325, .external_lex_state = 15}, + [1533] = {.lex_state = 326, .external_lex_state = 16}, + [1534] = {.lex_state = 326, .external_lex_state = 7}, + [1535] = {.lex_state = 18, .external_lex_state = 7}, + [1536] = {.lex_state = 24, .external_lex_state = 14}, + [1537] = {.lex_state = 325, .external_lex_state = 15}, + [1538] = {.lex_state = 18, .external_lex_state = 7}, + [1539] = {.lex_state = 18, .external_lex_state = 7}, + [1540] = {.lex_state = 325, .external_lex_state = 15}, + [1541] = {.lex_state = 325, .external_lex_state = 15}, + [1542] = {.lex_state = 325, .external_lex_state = 15}, + [1543] = {.lex_state = 325, .external_lex_state = 15}, + [1544] = {.lex_state = 325, .external_lex_state = 15}, + [1545] = {.lex_state = 24, .external_lex_state = 14}, + [1546] = {.lex_state = 325, .external_lex_state = 15}, + [1547] = {.lex_state = 325, .external_lex_state = 15}, + [1548] = {.lex_state = 326, .external_lex_state = 7}, + [1549] = {.lex_state = 326, .external_lex_state = 7}, + [1550] = {.lex_state = 326, .external_lex_state = 7}, + [1551] = {.lex_state = 325, .external_lex_state = 15}, + [1552] = {.lex_state = 16, .external_lex_state = 12}, + [1553] = {.lex_state = 18, .external_lex_state = 7}, + [1554] = {.lex_state = 16, .external_lex_state = 12}, + [1555] = {.lex_state = 16, .external_lex_state = 12}, + [1556] = {.lex_state = 24, .external_lex_state = 7}, + [1557] = {.lex_state = 16, .external_lex_state = 12}, + [1558] = {.lex_state = 16, .external_lex_state = 12}, + [1559] = {.lex_state = 15, .external_lex_state = 12}, + [1560] = {.lex_state = 16, .external_lex_state = 12}, + [1561] = {.lex_state = 16, .external_lex_state = 12}, + [1562] = {.lex_state = 16, .external_lex_state = 12}, + [1563] = {.lex_state = 16, .external_lex_state = 12}, + [1564] = {.lex_state = 326, .external_lex_state = 7}, + [1565] = {.lex_state = 326, .external_lex_state = 7}, + [1566] = {.lex_state = 21, .external_lex_state = 7}, + [1567] = {.lex_state = 16, .external_lex_state = 12}, + [1568] = {.lex_state = 16, .external_lex_state = 12}, + [1569] = {.lex_state = 16, .external_lex_state = 12}, + [1570] = {.lex_state = 16, .external_lex_state = 12}, + [1571] = {.lex_state = 16, .external_lex_state = 12}, + [1572] = {.lex_state = 16, .external_lex_state = 12}, + [1573] = {.lex_state = 327, .external_lex_state = 17}, + [1574] = {.lex_state = 18, .external_lex_state = 7}, + [1575] = {.lex_state = 16, .external_lex_state = 12}, + [1576] = {.lex_state = 16, .external_lex_state = 12}, + [1577] = {.lex_state = 16, .external_lex_state = 12}, + [1578] = {.lex_state = 16, .external_lex_state = 12}, + [1579] = {.lex_state = 16, .external_lex_state = 12}, + [1580] = {.lex_state = 18, .external_lex_state = 7}, + [1581] = {.lex_state = 15, .external_lex_state = 12}, + [1582] = {.lex_state = 16, .external_lex_state = 12}, + [1583] = {.lex_state = 16, .external_lex_state = 12}, + [1584] = {.lex_state = 32, .external_lex_state = 13}, + [1585] = {.lex_state = 15, .external_lex_state = 12}, + [1586] = {.lex_state = 14, .external_lex_state = 12}, + [1587] = {.lex_state = 25, .external_lex_state = 14}, + [1588] = {.lex_state = 14, .external_lex_state = 12}, + [1589] = {.lex_state = 25, .external_lex_state = 14}, + [1590] = {.lex_state = 25, .external_lex_state = 7}, + [1591] = {.lex_state = 32, .external_lex_state = 13}, + [1592] = {.lex_state = 15, .external_lex_state = 12}, + [1593] = {.lex_state = 33, .external_lex_state = 13}, + [1594] = {.lex_state = 326, .external_lex_state = 7}, + [1595] = {.lex_state = 15, .external_lex_state = 12}, + [1596] = {.lex_state = 17, .external_lex_state = 12}, + [1597] = {.lex_state = 14, .external_lex_state = 12}, + [1598] = {.lex_state = 17, .external_lex_state = 12}, + [1599] = {.lex_state = 325, .external_lex_state = 15}, + [1600] = {.lex_state = 21, .external_lex_state = 7}, + [1601] = {.lex_state = 23, .external_lex_state = 14}, + [1602] = {.lex_state = 15, .external_lex_state = 12}, + [1603] = {.lex_state = 325, .external_lex_state = 15}, + [1604] = {.lex_state = 14, .external_lex_state = 12}, + [1605] = {.lex_state = 33, .external_lex_state = 13}, + [1606] = {.lex_state = 14, .external_lex_state = 12}, + [1607] = {.lex_state = 15, .external_lex_state = 12}, + [1608] = {.lex_state = 326, .external_lex_state = 7}, + [1609] = {.lex_state = 30, .external_lex_state = 13}, + [1610] = {.lex_state = 21, .external_lex_state = 7}, + [1611] = {.lex_state = 17, .external_lex_state = 12}, + [1612] = {.lex_state = 15, .external_lex_state = 12}, + [1613] = {.lex_state = 21, .external_lex_state = 7}, + [1614] = {.lex_state = 326, .external_lex_state = 7}, + [1615] = {.lex_state = 17, .external_lex_state = 12}, + [1616] = {.lex_state = 14, .external_lex_state = 12}, + [1617] = {.lex_state = 14, .external_lex_state = 12}, + [1618] = {.lex_state = 14, .external_lex_state = 12}, + [1619] = {.lex_state = 17, .external_lex_state = 12}, + [1620] = {.lex_state = 15, .external_lex_state = 12}, + [1621] = {.lex_state = 15, .external_lex_state = 12}, + [1622] = {.lex_state = 17, .external_lex_state = 12}, + [1623] = {.lex_state = 22, .external_lex_state = 7}, + [1624] = {.lex_state = 15, .external_lex_state = 12}, + [1625] = {.lex_state = 17, .external_lex_state = 12}, + [1626] = {.lex_state = 17, .external_lex_state = 12}, + [1627] = {.lex_state = 14, .external_lex_state = 12}, + [1628] = {.lex_state = 15, .external_lex_state = 12}, + [1629] = {.lex_state = 17, .external_lex_state = 12}, + [1630] = {.lex_state = 17, .external_lex_state = 12}, + [1631] = {.lex_state = 17, .external_lex_state = 12}, + [1632] = {.lex_state = 17, .external_lex_state = 12}, + [1633] = {.lex_state = 325, .external_lex_state = 15}, + [1634] = {.lex_state = 325, .external_lex_state = 15}, + [1635] = {.lex_state = 17, .external_lex_state = 12}, + [1636] = {.lex_state = 17, .external_lex_state = 12}, + [1637] = {.lex_state = 17, .external_lex_state = 12}, + [1638] = {.lex_state = 17, .external_lex_state = 12}, + [1639] = {.lex_state = 327, .external_lex_state = 17}, + [1640] = {.lex_state = 17, .external_lex_state = 12}, + [1641] = {.lex_state = 15, .external_lex_state = 12}, + [1642] = {.lex_state = 326, .external_lex_state = 7}, + [1643] = {.lex_state = 17, .external_lex_state = 12}, + [1644] = {.lex_state = 17, .external_lex_state = 12}, + [1645] = {.lex_state = 17, .external_lex_state = 12}, + [1646] = {.lex_state = 17, .external_lex_state = 12}, + [1647] = {.lex_state = 17, .external_lex_state = 12}, + [1648] = {.lex_state = 15, .external_lex_state = 12}, + [1649] = {.lex_state = 23, .external_lex_state = 7}, + [1650] = {.lex_state = 16, .external_lex_state = 12}, + [1651] = {.lex_state = 23, .external_lex_state = 14}, + [1652] = {.lex_state = 326, .external_lex_state = 16}, + [1653] = {.lex_state = 326, .external_lex_state = 16}, + [1654] = {.lex_state = 326, .external_lex_state = 16}, + [1655] = {.lex_state = 22, .external_lex_state = 14}, + [1656] = {.lex_state = 22, .external_lex_state = 14}, + [1657] = {.lex_state = 326, .external_lex_state = 16}, + [1658] = {.lex_state = 25, .external_lex_state = 14}, + [1659] = {.lex_state = 22, .external_lex_state = 14}, + [1660] = {.lex_state = 24, .external_lex_state = 14}, + [1661] = {.lex_state = 326, .external_lex_state = 16}, + [1662] = {.lex_state = 22, .external_lex_state = 14}, + [1663] = {.lex_state = 24, .external_lex_state = 14}, + [1664] = {.lex_state = 22, .external_lex_state = 14}, + [1665] = {.lex_state = 25, .external_lex_state = 14}, + [1666] = {.lex_state = 22, .external_lex_state = 14}, + [1667] = {.lex_state = 326, .external_lex_state = 16}, + [1668] = {.lex_state = 325, .external_lex_state = 9}, + [1669] = {.lex_state = 326, .external_lex_state = 16}, + [1670] = {.lex_state = 23, .external_lex_state = 14}, + [1671] = {.lex_state = 23, .external_lex_state = 14}, + [1672] = {.lex_state = 22, .external_lex_state = 14}, + [1673] = {.lex_state = 22, .external_lex_state = 14}, + [1674] = {.lex_state = 23, .external_lex_state = 14}, + [1675] = {.lex_state = 22, .external_lex_state = 14}, + [1676] = {.lex_state = 22, .external_lex_state = 14}, + [1677] = {.lex_state = 326, .external_lex_state = 16}, + [1678] = {.lex_state = 22, .external_lex_state = 14}, + [1679] = {.lex_state = 23, .external_lex_state = 14}, + [1680] = {.lex_state = 22, .external_lex_state = 14}, + [1681] = {.lex_state = 22, .external_lex_state = 14}, + [1682] = {.lex_state = 22, .external_lex_state = 14}, + [1683] = {.lex_state = 23, .external_lex_state = 14}, + [1684] = {.lex_state = 326, .external_lex_state = 16}, + [1685] = {.lex_state = 325, .external_lex_state = 9}, + [1686] = {.lex_state = 22, .external_lex_state = 14}, + [1687] = {.lex_state = 22, .external_lex_state = 14}, + [1688] = {.lex_state = 22, .external_lex_state = 14}, + [1689] = {.lex_state = 22, .external_lex_state = 14}, + [1690] = {.lex_state = 326, .external_lex_state = 16}, + [1691] = {.lex_state = 326, .external_lex_state = 16}, + [1692] = {.lex_state = 326, .external_lex_state = 16}, + [1693] = {.lex_state = 23, .external_lex_state = 14}, + [1694] = {.lex_state = 23, .external_lex_state = 14}, + [1695] = {.lex_state = 326, .external_lex_state = 16}, + [1696] = {.lex_state = 23, .external_lex_state = 14}, + [1697] = {.lex_state = 23, .external_lex_state = 14}, + [1698] = {.lex_state = 23, .external_lex_state = 14}, + [1699] = {.lex_state = 23, .external_lex_state = 14}, + [1700] = {.lex_state = 23, .external_lex_state = 14}, + [1701] = {.lex_state = 23, .external_lex_state = 14}, + [1702] = {.lex_state = 25, .external_lex_state = 14}, + [1703] = {.lex_state = 326, .external_lex_state = 16}, + [1704] = {.lex_state = 326, .external_lex_state = 16}, + [1705] = {.lex_state = 326, .external_lex_state = 16}, + [1706] = {.lex_state = 23, .external_lex_state = 14}, + [1707] = {.lex_state = 23, .external_lex_state = 14}, + [1708] = {.lex_state = 23, .external_lex_state = 14}, + [1709] = {.lex_state = 23, .external_lex_state = 14}, + [1710] = {.lex_state = 25, .external_lex_state = 14}, + [1711] = {.lex_state = 326, .external_lex_state = 16}, + [1712] = {.lex_state = 24, .external_lex_state = 14}, + [1713] = {.lex_state = 14, .external_lex_state = 6}, + [1714] = {.lex_state = 24, .external_lex_state = 14}, + [1715] = {.lex_state = 14, .external_lex_state = 6}, + [1716] = {.lex_state = 14, .external_lex_state = 6}, + [1717] = {.lex_state = 24, .external_lex_state = 14}, + [1718] = {.lex_state = 14, .external_lex_state = 6}, + [1719] = {.lex_state = 14, .external_lex_state = 6}, + [1720] = {.lex_state = 24, .external_lex_state = 14}, + [1721] = {.lex_state = 24, .external_lex_state = 14}, + [1722] = {.lex_state = 24, .external_lex_state = 14}, + [1723] = {.lex_state = 15, .external_lex_state = 6}, + [1724] = {.lex_state = 24, .external_lex_state = 14}, + [1725] = {.lex_state = 15, .external_lex_state = 6}, + [1726] = {.lex_state = 15, .external_lex_state = 6}, + [1727] = {.lex_state = 24, .external_lex_state = 14}, + [1728] = {.lex_state = 24, .external_lex_state = 14}, + [1729] = {.lex_state = 24, .external_lex_state = 14}, + [1730] = {.lex_state = 15, .external_lex_state = 6}, + [1731] = {.lex_state = 15, .external_lex_state = 6}, + [1732] = {.lex_state = 24, .external_lex_state = 14}, + [1733] = {.lex_state = 24, .external_lex_state = 14}, + [1734] = {.lex_state = 24, .external_lex_state = 14}, + [1735] = {.lex_state = 15, .external_lex_state = 6}, + [1736] = {.lex_state = 24, .external_lex_state = 14}, + [1737] = {.lex_state = 24, .external_lex_state = 14}, + [1738] = {.lex_state = 24, .external_lex_state = 14}, + [1739] = {.lex_state = 24, .external_lex_state = 14}, + [1740] = {.lex_state = 25, .external_lex_state = 14}, + [1741] = {.lex_state = 25, .external_lex_state = 14}, + [1742] = {.lex_state = 25, .external_lex_state = 14}, + [1743] = {.lex_state = 25, .external_lex_state = 14}, + [1744] = {.lex_state = 25, .external_lex_state = 14}, + [1745] = {.lex_state = 25, .external_lex_state = 14}, + [1746] = {.lex_state = 325, .external_lex_state = 9}, + [1747] = {.lex_state = 325, .external_lex_state = 9}, + [1748] = {.lex_state = 25, .external_lex_state = 14}, + [1749] = {.lex_state = 25, .external_lex_state = 14}, + [1750] = {.lex_state = 25, .external_lex_state = 14}, + [1751] = {.lex_state = 25, .external_lex_state = 14}, + [1752] = {.lex_state = 25, .external_lex_state = 14}, + [1753] = {.lex_state = 25, .external_lex_state = 14}, + [1754] = {.lex_state = 25, .external_lex_state = 14}, + [1755] = {.lex_state = 25, .external_lex_state = 14}, + [1756] = {.lex_state = 25, .external_lex_state = 14}, + [1757] = {.lex_state = 25, .external_lex_state = 14}, + [1758] = {.lex_state = 25, .external_lex_state = 14}, + [1759] = {.lex_state = 16, .external_lex_state = 6}, + [1760] = {.lex_state = 25, .external_lex_state = 14}, + [1761] = {.lex_state = 16, .external_lex_state = 6}, + [1762] = {.lex_state = 16, .external_lex_state = 6}, + [1763] = {.lex_state = 326, .external_lex_state = 16}, + [1764] = {.lex_state = 16, .external_lex_state = 6}, + [1765] = {.lex_state = 16, .external_lex_state = 6}, + [1766] = {.lex_state = 16, .external_lex_state = 6}, + [1767] = {.lex_state = 16, .external_lex_state = 6}, + [1768] = {.lex_state = 16, .external_lex_state = 6}, + [1769] = {.lex_state = 17, .external_lex_state = 6}, + [1770] = {.lex_state = 17, .external_lex_state = 6}, + [1771] = {.lex_state = 17, .external_lex_state = 6}, + [1772] = {.lex_state = 17, .external_lex_state = 6}, + [1773] = {.lex_state = 17, .external_lex_state = 6}, + [1774] = {.lex_state = 17, .external_lex_state = 6}, + [1775] = {.lex_state = 17, .external_lex_state = 6}, + [1776] = {.lex_state = 17, .external_lex_state = 6}, + [1777] = {.lex_state = 326, .external_lex_state = 16}, + [1778] = {.lex_state = 326, .external_lex_state = 16}, + [1779] = {.lex_state = 22, .external_lex_state = 14}, + [1780] = {.lex_state = 325, .external_lex_state = 9}, + [1781] = {.lex_state = 22, .external_lex_state = 14}, + [1782] = {.lex_state = 326, .external_lex_state = 16}, + [1783] = {.lex_state = 23, .external_lex_state = 14}, + [1784] = {.lex_state = 22, .external_lex_state = 14}, + [1785] = {.lex_state = 326, .external_lex_state = 16}, + [1786] = {.lex_state = 23, .external_lex_state = 14}, + [1787] = {.lex_state = 22, .external_lex_state = 14}, + [1788] = {.lex_state = 22, .external_lex_state = 14}, + [1789] = {.lex_state = 23, .external_lex_state = 14}, + [1790] = {.lex_state = 326, .external_lex_state = 16}, + [1791] = {.lex_state = 24, .external_lex_state = 14}, + [1792] = {.lex_state = 14, .external_lex_state = 6}, + [1793] = {.lex_state = 14, .external_lex_state = 6}, + [1794] = {.lex_state = 14, .external_lex_state = 6}, + [1795] = {.lex_state = 23, .external_lex_state = 14}, + [1796] = {.lex_state = 325, .external_lex_state = 9}, + [1797] = {.lex_state = 23, .external_lex_state = 14}, + [1798] = {.lex_state = 325, .external_lex_state = 9}, + [1799] = {.lex_state = 24, .external_lex_state = 14}, + [1800] = {.lex_state = 325, .external_lex_state = 9}, + [1801] = {.lex_state = 25, .external_lex_state = 14}, + [1802] = {.lex_state = 24, .external_lex_state = 14}, + [1803] = {.lex_state = 15, .external_lex_state = 6}, + [1804] = {.lex_state = 15, .external_lex_state = 6}, + [1805] = {.lex_state = 24, .external_lex_state = 14}, + [1806] = {.lex_state = 24, .external_lex_state = 7}, + [1807] = {.lex_state = 23, .external_lex_state = 7}, + [1808] = {.lex_state = 326, .external_lex_state = 10}, + [1809] = {.lex_state = 326, .external_lex_state = 10}, + [1810] = {.lex_state = 24, .external_lex_state = 7}, + [1811] = {.lex_state = 326, .external_lex_state = 10}, + [1812] = {.lex_state = 24, .external_lex_state = 7}, + [1813] = {.lex_state = 24, .external_lex_state = 7}, + [1814] = {.lex_state = 154, .external_lex_state = 18}, + [1815] = {.lex_state = 23, .external_lex_state = 7}, + [1816] = {.lex_state = 151, .external_lex_state = 11}, + [1817] = {.lex_state = 22, .external_lex_state = 7}, + [1818] = {.lex_state = 22, .external_lex_state = 7}, + [1819] = {.lex_state = 151, .external_lex_state = 11}, + [1820] = {.lex_state = 23, .external_lex_state = 7}, + [1821] = {.lex_state = 24, .external_lex_state = 7}, + [1822] = {.lex_state = 24, .external_lex_state = 7}, + [1823] = {.lex_state = 24, .external_lex_state = 7}, + [1824] = {.lex_state = 154, .external_lex_state = 18}, + [1825] = {.lex_state = 23, .external_lex_state = 7}, + [1826] = {.lex_state = 24, .external_lex_state = 7}, + [1827] = {.lex_state = 151, .external_lex_state = 11}, + [1828] = {.lex_state = 23, .external_lex_state = 7}, + [1829] = {.lex_state = 24, .external_lex_state = 7}, + [1830] = {.lex_state = 23, .external_lex_state = 7}, + [1831] = {.lex_state = 24, .external_lex_state = 7}, + [1832] = {.lex_state = 326, .external_lex_state = 10}, + [1833] = {.lex_state = 151, .external_lex_state = 11}, + [1834] = {.lex_state = 326, .external_lex_state = 10}, + [1835] = {.lex_state = 326, .external_lex_state = 10}, + [1836] = {.lex_state = 25, .external_lex_state = 7}, + [1837] = {.lex_state = 25, .external_lex_state = 7}, + [1838] = {.lex_state = 25, .external_lex_state = 7}, + [1839] = {.lex_state = 25, .external_lex_state = 7}, + [1840] = {.lex_state = 25, .external_lex_state = 7}, + [1841] = {.lex_state = 25, .external_lex_state = 7}, + [1842] = {.lex_state = 25, .external_lex_state = 7}, + [1843] = {.lex_state = 25, .external_lex_state = 7}, + [1844] = {.lex_state = 25, .external_lex_state = 7}, + [1845] = {.lex_state = 25, .external_lex_state = 7}, + [1846] = {.lex_state = 22, .external_lex_state = 7}, + [1847] = {.lex_state = 326, .external_lex_state = 10}, + [1848] = {.lex_state = 151, .external_lex_state = 11}, + [1849] = {.lex_state = 23, .external_lex_state = 7}, + [1850] = {.lex_state = 151, .external_lex_state = 11}, + [1851] = {.lex_state = 326, .external_lex_state = 10}, + [1852] = {.lex_state = 151, .external_lex_state = 11}, + [1853] = {.lex_state = 22, .external_lex_state = 7}, + [1854] = {.lex_state = 22, .external_lex_state = 7}, + [1855] = {.lex_state = 23, .external_lex_state = 7}, + [1856] = {.lex_state = 23, .external_lex_state = 7}, + [1857] = {.lex_state = 326, .external_lex_state = 10}, + [1858] = {.lex_state = 22, .external_lex_state = 7}, + [1859] = {.lex_state = 22, .external_lex_state = 7}, + [1860] = {.lex_state = 22, .external_lex_state = 7}, + [1861] = {.lex_state = 151, .external_lex_state = 11}, + [1862] = {.lex_state = 22, .external_lex_state = 7}, + [1863] = {.lex_state = 22, .external_lex_state = 7}, + [1864] = {.lex_state = 151, .external_lex_state = 11}, + [1865] = {.lex_state = 326, .external_lex_state = 10}, + [1866] = {.lex_state = 23, .external_lex_state = 7}, + [1867] = {.lex_state = 154, .external_lex_state = 18}, + [1868] = {.lex_state = 154, .external_lex_state = 18}, + [1869] = {.lex_state = 154, .external_lex_state = 18}, + [1870] = {.lex_state = 154, .external_lex_state = 18}, + [1871] = {.lex_state = 154, .external_lex_state = 18}, + [1872] = {.lex_state = 154, .external_lex_state = 18}, + [1873] = {.lex_state = 154, .external_lex_state = 18}, + [1874] = {.lex_state = 154, .external_lex_state = 18}, + [1875] = {.lex_state = 154, .external_lex_state = 18}, + [1876] = {.lex_state = 154, .external_lex_state = 18}, + [1877] = {.lex_state = 154, .external_lex_state = 18}, + [1878] = {.lex_state = 154, .external_lex_state = 18}, + [1879] = {.lex_state = 154, .external_lex_state = 18}, + [1880] = {.lex_state = 154, .external_lex_state = 18}, + [1881] = {.lex_state = 154, .external_lex_state = 18}, + [1882] = {.lex_state = 154, .external_lex_state = 18}, + [1883] = {.lex_state = 154, .external_lex_state = 18}, + [1884] = {.lex_state = 154, .external_lex_state = 18}, + [1885] = {.lex_state = 154, .external_lex_state = 18}, + [1886] = {.lex_state = 154, .external_lex_state = 18}, + [1887] = {.lex_state = 154, .external_lex_state = 18}, + [1888] = {.lex_state = 154, .external_lex_state = 18}, + [1889] = {.lex_state = 154, .external_lex_state = 18}, + [1890] = {.lex_state = 154, .external_lex_state = 18}, + [1891] = {.lex_state = 20, .external_lex_state = 11}, + [1892] = {.lex_state = 20, .external_lex_state = 11}, + [1893] = {.lex_state = 20, .external_lex_state = 11}, + [1894] = {.lex_state = 20, .external_lex_state = 11}, + [1895] = {.lex_state = 20, .external_lex_state = 11}, + [1896] = {.lex_state = 20, .external_lex_state = 11}, + [1897] = {.lex_state = 20, .external_lex_state = 11}, + [1898] = {.lex_state = 20, .external_lex_state = 11}, + [1899] = {.lex_state = 20, .external_lex_state = 11}, + [1900] = {.lex_state = 20, .external_lex_state = 11}, + [1901] = {.lex_state = 154, .external_lex_state = 11}, + [1902] = {.lex_state = 20, .external_lex_state = 11}, + [1903] = {.lex_state = 20, .external_lex_state = 11}, + [1904] = {.lex_state = 20, .external_lex_state = 11}, + [1905] = {.lex_state = 20, .external_lex_state = 11}, + [1906] = {.lex_state = 20, .external_lex_state = 11}, + [1907] = {.lex_state = 20, .external_lex_state = 11}, + [1908] = {.lex_state = 20, .external_lex_state = 11}, + [1909] = {.lex_state = 20, .external_lex_state = 11}, + [1910] = {.lex_state = 20, .external_lex_state = 11}, + [1911] = {.lex_state = 20, .external_lex_state = 11}, + [1912] = {.lex_state = 20, .external_lex_state = 11}, + [1913] = {.lex_state = 20, .external_lex_state = 11}, + [1914] = {.lex_state = 20, .external_lex_state = 11}, + [1915] = {.lex_state = 20, .external_lex_state = 11}, + [1916] = {.lex_state = 20, .external_lex_state = 11}, + [1917] = {.lex_state = 20, .external_lex_state = 11}, + [1918] = {.lex_state = 20, .external_lex_state = 11}, + [1919] = {.lex_state = 20, .external_lex_state = 11}, + [1920] = {.lex_state = 34, .external_lex_state = 11}, + [1921] = {.lex_state = 34, .external_lex_state = 11}, + [1922] = {.lex_state = 34, .external_lex_state = 11}, + [1923] = {.lex_state = 18, .external_lex_state = 2}, + [1924] = {.lex_state = 20, .external_lex_state = 11}, + [1925] = {.lex_state = 34, .external_lex_state = 11}, + [1926] = {.lex_state = 328, .external_lex_state = 19}, + [1927] = {.lex_state = 328, .external_lex_state = 19}, + [1928] = {.lex_state = 328, .external_lex_state = 19}, + [1929] = {.lex_state = 34, .external_lex_state = 11}, + [1930] = {.lex_state = 328, .external_lex_state = 20}, + [1931] = {.lex_state = 18, .external_lex_state = 11}, + [1932] = {.lex_state = 328, .external_lex_state = 20}, + [1933] = {.lex_state = 18, .external_lex_state = 11}, + [1934] = {.lex_state = 328, .external_lex_state = 20}, + [1935] = {.lex_state = 328, .external_lex_state = 20}, + [1936] = {.lex_state = 328, .external_lex_state = 20}, + [1937] = {.lex_state = 328, .external_lex_state = 20}, + [1938] = {.lex_state = 328, .external_lex_state = 20}, + [1939] = {.lex_state = 18, .external_lex_state = 11}, + [1940] = {.lex_state = 18, .external_lex_state = 11}, + [1941] = {.lex_state = 328, .external_lex_state = 20}, + [1942] = {.lex_state = 18, .external_lex_state = 11}, + [1943] = {.lex_state = 328, .external_lex_state = 20}, + [1944] = {.lex_state = 18, .external_lex_state = 11}, + [1945] = {.lex_state = 328, .external_lex_state = 20}, + [1946] = {.lex_state = 328, .external_lex_state = 20}, + [1947] = {.lex_state = 328, .external_lex_state = 20}, + [1948] = {.lex_state = 18, .external_lex_state = 11}, + [1949] = {.lex_state = 328, .external_lex_state = 20}, + [1950] = {.lex_state = 328, .external_lex_state = 20}, + [1951] = {.lex_state = 18, .external_lex_state = 11}, + [1952] = {.lex_state = 18, .external_lex_state = 11}, + [1953] = {.lex_state = 18, .external_lex_state = 11}, + [1954] = {.lex_state = 18, .external_lex_state = 11}, + [1955] = {.lex_state = 328, .external_lex_state = 20}, + [1956] = {.lex_state = 18, .external_lex_state = 11}, + [1957] = {.lex_state = 328, .external_lex_state = 20}, + [1958] = {.lex_state = 328, .external_lex_state = 20}, + [1959] = {.lex_state = 328, .external_lex_state = 20}, + [1960] = {.lex_state = 328, .external_lex_state = 20}, + [1961] = {.lex_state = 328, .external_lex_state = 20}, + [1962] = {.lex_state = 18, .external_lex_state = 11}, + [1963] = {.lex_state = 18, .external_lex_state = 11}, + [1964] = {.lex_state = 328, .external_lex_state = 20}, + [1965] = {.lex_state = 328, .external_lex_state = 20}, + [1966] = {.lex_state = 328, .external_lex_state = 20}, + [1967] = {.lex_state = 328, .external_lex_state = 20}, + [1968] = {.lex_state = 18, .external_lex_state = 11}, + [1969] = {.lex_state = 328, .external_lex_state = 20}, + [1970] = {.lex_state = 328, .external_lex_state = 20}, + [1971] = {.lex_state = 328, .external_lex_state = 20}, + [1972] = {.lex_state = 18, .external_lex_state = 21}, + [1973] = {.lex_state = 328, .external_lex_state = 20}, + [1974] = {.lex_state = 328, .external_lex_state = 20}, + [1975] = {.lex_state = 328, .external_lex_state = 20}, + [1976] = {.lex_state = 328, .external_lex_state = 20}, + [1977] = {.lex_state = 328, .external_lex_state = 20}, + [1978] = {.lex_state = 328, .external_lex_state = 20}, + [1979] = {.lex_state = 18, .external_lex_state = 11}, + [1980] = {.lex_state = 18, .external_lex_state = 11}, + [1981] = {.lex_state = 328, .external_lex_state = 20}, + [1982] = {.lex_state = 328, .external_lex_state = 20}, + [1983] = {.lex_state = 18, .external_lex_state = 11}, + [1984] = {.lex_state = 18, .external_lex_state = 11}, + [1985] = {.lex_state = 328, .external_lex_state = 20}, + [1986] = {.lex_state = 18, .external_lex_state = 11}, + [1987] = {.lex_state = 328, .external_lex_state = 20}, + [1988] = {.lex_state = 328, .external_lex_state = 20}, + [1989] = {.lex_state = 328, .external_lex_state = 20}, + [1990] = {.lex_state = 328, .external_lex_state = 20}, + [1991] = {.lex_state = 328, .external_lex_state = 20}, + [1992] = {.lex_state = 328, .external_lex_state = 20}, + [1993] = {.lex_state = 328, .external_lex_state = 20}, + [1994] = {.lex_state = 18, .external_lex_state = 11}, + [1995] = {.lex_state = 328, .external_lex_state = 20}, + [1996] = {.lex_state = 18, .external_lex_state = 11}, + [1997] = {.lex_state = 328, .external_lex_state = 20}, + [1998] = {.lex_state = 328, .external_lex_state = 20}, + [1999] = {.lex_state = 18, .external_lex_state = 11}, + [2000] = {.lex_state = 328, .external_lex_state = 20}, + [2001] = {.lex_state = 328, .external_lex_state = 20}, + [2002] = {.lex_state = 18, .external_lex_state = 11}, + [2003] = {.lex_state = 18, .external_lex_state = 11}, + [2004] = {.lex_state = 18, .external_lex_state = 11}, + [2005] = {.lex_state = 328, .external_lex_state = 20}, + [2006] = {.lex_state = 328, .external_lex_state = 20}, + [2007] = {.lex_state = 328, .external_lex_state = 20}, + [2008] = {.lex_state = 18, .external_lex_state = 11}, + [2009] = {.lex_state = 18, .external_lex_state = 11}, + [2010] = {.lex_state = 328, .external_lex_state = 20}, + [2011] = {.lex_state = 328, .external_lex_state = 20}, + [2012] = {.lex_state = 328, .external_lex_state = 20}, + [2013] = {.lex_state = 328, .external_lex_state = 20}, + [2014] = {.lex_state = 328, .external_lex_state = 20}, + [2015] = {.lex_state = 328, .external_lex_state = 20}, + [2016] = {.lex_state = 328, .external_lex_state = 20}, + [2017] = {.lex_state = 328, .external_lex_state = 20}, + [2018] = {.lex_state = 328, .external_lex_state = 20}, + [2019] = {.lex_state = 328, .external_lex_state = 20}, + [2020] = {.lex_state = 328, .external_lex_state = 20}, + [2021] = {.lex_state = 328, .external_lex_state = 20}, + [2022] = {.lex_state = 328, .external_lex_state = 20}, + [2023] = {.lex_state = 328, .external_lex_state = 20}, + [2024] = {.lex_state = 328, .external_lex_state = 20}, + [2025] = {.lex_state = 328, .external_lex_state = 20}, + [2026] = {.lex_state = 328, .external_lex_state = 20}, + [2027] = {.lex_state = 328, .external_lex_state = 20}, + [2028] = {.lex_state = 328, .external_lex_state = 20}, + [2029] = {.lex_state = 328, .external_lex_state = 20}, + [2030] = {.lex_state = 328, .external_lex_state = 20}, + [2031] = {.lex_state = 328, .external_lex_state = 20}, + [2032] = {.lex_state = 18, .external_lex_state = 21}, + [2033] = {.lex_state = 18, .external_lex_state = 11}, + [2034] = {.lex_state = 18, .external_lex_state = 21}, + [2035] = {.lex_state = 18, .external_lex_state = 21}, + [2036] = {.lex_state = 322, .external_lex_state = 18}, + [2037] = {.lex_state = 322, .external_lex_state = 18}, + [2038] = {.lex_state = 322, .external_lex_state = 11}, + [2039] = {.lex_state = 18, .external_lex_state = 21}, + [2040] = {.lex_state = 18, .external_lex_state = 21}, + [2041] = {.lex_state = 18, .external_lex_state = 21}, + [2042] = {.lex_state = 18, .external_lex_state = 21}, + [2043] = {.lex_state = 18, .external_lex_state = 21}, + [2044] = {.lex_state = 18, .external_lex_state = 21}, + [2045] = {.lex_state = 18, .external_lex_state = 21}, + [2046] = {.lex_state = 18, .external_lex_state = 21}, + [2047] = {.lex_state = 18, .external_lex_state = 21}, + [2048] = {.lex_state = 18, .external_lex_state = 21}, + [2049] = {.lex_state = 18, .external_lex_state = 21}, + [2050] = {.lex_state = 18, .external_lex_state = 21}, + [2051] = {.lex_state = 18, .external_lex_state = 21}, + [2052] = {.lex_state = 18, .external_lex_state = 21}, + [2053] = {.lex_state = 328, .external_lex_state = 19}, + [2054] = {.lex_state = 18, .external_lex_state = 21}, + [2055] = {.lex_state = 18, .external_lex_state = 21}, + [2056] = {.lex_state = 328, .external_lex_state = 19}, + [2057] = {.lex_state = 18, .external_lex_state = 21}, + [2058] = {.lex_state = 322, .external_lex_state = 11}, + [2059] = {.lex_state = 18, .external_lex_state = 21}, + [2060] = {.lex_state = 18, .external_lex_state = 21}, + [2061] = {.lex_state = 18, .external_lex_state = 21}, + [2062] = {.lex_state = 18, .external_lex_state = 21}, + [2063] = {.lex_state = 322, .external_lex_state = 11}, + [2064] = {.lex_state = 328, .external_lex_state = 19}, + [2065] = {.lex_state = 322, .external_lex_state = 18}, + [2066] = {.lex_state = 328, .external_lex_state = 19}, + [2067] = {.lex_state = 322, .external_lex_state = 18}, + [2068] = {.lex_state = 322, .external_lex_state = 18}, + [2069] = {.lex_state = 322, .external_lex_state = 18}, + [2070] = {.lex_state = 322, .external_lex_state = 18}, + [2071] = {.lex_state = 322, .external_lex_state = 18}, + [2072] = {.lex_state = 322, .external_lex_state = 18}, + [2073] = {.lex_state = 322, .external_lex_state = 18}, + [2074] = {.lex_state = 322, .external_lex_state = 18}, + [2075] = {.lex_state = 18, .external_lex_state = 11}, + [2076] = {.lex_state = 322, .external_lex_state = 18}, + [2077] = {.lex_state = 18, .external_lex_state = 11}, + [2078] = {.lex_state = 322, .external_lex_state = 18}, + [2079] = {.lex_state = 328, .external_lex_state = 19}, + [2080] = {.lex_state = 18, .external_lex_state = 2}, + [2081] = {.lex_state = 328, .external_lex_state = 19}, + [2082] = {.lex_state = 322, .external_lex_state = 18}, + [2083] = {.lex_state = 322, .external_lex_state = 18}, + [2084] = {.lex_state = 328, .external_lex_state = 19}, + [2085] = {.lex_state = 322, .external_lex_state = 18}, + [2086] = {.lex_state = 328, .external_lex_state = 19}, + [2087] = {.lex_state = 328, .external_lex_state = 19}, + [2088] = {.lex_state = 322, .external_lex_state = 18}, + [2089] = {.lex_state = 322, .external_lex_state = 18}, + [2090] = {.lex_state = 18, .external_lex_state = 2}, + [2091] = {.lex_state = 328, .external_lex_state = 19}, + [2092] = {.lex_state = 322, .external_lex_state = 18}, + [2093] = {.lex_state = 328, .external_lex_state = 19}, + [2094] = {.lex_state = 322, .external_lex_state = 18}, + [2095] = {.lex_state = 322, .external_lex_state = 18}, + [2096] = {.lex_state = 18, .external_lex_state = 2}, + [2097] = {.lex_state = 328, .external_lex_state = 19}, + [2098] = {.lex_state = 322, .external_lex_state = 18}, + [2099] = {.lex_state = 18, .external_lex_state = 2}, + [2100] = {.lex_state = 328, .external_lex_state = 19}, + [2101] = {.lex_state = 158, .external_lex_state = 11}, + [2102] = {.lex_state = 322, .external_lex_state = 18}, + [2103] = {.lex_state = 328, .external_lex_state = 19}, + [2104] = {.lex_state = 328, .external_lex_state = 19}, + [2105] = {.lex_state = 322, .external_lex_state = 18}, + [2106] = {.lex_state = 18, .external_lex_state = 2}, + [2107] = {.lex_state = 328, .external_lex_state = 19}, + [2108] = {.lex_state = 328, .external_lex_state = 19}, + [2109] = {.lex_state = 328, .external_lex_state = 19}, + [2110] = {.lex_state = 18, .external_lex_state = 11}, + [2111] = {.lex_state = 18, .external_lex_state = 2}, + [2112] = {.lex_state = 18, .external_lex_state = 2}, + [2113] = {.lex_state = 328, .external_lex_state = 19}, + [2114] = {.lex_state = 328, .external_lex_state = 19}, + [2115] = {.lex_state = 328, .external_lex_state = 19}, + [2116] = {.lex_state = 328, .external_lex_state = 19}, + [2117] = {.lex_state = 18, .external_lex_state = 11}, + [2118] = {.lex_state = 328, .external_lex_state = 19}, + [2119] = {.lex_state = 18, .external_lex_state = 11}, + [2120] = {.lex_state = 328, .external_lex_state = 19}, + [2121] = {.lex_state = 322, .external_lex_state = 18}, + [2122] = {.lex_state = 18, .external_lex_state = 11}, + [2123] = {.lex_state = 18, .external_lex_state = 2}, + [2124] = {.lex_state = 18, .external_lex_state = 2}, + [2125] = {.lex_state = 328, .external_lex_state = 19}, + [2126] = {.lex_state = 328, .external_lex_state = 20}, + [2127] = {.lex_state = 18, .external_lex_state = 11}, + [2128] = {.lex_state = 18, .external_lex_state = 11}, + [2129] = {.lex_state = 18, .external_lex_state = 11}, + [2130] = {.lex_state = 18, .external_lex_state = 11}, + [2131] = {.lex_state = 18, .external_lex_state = 11}, + [2132] = {.lex_state = 18, .external_lex_state = 11}, + [2133] = {.lex_state = 18, .external_lex_state = 11}, + [2134] = {.lex_state = 18, .external_lex_state = 11}, + [2135] = {.lex_state = 18, .external_lex_state = 11}, + [2136] = {.lex_state = 328, .external_lex_state = 20}, + [2137] = {.lex_state = 18, .external_lex_state = 11}, + [2138] = {.lex_state = 328, .external_lex_state = 20}, + [2139] = {.lex_state = 18, .external_lex_state = 11}, + [2140] = {.lex_state = 18, .external_lex_state = 11}, + [2141] = {.lex_state = 18, .external_lex_state = 11}, + [2142] = {.lex_state = 18, .external_lex_state = 11}, + [2143] = {.lex_state = 18, .external_lex_state = 11}, + [2144] = {.lex_state = 18, .external_lex_state = 11}, + [2145] = {.lex_state = 18, .external_lex_state = 11}, + [2146] = {.lex_state = 18, .external_lex_state = 11}, + [2147] = {.lex_state = 18, .external_lex_state = 11}, + [2148] = {.lex_state = 328, .external_lex_state = 20}, + [2149] = {.lex_state = 18, .external_lex_state = 11}, + [2150] = {.lex_state = 18, .external_lex_state = 11}, + [2151] = {.lex_state = 328, .external_lex_state = 20}, + [2152] = {.lex_state = 18, .external_lex_state = 11}, + [2153] = {.lex_state = 18, .external_lex_state = 11}, + [2154] = {.lex_state = 18, .external_lex_state = 11}, + [2155] = {.lex_state = 18, .external_lex_state = 11}, + [2156] = {.lex_state = 322, .external_lex_state = 11}, + [2157] = {.lex_state = 18, .external_lex_state = 11}, + [2158] = {.lex_state = 18, .external_lex_state = 11}, + [2159] = {.lex_state = 328, .external_lex_state = 20}, + [2160] = {.lex_state = 18, .external_lex_state = 11}, + [2161] = {.lex_state = 18, .external_lex_state = 11}, + [2162] = {.lex_state = 18, .external_lex_state = 11}, + [2163] = {.lex_state = 18, .external_lex_state = 11}, + [2164] = {.lex_state = 18, .external_lex_state = 11}, + [2165] = {.lex_state = 18, .external_lex_state = 11}, + [2166] = {.lex_state = 18, .external_lex_state = 11}, + [2167] = {.lex_state = 18, .external_lex_state = 11}, + [2168] = {.lex_state = 328, .external_lex_state = 20}, + [2169] = {.lex_state = 18, .external_lex_state = 11}, + [2170] = {.lex_state = 18, .external_lex_state = 11}, + [2171] = {.lex_state = 18, .external_lex_state = 11}, + [2172] = {.lex_state = 35, .external_lex_state = 19}, + [2173] = {.lex_state = 18, .external_lex_state = 11}, + [2174] = {.lex_state = 18, .external_lex_state = 11}, + [2175] = {.lex_state = 18, .external_lex_state = 11}, + [2176] = {.lex_state = 18, .external_lex_state = 11}, + [2177] = {.lex_state = 18, .external_lex_state = 11}, + [2178] = {.lex_state = 18, .external_lex_state = 11}, + [2179] = {.lex_state = 18, .external_lex_state = 11}, + [2180] = {.lex_state = 18, .external_lex_state = 11}, + [2181] = {.lex_state = 328, .external_lex_state = 20}, + [2182] = {.lex_state = 18, .external_lex_state = 11}, + [2183] = {.lex_state = 18, .external_lex_state = 11}, + [2184] = {.lex_state = 18, .external_lex_state = 11}, + [2185] = {.lex_state = 18, .external_lex_state = 11}, + [2186] = {.lex_state = 35, .external_lex_state = 19}, + [2187] = {.lex_state = 35, .external_lex_state = 19}, + [2188] = {.lex_state = 18, .external_lex_state = 11}, + [2189] = {.lex_state = 35, .external_lex_state = 20}, + [2190] = {.lex_state = 161, .external_lex_state = 22}, + [2191] = {.lex_state = 161, .external_lex_state = 22}, + [2192] = {.lex_state = 35, .external_lex_state = 20}, + [2193] = {.lex_state = 35, .external_lex_state = 20}, + [2194] = {.lex_state = 35, .external_lex_state = 20}, + [2195] = {.lex_state = 35, .external_lex_state = 20}, + [2196] = {.lex_state = 35, .external_lex_state = 20}, + [2197] = {.lex_state = 35, .external_lex_state = 20}, + [2198] = {.lex_state = 35, .external_lex_state = 20}, + [2199] = {.lex_state = 35, .external_lex_state = 20}, + [2200] = {.lex_state = 35, .external_lex_state = 20}, + [2201] = {.lex_state = 35, .external_lex_state = 20}, + [2202] = {.lex_state = 35, .external_lex_state = 20}, + [2203] = {.lex_state = 35, .external_lex_state = 20}, + [2204] = {.lex_state = 35, .external_lex_state = 20}, + [2205] = {.lex_state = 35, .external_lex_state = 20}, + [2206] = {.lex_state = 35, .external_lex_state = 20}, + [2207] = {.lex_state = 35, .external_lex_state = 20}, + [2208] = {.lex_state = 35, .external_lex_state = 20}, + [2209] = {.lex_state = 35, .external_lex_state = 20}, + [2210] = {.lex_state = 35, .external_lex_state = 20}, + [2211] = {.lex_state = 35, .external_lex_state = 20}, + [2212] = {.lex_state = 35, .external_lex_state = 20}, + [2213] = {.lex_state = 35, .external_lex_state = 20}, + [2214] = {.lex_state = 35, .external_lex_state = 20}, + [2215] = {.lex_state = 35, .external_lex_state = 20}, + [2216] = {.lex_state = 35, .external_lex_state = 20}, + [2217] = {.lex_state = 35, .external_lex_state = 20}, + [2218] = {.lex_state = 35, .external_lex_state = 20}, + [2219] = {.lex_state = 35, .external_lex_state = 20}, + [2220] = {.lex_state = 35, .external_lex_state = 20}, + [2221] = {.lex_state = 35, .external_lex_state = 20}, + [2222] = {.lex_state = 35, .external_lex_state = 20}, + [2223] = {.lex_state = 35, .external_lex_state = 20}, + [2224] = {.lex_state = 35, .external_lex_state = 20}, + [2225] = {.lex_state = 35, .external_lex_state = 20}, + [2226] = {.lex_state = 35, .external_lex_state = 20}, + [2227] = {.lex_state = 35, .external_lex_state = 20}, + [2228] = {.lex_state = 35, .external_lex_state = 20}, + [2229] = {.lex_state = 35, .external_lex_state = 20}, + [2230] = {.lex_state = 35, .external_lex_state = 20}, + [2231] = {.lex_state = 35, .external_lex_state = 20}, + [2232] = {.lex_state = 35, .external_lex_state = 20}, + [2233] = {.lex_state = 35, .external_lex_state = 20}, + [2234] = {.lex_state = 35, .external_lex_state = 20}, + [2235] = {.lex_state = 35, .external_lex_state = 20}, + [2236] = {.lex_state = 35, .external_lex_state = 20}, + [2237] = {.lex_state = 35, .external_lex_state = 20}, + [2238] = {.lex_state = 35, .external_lex_state = 20}, + [2239] = {.lex_state = 35, .external_lex_state = 20}, + [2240] = {.lex_state = 35, .external_lex_state = 20}, + [2241] = {.lex_state = 35, .external_lex_state = 20}, + [2242] = {.lex_state = 35, .external_lex_state = 20}, + [2243] = {.lex_state = 35, .external_lex_state = 20}, + [2244] = {.lex_state = 35, .external_lex_state = 20}, + [2245] = {.lex_state = 35, .external_lex_state = 20}, + [2246] = {.lex_state = 35, .external_lex_state = 20}, + [2247] = {.lex_state = 35, .external_lex_state = 20}, + [2248] = {.lex_state = 35, .external_lex_state = 20}, + [2249] = {.lex_state = 35, .external_lex_state = 20}, + [2250] = {.lex_state = 35, .external_lex_state = 20}, + [2251] = {.lex_state = 35, .external_lex_state = 20}, + [2252] = {.lex_state = 35, .external_lex_state = 20}, + [2253] = {.lex_state = 35, .external_lex_state = 20}, + [2254] = {.lex_state = 35, .external_lex_state = 20}, + [2255] = {.lex_state = 35, .external_lex_state = 20}, + [2256] = {.lex_state = 161, .external_lex_state = 22}, + [2257] = {.lex_state = 161, .external_lex_state = 22}, + [2258] = {.lex_state = 161, .external_lex_state = 22}, + [2259] = {.lex_state = 35, .external_lex_state = 20}, + [2260] = {.lex_state = 35, .external_lex_state = 20}, + [2261] = {.lex_state = 161, .external_lex_state = 22}, + [2262] = {.lex_state = 161, .external_lex_state = 22}, + [2263] = {.lex_state = 35, .external_lex_state = 20}, + [2264] = {.lex_state = 35, .external_lex_state = 20}, + [2265] = {.lex_state = 161, .external_lex_state = 22}, + [2266] = {.lex_state = 161, .external_lex_state = 22}, + [2267] = {.lex_state = 161, .external_lex_state = 22}, + [2268] = {.lex_state = 161, .external_lex_state = 22}, + [2269] = {.lex_state = 161, .external_lex_state = 22}, + [2270] = {.lex_state = 161, .external_lex_state = 22}, + [2271] = {.lex_state = 161, .external_lex_state = 22}, + [2272] = {.lex_state = 161, .external_lex_state = 22}, + [2273] = {.lex_state = 161, .external_lex_state = 22}, + [2274] = {.lex_state = 161, .external_lex_state = 22}, + [2275] = {.lex_state = 161, .external_lex_state = 22}, + [2276] = {.lex_state = 161, .external_lex_state = 22}, + [2277] = {.lex_state = 161, .external_lex_state = 22}, + [2278] = {.lex_state = 161, .external_lex_state = 22}, + [2279] = {.lex_state = 161, .external_lex_state = 22}, + [2280] = {.lex_state = 161, .external_lex_state = 22}, + [2281] = {.lex_state = 161, .external_lex_state = 22}, + [2282] = {.lex_state = 161, .external_lex_state = 22}, + [2283] = {.lex_state = 35, .external_lex_state = 20}, + [2284] = {.lex_state = 161, .external_lex_state = 22}, + [2285] = {.lex_state = 161, .external_lex_state = 22}, + [2286] = {.lex_state = 35, .external_lex_state = 20}, + [2287] = {.lex_state = 161, .external_lex_state = 22}, + [2288] = {.lex_state = 161, .external_lex_state = 22}, + [2289] = {.lex_state = 161, .external_lex_state = 22}, + [2290] = {.lex_state = 161, .external_lex_state = 22}, + [2291] = {.lex_state = 161, .external_lex_state = 22}, + [2292] = {.lex_state = 161, .external_lex_state = 22}, + [2293] = {.lex_state = 161, .external_lex_state = 22}, + [2294] = {.lex_state = 161, .external_lex_state = 22}, + [2295] = {.lex_state = 161, .external_lex_state = 22}, + [2296] = {.lex_state = 161, .external_lex_state = 22}, + [2297] = {.lex_state = 161, .external_lex_state = 22}, + [2298] = {.lex_state = 161, .external_lex_state = 22}, + [2299] = {.lex_state = 161, .external_lex_state = 22}, + [2300] = {.lex_state = 161, .external_lex_state = 22}, + [2301] = {.lex_state = 35, .external_lex_state = 20}, + [2302] = {.lex_state = 35, .external_lex_state = 20}, + [2303] = {.lex_state = 161, .external_lex_state = 22}, + [2304] = {.lex_state = 161, .external_lex_state = 22}, + [2305] = {.lex_state = 161, .external_lex_state = 22}, + [2306] = {.lex_state = 161, .external_lex_state = 22}, + [2307] = {.lex_state = 161, .external_lex_state = 22}, + [2308] = {.lex_state = 161, .external_lex_state = 22}, + [2309] = {.lex_state = 161, .external_lex_state = 22}, + [2310] = {.lex_state = 161, .external_lex_state = 22}, + [2311] = {.lex_state = 161, .external_lex_state = 22}, + [2312] = {.lex_state = 161, .external_lex_state = 22}, + [2313] = {.lex_state = 161, .external_lex_state = 22}, + [2314] = {.lex_state = 161, .external_lex_state = 22}, + [2315] = {.lex_state = 161, .external_lex_state = 22}, + [2316] = {.lex_state = 161, .external_lex_state = 22}, + [2317] = {.lex_state = 161, .external_lex_state = 22}, + [2318] = {.lex_state = 161, .external_lex_state = 22}, + [2319] = {.lex_state = 161, .external_lex_state = 22}, + [2320] = {.lex_state = 161, .external_lex_state = 22}, + [2321] = {.lex_state = 161, .external_lex_state = 22}, + [2322] = {.lex_state = 161, .external_lex_state = 22}, + [2323] = {.lex_state = 161, .external_lex_state = 22}, + [2324] = {.lex_state = 161, .external_lex_state = 22}, + [2325] = {.lex_state = 161, .external_lex_state = 22}, + [2326] = {.lex_state = 161, .external_lex_state = 22}, + [2327] = {.lex_state = 161, .external_lex_state = 22}, + [2328] = {.lex_state = 161, .external_lex_state = 22}, + [2329] = {.lex_state = 161, .external_lex_state = 22}, + [2330] = {.lex_state = 161, .external_lex_state = 22}, + [2331] = {.lex_state = 18, .external_lex_state = 11}, + [2332] = {.lex_state = 18, .external_lex_state = 11}, + [2333] = {.lex_state = 18, .external_lex_state = 11}, + [2334] = {.lex_state = 18, .external_lex_state = 11}, + [2335] = {.lex_state = 18, .external_lex_state = 11}, + [2336] = {.lex_state = 18, .external_lex_state = 11}, + [2337] = {.lex_state = 151, .external_lex_state = 18}, + [2338] = {.lex_state = 18, .external_lex_state = 11}, + [2339] = {.lex_state = 18, .external_lex_state = 11}, + [2340] = {.lex_state = 18, .external_lex_state = 11}, + [2341] = {.lex_state = 18, .external_lex_state = 11}, + [2342] = {.lex_state = 18, .external_lex_state = 11}, + [2343] = {.lex_state = 18, .external_lex_state = 11}, + [2344] = {.lex_state = 18, .external_lex_state = 11}, + [2345] = {.lex_state = 35, .external_lex_state = 19}, + [2346] = {.lex_state = 18, .external_lex_state = 11}, + [2347] = {.lex_state = 18, .external_lex_state = 11}, + [2348] = {.lex_state = 18, .external_lex_state = 11}, + [2349] = {.lex_state = 18, .external_lex_state = 11}, + [2350] = {.lex_state = 18, .external_lex_state = 11}, + [2351] = {.lex_state = 18, .external_lex_state = 11}, + [2352] = {.lex_state = 18, .external_lex_state = 11}, + [2353] = {.lex_state = 18, .external_lex_state = 11}, + [2354] = {.lex_state = 18, .external_lex_state = 11}, + [2355] = {.lex_state = 18, .external_lex_state = 11}, + [2356] = {.lex_state = 18, .external_lex_state = 11}, + [2357] = {.lex_state = 18, .external_lex_state = 11}, + [2358] = {.lex_state = 18, .external_lex_state = 11}, + [2359] = {.lex_state = 151, .external_lex_state = 18}, + [2360] = {.lex_state = 18, .external_lex_state = 11}, + [2361] = {.lex_state = 18, .external_lex_state = 11}, + [2362] = {.lex_state = 18, .external_lex_state = 11}, + [2363] = {.lex_state = 18, .external_lex_state = 11}, + [2364] = {.lex_state = 18, .external_lex_state = 11}, + [2365] = {.lex_state = 18, .external_lex_state = 11}, + [2366] = {.lex_state = 35, .external_lex_state = 19}, + [2367] = {.lex_state = 151, .external_lex_state = 18}, + [2368] = {.lex_state = 35, .external_lex_state = 19}, + [2369] = {.lex_state = 151, .external_lex_state = 18}, + [2370] = {.lex_state = 151, .external_lex_state = 18}, + [2371] = {.lex_state = 151, .external_lex_state = 18}, + [2372] = {.lex_state = 151, .external_lex_state = 18}, + [2373] = {.lex_state = 35, .external_lex_state = 19}, + [2374] = {.lex_state = 35, .external_lex_state = 19}, + [2375] = {.lex_state = 151, .external_lex_state = 18}, + [2376] = {.lex_state = 35, .external_lex_state = 19}, + [2377] = {.lex_state = 151, .external_lex_state = 18}, + [2378] = {.lex_state = 35, .external_lex_state = 19}, + [2379] = {.lex_state = 35, .external_lex_state = 19}, + [2380] = {.lex_state = 151, .external_lex_state = 18}, + [2381] = {.lex_state = 35, .external_lex_state = 19}, + [2382] = {.lex_state = 151, .external_lex_state = 18}, + [2383] = {.lex_state = 151, .external_lex_state = 18}, + [2384] = {.lex_state = 36, .external_lex_state = 19}, + [2385] = {.lex_state = 36, .external_lex_state = 19}, + [2386] = {.lex_state = 36, .external_lex_state = 19}, + [2387] = {.lex_state = 151, .external_lex_state = 18}, + [2388] = {.lex_state = 35, .external_lex_state = 19}, + [2389] = {.lex_state = 151, .external_lex_state = 18}, + [2390] = {.lex_state = 151, .external_lex_state = 18}, + [2391] = {.lex_state = 35, .external_lex_state = 19}, + [2392] = {.lex_state = 35, .external_lex_state = 19}, + [2393] = {.lex_state = 35, .external_lex_state = 19}, + [2394] = {.lex_state = 328, .external_lex_state = 23}, + [2395] = {.lex_state = 151, .external_lex_state = 18}, + [2396] = {.lex_state = 35, .external_lex_state = 19}, + [2397] = {.lex_state = 35, .external_lex_state = 19}, + [2398] = {.lex_state = 35, .external_lex_state = 19}, + [2399] = {.lex_state = 35, .external_lex_state = 19}, + [2400] = {.lex_state = 328, .external_lex_state = 23}, + [2401] = {.lex_state = 35, .external_lex_state = 19}, + [2402] = {.lex_state = 151, .external_lex_state = 18}, + [2403] = {.lex_state = 35, .external_lex_state = 19}, + [2404] = {.lex_state = 35, .external_lex_state = 19}, + [2405] = {.lex_state = 35, .external_lex_state = 19}, + [2406] = {.lex_state = 35, .external_lex_state = 19}, + [2407] = {.lex_state = 35, .external_lex_state = 19}, + [2408] = {.lex_state = 151, .external_lex_state = 18}, + [2409] = {.lex_state = 151, .external_lex_state = 18}, + [2410] = {.lex_state = 151, .external_lex_state = 18}, + [2411] = {.lex_state = 151, .external_lex_state = 18}, + [2412] = {.lex_state = 151, .external_lex_state = 18}, + [2413] = {.lex_state = 35, .external_lex_state = 19}, + [2414] = {.lex_state = 35, .external_lex_state = 19}, + [2415] = {.lex_state = 151, .external_lex_state = 18}, + [2416] = {.lex_state = 151, .external_lex_state = 18}, + [2417] = {.lex_state = 151, .external_lex_state = 18}, + [2418] = {.lex_state = 328, .external_lex_state = 23}, + [2419] = {.lex_state = 36, .external_lex_state = 20}, + [2420] = {.lex_state = 36, .external_lex_state = 20}, + [2421] = {.lex_state = 36, .external_lex_state = 20}, + [2422] = {.lex_state = 36, .external_lex_state = 20}, + [2423] = {.lex_state = 36, .external_lex_state = 20}, + [2424] = {.lex_state = 36, .external_lex_state = 20}, + [2425] = {.lex_state = 36, .external_lex_state = 20}, + [2426] = {.lex_state = 36, .external_lex_state = 20}, + [2427] = {.lex_state = 36, .external_lex_state = 20}, + [2428] = {.lex_state = 36, .external_lex_state = 20}, + [2429] = {.lex_state = 36, .external_lex_state = 20}, + [2430] = {.lex_state = 36, .external_lex_state = 20}, + [2431] = {.lex_state = 36, .external_lex_state = 20}, + [2432] = {.lex_state = 36, .external_lex_state = 20}, + [2433] = {.lex_state = 36, .external_lex_state = 20}, + [2434] = {.lex_state = 36, .external_lex_state = 20}, + [2435] = {.lex_state = 36, .external_lex_state = 20}, + [2436] = {.lex_state = 36, .external_lex_state = 20}, + [2437] = {.lex_state = 36, .external_lex_state = 20}, + [2438] = {.lex_state = 36, .external_lex_state = 20}, + [2439] = {.lex_state = 328, .external_lex_state = 24}, + [2440] = {.lex_state = 36, .external_lex_state = 20}, + [2441] = {.lex_state = 36, .external_lex_state = 20}, + [2442] = {.lex_state = 36, .external_lex_state = 20}, + [2443] = {.lex_state = 36, .external_lex_state = 20}, + [2444] = {.lex_state = 36, .external_lex_state = 20}, + [2445] = {.lex_state = 36, .external_lex_state = 20}, + [2446] = {.lex_state = 36, .external_lex_state = 20}, + [2447] = {.lex_state = 36, .external_lex_state = 20}, + [2448] = {.lex_state = 36, .external_lex_state = 20}, + [2449] = {.lex_state = 36, .external_lex_state = 20}, + [2450] = {.lex_state = 36, .external_lex_state = 20}, + [2451] = {.lex_state = 36, .external_lex_state = 20}, + [2452] = {.lex_state = 36, .external_lex_state = 20}, + [2453] = {.lex_state = 36, .external_lex_state = 20}, + [2454] = {.lex_state = 36, .external_lex_state = 20}, + [2455] = {.lex_state = 36, .external_lex_state = 20}, + [2456] = {.lex_state = 36, .external_lex_state = 20}, + [2457] = {.lex_state = 36, .external_lex_state = 20}, + [2458] = {.lex_state = 36, .external_lex_state = 20}, + [2459] = {.lex_state = 36, .external_lex_state = 20}, + [2460] = {.lex_state = 36, .external_lex_state = 20}, + [2461] = {.lex_state = 36, .external_lex_state = 20}, + [2462] = {.lex_state = 328, .external_lex_state = 24}, + [2463] = {.lex_state = 328, .external_lex_state = 24}, + [2464] = {.lex_state = 328, .external_lex_state = 24}, + [2465] = {.lex_state = 328, .external_lex_state = 24}, + [2466] = {.lex_state = 328, .external_lex_state = 24}, + [2467] = {.lex_state = 328, .external_lex_state = 24}, + [2468] = {.lex_state = 328, .external_lex_state = 24}, + [2469] = {.lex_state = 328, .external_lex_state = 24}, + [2470] = {.lex_state = 328, .external_lex_state = 24}, + [2471] = {.lex_state = 328, .external_lex_state = 24}, + [2472] = {.lex_state = 328, .external_lex_state = 24}, + [2473] = {.lex_state = 328, .external_lex_state = 24}, + [2474] = {.lex_state = 328, .external_lex_state = 24}, + [2475] = {.lex_state = 35, .external_lex_state = 20}, + [2476] = {.lex_state = 328, .external_lex_state = 24}, + [2477] = {.lex_state = 328, .external_lex_state = 24}, + [2478] = {.lex_state = 328, .external_lex_state = 24}, + [2479] = {.lex_state = 328, .external_lex_state = 24}, + [2480] = {.lex_state = 35, .external_lex_state = 20}, + [2481] = {.lex_state = 328, .external_lex_state = 24}, + [2482] = {.lex_state = 35, .external_lex_state = 20}, + [2483] = {.lex_state = 328, .external_lex_state = 24}, + [2484] = {.lex_state = 328, .external_lex_state = 24}, + [2485] = {.lex_state = 35, .external_lex_state = 20}, + [2486] = {.lex_state = 328, .external_lex_state = 24}, + [2487] = {.lex_state = 328, .external_lex_state = 24}, + [2488] = {.lex_state = 328, .external_lex_state = 24}, + [2489] = {.lex_state = 328, .external_lex_state = 24}, + [2490] = {.lex_state = 328, .external_lex_state = 24}, + [2491] = {.lex_state = 328, .external_lex_state = 24}, + [2492] = {.lex_state = 35, .external_lex_state = 20}, + [2493] = {.lex_state = 328, .external_lex_state = 24}, + [2494] = {.lex_state = 328, .external_lex_state = 24}, + [2495] = {.lex_state = 328, .external_lex_state = 24}, + [2496] = {.lex_state = 328, .external_lex_state = 24}, + [2497] = {.lex_state = 328, .external_lex_state = 24}, + [2498] = {.lex_state = 328, .external_lex_state = 24}, + [2499] = {.lex_state = 36, .external_lex_state = 20}, + [2500] = {.lex_state = 35, .external_lex_state = 20}, + [2501] = {.lex_state = 328, .external_lex_state = 24}, + [2502] = {.lex_state = 328, .external_lex_state = 24}, + [2503] = {.lex_state = 328, .external_lex_state = 24}, + [2504] = {.lex_state = 35, .external_lex_state = 20}, + [2505] = {.lex_state = 328, .external_lex_state = 24}, + [2506] = {.lex_state = 328, .external_lex_state = 24}, + [2507] = {.lex_state = 36, .external_lex_state = 20}, + [2508] = {.lex_state = 36, .external_lex_state = 20}, + [2509] = {.lex_state = 328, .external_lex_state = 24}, + [2510] = {.lex_state = 36, .external_lex_state = 20}, + [2511] = {.lex_state = 328, .external_lex_state = 24}, + [2512] = {.lex_state = 328, .external_lex_state = 24}, + [2513] = {.lex_state = 328, .external_lex_state = 24}, + [2514] = {.lex_state = 328, .external_lex_state = 24}, + [2515] = {.lex_state = 36, .external_lex_state = 20}, + [2516] = {.lex_state = 328, .external_lex_state = 24}, + [2517] = {.lex_state = 328, .external_lex_state = 24}, + [2518] = {.lex_state = 328, .external_lex_state = 24}, + [2519] = {.lex_state = 328, .external_lex_state = 24}, + [2520] = {.lex_state = 328, .external_lex_state = 24}, + [2521] = {.lex_state = 36, .external_lex_state = 20}, + [2522] = {.lex_state = 328, .external_lex_state = 24}, + [2523] = {.lex_state = 328, .external_lex_state = 24}, + [2524] = {.lex_state = 35, .external_lex_state = 20}, + [2525] = {.lex_state = 328, .external_lex_state = 24}, + [2526] = {.lex_state = 328, .external_lex_state = 24}, + [2527] = {.lex_state = 328, .external_lex_state = 24}, + [2528] = {.lex_state = 36, .external_lex_state = 20}, + [2529] = {.lex_state = 36, .external_lex_state = 20}, + [2530] = {.lex_state = 328, .external_lex_state = 24}, + [2531] = {.lex_state = 328, .external_lex_state = 24}, + [2532] = {.lex_state = 328, .external_lex_state = 24}, + [2533] = {.lex_state = 328, .external_lex_state = 24}, + [2534] = {.lex_state = 328, .external_lex_state = 24}, + [2535] = {.lex_state = 328, .external_lex_state = 24}, + [2536] = {.lex_state = 328, .external_lex_state = 24}, + [2537] = {.lex_state = 36, .external_lex_state = 20}, + [2538] = {.lex_state = 328, .external_lex_state = 24}, + [2539] = {.lex_state = 36, .external_lex_state = 20}, + [2540] = {.lex_state = 36, .external_lex_state = 20}, + [2541] = {.lex_state = 328, .external_lex_state = 24}, + [2542] = {.lex_state = 36, .external_lex_state = 20}, + [2543] = {.lex_state = 36, .external_lex_state = 20}, + [2544] = {.lex_state = 328, .external_lex_state = 24}, + [2545] = {.lex_state = 36, .external_lex_state = 20}, + [2546] = {.lex_state = 36, .external_lex_state = 20}, + [2547] = {.lex_state = 36, .external_lex_state = 20}, + [2548] = {.lex_state = 328, .external_lex_state = 24}, + [2549] = {.lex_state = 36, .external_lex_state = 20}, + [2550] = {.lex_state = 328, .external_lex_state = 24}, + [2551] = {.lex_state = 328, .external_lex_state = 24}, + [2552] = {.lex_state = 328, .external_lex_state = 24}, + [2553] = {.lex_state = 36, .external_lex_state = 20}, + [2554] = {.lex_state = 36, .external_lex_state = 20}, + [2555] = {.lex_state = 36, .external_lex_state = 20}, + [2556] = {.lex_state = 36, .external_lex_state = 20}, + [2557] = {.lex_state = 36, .external_lex_state = 20}, + [2558] = {.lex_state = 36, .external_lex_state = 20}, + [2559] = {.lex_state = 36, .external_lex_state = 20}, + [2560] = {.lex_state = 328, .external_lex_state = 24}, + [2561] = {.lex_state = 328, .external_lex_state = 24}, + [2562] = {.lex_state = 328, .external_lex_state = 24}, + [2563] = {.lex_state = 328, .external_lex_state = 24}, + [2564] = {.lex_state = 36, .external_lex_state = 20}, + [2565] = {.lex_state = 36, .external_lex_state = 20}, + [2566] = {.lex_state = 36, .external_lex_state = 20}, + [2567] = {.lex_state = 36, .external_lex_state = 20}, + [2568] = {.lex_state = 36, .external_lex_state = 20}, + [2569] = {.lex_state = 328, .external_lex_state = 24}, + [2570] = {.lex_state = 36, .external_lex_state = 20}, + [2571] = {.lex_state = 36, .external_lex_state = 20}, + [2572] = {.lex_state = 328, .external_lex_state = 24}, + [2573] = {.lex_state = 162, .external_lex_state = 4}, + [2574] = {.lex_state = 162, .external_lex_state = 4}, + [2575] = {.lex_state = 162, .external_lex_state = 4}, + [2576] = {.lex_state = 162, .external_lex_state = 4}, + [2577] = {.lex_state = 162, .external_lex_state = 4}, + [2578] = {.lex_state = 36, .external_lex_state = 19}, + [2579] = {.lex_state = 162, .external_lex_state = 4}, + [2580] = {.lex_state = 162, .external_lex_state = 4}, + [2581] = {.lex_state = 162, .external_lex_state = 4}, + [2582] = {.lex_state = 162, .external_lex_state = 4}, + [2583] = {.lex_state = 162, .external_lex_state = 4}, + [2584] = {.lex_state = 162, .external_lex_state = 4}, + [2585] = {.lex_state = 162, .external_lex_state = 4}, + [2586] = {.lex_state = 162, .external_lex_state = 4}, + [2587] = {.lex_state = 162, .external_lex_state = 4}, + [2588] = {.lex_state = 162, .external_lex_state = 4}, + [2589] = {.lex_state = 162, .external_lex_state = 4}, + [2590] = {.lex_state = 162, .external_lex_state = 4}, + [2591] = {.lex_state = 328, .external_lex_state = 23}, + [2592] = {.lex_state = 162, .external_lex_state = 4}, + [2593] = {.lex_state = 162, .external_lex_state = 4}, + [2594] = {.lex_state = 162, .external_lex_state = 4}, + [2595] = {.lex_state = 36, .external_lex_state = 19}, + [2596] = {.lex_state = 328, .external_lex_state = 23}, + [2597] = {.lex_state = 162, .external_lex_state = 4}, + [2598] = {.lex_state = 328, .external_lex_state = 23}, + [2599] = {.lex_state = 162, .external_lex_state = 4}, + [2600] = {.lex_state = 162, .external_lex_state = 4}, + [2601] = {.lex_state = 162, .external_lex_state = 4}, + [2602] = {.lex_state = 328, .external_lex_state = 23}, + [2603] = {.lex_state = 328, .external_lex_state = 23}, + [2604] = {.lex_state = 328, .external_lex_state = 23}, + [2605] = {.lex_state = 328, .external_lex_state = 23}, + [2606] = {.lex_state = 328, .external_lex_state = 23}, + [2607] = {.lex_state = 328, .external_lex_state = 23}, + [2608] = {.lex_state = 36, .external_lex_state = 19}, + [2609] = {.lex_state = 328, .external_lex_state = 23}, + [2610] = {.lex_state = 328, .external_lex_state = 23}, + [2611] = {.lex_state = 36, .external_lex_state = 19}, + [2612] = {.lex_state = 36, .external_lex_state = 19}, + [2613] = {.lex_state = 328, .external_lex_state = 23}, + [2614] = {.lex_state = 36, .external_lex_state = 19}, + [2615] = {.lex_state = 36, .external_lex_state = 19}, + [2616] = {.lex_state = 36, .external_lex_state = 19}, + [2617] = {.lex_state = 162, .external_lex_state = 4}, + [2618] = {.lex_state = 36, .external_lex_state = 19}, + [2619] = {.lex_state = 328, .external_lex_state = 23}, + [2620] = {.lex_state = 328, .external_lex_state = 23}, + [2621] = {.lex_state = 328, .external_lex_state = 23}, + [2622] = {.lex_state = 328, .external_lex_state = 23}, + [2623] = {.lex_state = 328, .external_lex_state = 23}, + [2624] = {.lex_state = 328, .external_lex_state = 23}, + [2625] = {.lex_state = 328, .external_lex_state = 23}, + [2626] = {.lex_state = 328, .external_lex_state = 23}, + [2627] = {.lex_state = 328, .external_lex_state = 23}, + [2628] = {.lex_state = 328, .external_lex_state = 23}, + [2629] = {.lex_state = 328, .external_lex_state = 23}, + [2630] = {.lex_state = 328, .external_lex_state = 23}, + [2631] = {.lex_state = 36, .external_lex_state = 19}, + [2632] = {.lex_state = 36, .external_lex_state = 19}, + [2633] = {.lex_state = 36, .external_lex_state = 19}, + [2634] = {.lex_state = 36, .external_lex_state = 19}, + [2635] = {.lex_state = 36, .external_lex_state = 19}, + [2636] = {.lex_state = 36, .external_lex_state = 19}, + [2637] = {.lex_state = 328, .external_lex_state = 23}, + [2638] = {.lex_state = 162, .external_lex_state = 4}, + [2639] = {.lex_state = 36, .external_lex_state = 19}, + [2640] = {.lex_state = 36, .external_lex_state = 19}, + [2641] = {.lex_state = 162, .external_lex_state = 4}, + [2642] = {.lex_state = 36, .external_lex_state = 19}, + [2643] = {.lex_state = 36, .external_lex_state = 19}, + [2644] = {.lex_state = 36, .external_lex_state = 19}, + [2645] = {.lex_state = 36, .external_lex_state = 19}, + [2646] = {.lex_state = 162, .external_lex_state = 4}, + [2647] = {.lex_state = 36, .external_lex_state = 19}, + [2648] = {.lex_state = 36, .external_lex_state = 19}, + [2649] = {.lex_state = 162, .external_lex_state = 4}, + [2650] = {.lex_state = 162, .external_lex_state = 4}, + [2651] = {.lex_state = 162, .external_lex_state = 4}, + [2652] = {.lex_state = 162, .external_lex_state = 4}, + [2653] = {.lex_state = 162, .external_lex_state = 4}, + [2654] = {.lex_state = 36, .external_lex_state = 19}, + [2655] = {.lex_state = 162, .external_lex_state = 4}, + [2656] = {.lex_state = 162, .external_lex_state = 4}, + [2657] = {.lex_state = 162, .external_lex_state = 4}, + [2658] = {.lex_state = 162, .external_lex_state = 4}, + [2659] = {.lex_state = 162, .external_lex_state = 4}, + [2660] = {.lex_state = 162, .external_lex_state = 4}, + [2661] = {.lex_state = 162, .external_lex_state = 4}, + [2662] = {.lex_state = 162, .external_lex_state = 4}, + [2663] = {.lex_state = 36, .external_lex_state = 19}, + [2664] = {.lex_state = 328, .external_lex_state = 24}, + [2665] = {.lex_state = 328, .external_lex_state = 24}, + [2666] = {.lex_state = 36, .external_lex_state = 20}, + [2667] = {.lex_state = 328, .external_lex_state = 24}, + [2668] = {.lex_state = 328, .external_lex_state = 24}, + [2669] = {.lex_state = 34, .external_lex_state = 18}, + [2670] = {.lex_state = 36, .external_lex_state = 20}, + [2671] = {.lex_state = 328, .external_lex_state = 24}, + [2672] = {.lex_state = 34, .external_lex_state = 18}, + [2673] = {.lex_state = 36, .external_lex_state = 20}, + [2674] = {.lex_state = 328, .external_lex_state = 24}, + [2675] = {.lex_state = 36, .external_lex_state = 20}, + [2676] = {.lex_state = 328, .external_lex_state = 24}, + [2677] = {.lex_state = 328, .external_lex_state = 24}, + [2678] = {.lex_state = 36, .external_lex_state = 20}, + [2679] = {.lex_state = 36, .external_lex_state = 20}, + [2680] = {.lex_state = 36, .external_lex_state = 20}, + [2681] = {.lex_state = 36, .external_lex_state = 20}, + [2682] = {.lex_state = 34, .external_lex_state = 18}, + [2683] = {.lex_state = 34, .external_lex_state = 18}, + [2684] = {.lex_state = 34, .external_lex_state = 18}, + [2685] = {.lex_state = 34, .external_lex_state = 18}, + [2686] = {.lex_state = 34, .external_lex_state = 18}, + [2687] = {.lex_state = 34, .external_lex_state = 18}, + [2688] = {.lex_state = 34, .external_lex_state = 18}, + [2689] = {.lex_state = 34, .external_lex_state = 18}, + [2690] = {.lex_state = 34, .external_lex_state = 18}, + [2691] = {.lex_state = 34, .external_lex_state = 18}, + [2692] = {.lex_state = 34, .external_lex_state = 18}, + [2693] = {.lex_state = 34, .external_lex_state = 18}, + [2694] = {.lex_state = 34, .external_lex_state = 18}, + [2695] = {.lex_state = 34, .external_lex_state = 18}, + [2696] = {.lex_state = 34, .external_lex_state = 18}, + [2697] = {.lex_state = 34, .external_lex_state = 18}, + [2698] = {.lex_state = 34, .external_lex_state = 18}, + [2699] = {.lex_state = 34, .external_lex_state = 18}, + [2700] = {.lex_state = 34, .external_lex_state = 18}, + [2701] = {.lex_state = 34, .external_lex_state = 18}, + [2702] = {.lex_state = 34, .external_lex_state = 18}, + [2703] = {.lex_state = 34, .external_lex_state = 18}, + [2704] = {.lex_state = 34, .external_lex_state = 18}, + [2705] = {.lex_state = 20, .external_lex_state = 11}, + [2706] = {.lex_state = 20, .external_lex_state = 11}, + [2707] = {.lex_state = 20, .external_lex_state = 11}, + [2708] = {.lex_state = 20, .external_lex_state = 11}, + [2709] = {.lex_state = 20, .external_lex_state = 11}, + [2710] = {.lex_state = 20, .external_lex_state = 11}, + [2711] = {.lex_state = 20, .external_lex_state = 11}, + [2712] = {.lex_state = 20, .external_lex_state = 11}, + [2713] = {.lex_state = 20, .external_lex_state = 11}, + [2714] = {.lex_state = 329, .external_lex_state = 25}, + [2715] = {.lex_state = 329, .external_lex_state = 25}, + [2716] = {.lex_state = 163, .external_lex_state = 26}, + [2717] = {.lex_state = 163, .external_lex_state = 26}, + [2718] = {.lex_state = 329, .external_lex_state = 25}, + [2719] = {.lex_state = 163, .external_lex_state = 26}, + [2720] = {.lex_state = 163, .external_lex_state = 26}, + [2721] = {.lex_state = 163, .external_lex_state = 26}, + [2722] = {.lex_state = 163, .external_lex_state = 26}, + [2723] = {.lex_state = 163, .external_lex_state = 26}, + [2724] = {.lex_state = 163, .external_lex_state = 26}, + [2725] = {.lex_state = 163, .external_lex_state = 26}, + [2726] = {.lex_state = 163, .external_lex_state = 26}, + [2727] = {.lex_state = 163, .external_lex_state = 26}, + [2728] = {.lex_state = 163, .external_lex_state = 26}, + [2729] = {.lex_state = 163, .external_lex_state = 26}, + [2730] = {.lex_state = 163, .external_lex_state = 26}, + [2731] = {.lex_state = 163, .external_lex_state = 26}, + [2732] = {.lex_state = 163, .external_lex_state = 26}, + [2733] = {.lex_state = 163, .external_lex_state = 26}, + [2734] = {.lex_state = 163, .external_lex_state = 26}, + [2735] = {.lex_state = 163, .external_lex_state = 26}, + [2736] = {.lex_state = 163, .external_lex_state = 26}, + [2737] = {.lex_state = 163, .external_lex_state = 26}, + [2738] = {.lex_state = 163, .external_lex_state = 26}, + [2739] = {.lex_state = 163, .external_lex_state = 26}, + [2740] = {.lex_state = 163, .external_lex_state = 26}, + [2741] = {.lex_state = 163, .external_lex_state = 26}, + [2742] = {.lex_state = 163, .external_lex_state = 26}, + [2743] = {.lex_state = 163, .external_lex_state = 26}, + [2744] = {.lex_state = 163, .external_lex_state = 26}, + [2745] = {.lex_state = 163, .external_lex_state = 26}, + [2746] = {.lex_state = 163, .external_lex_state = 26}, + [2747] = {.lex_state = 163, .external_lex_state = 26}, + [2748] = {.lex_state = 163, .external_lex_state = 26}, + [2749] = {.lex_state = 163, .external_lex_state = 26}, + [2750] = {.lex_state = 163, .external_lex_state = 26}, + [2751] = {.lex_state = 163, .external_lex_state = 26}, + [2752] = {.lex_state = 163, .external_lex_state = 26}, + [2753] = {.lex_state = 163, .external_lex_state = 26}, + [2754] = {.lex_state = 163, .external_lex_state = 26}, + [2755] = {.lex_state = 163, .external_lex_state = 26}, + [2756] = {.lex_state = 163, .external_lex_state = 26}, + [2757] = {.lex_state = 163, .external_lex_state = 26}, + [2758] = {.lex_state = 163, .external_lex_state = 26}, + [2759] = {.lex_state = 163, .external_lex_state = 26}, + [2760] = {.lex_state = 163, .external_lex_state = 26}, + [2761] = {.lex_state = 163, .external_lex_state = 26}, + [2762] = {.lex_state = 163, .external_lex_state = 26}, + [2763] = {.lex_state = 163, .external_lex_state = 26}, + [2764] = {.lex_state = 163, .external_lex_state = 26}, + [2765] = {.lex_state = 163, .external_lex_state = 26}, + [2766] = {.lex_state = 163, .external_lex_state = 26}, + [2767] = {.lex_state = 329, .external_lex_state = 25}, + [2768] = {.lex_state = 329, .external_lex_state = 25}, + [2769] = {.lex_state = 163, .external_lex_state = 26}, + [2770] = {.lex_state = 329, .external_lex_state = 25}, + [2771] = {.lex_state = 329, .external_lex_state = 25}, + [2772] = {.lex_state = 329, .external_lex_state = 25}, + [2773] = {.lex_state = 163, .external_lex_state = 26}, + [2774] = {.lex_state = 163, .external_lex_state = 26}, + [2775] = {.lex_state = 163, .external_lex_state = 26}, + [2776] = {.lex_state = 163, .external_lex_state = 26}, + [2777] = {.lex_state = 163, .external_lex_state = 26}, + [2778] = {.lex_state = 163, .external_lex_state = 26}, + [2779] = {.lex_state = 163, .external_lex_state = 26}, + [2780] = {.lex_state = 163, .external_lex_state = 26}, + [2781] = {.lex_state = 163, .external_lex_state = 26}, + [2782] = {.lex_state = 163, .external_lex_state = 26}, + [2783] = {.lex_state = 163, .external_lex_state = 26}, + [2784] = {.lex_state = 163, .external_lex_state = 26}, + [2785] = {.lex_state = 329, .external_lex_state = 25}, + [2786] = {.lex_state = 163, .external_lex_state = 26}, + [2787] = {.lex_state = 163, .external_lex_state = 26}, + [2788] = {.lex_state = 163, .external_lex_state = 26}, + [2789] = {.lex_state = 163, .external_lex_state = 26}, + [2790] = {.lex_state = 163, .external_lex_state = 26}, + [2791] = {.lex_state = 163, .external_lex_state = 26}, + [2792] = {.lex_state = 163, .external_lex_state = 26}, + [2793] = {.lex_state = 163, .external_lex_state = 26}, + [2794] = {.lex_state = 163, .external_lex_state = 26}, + [2795] = {.lex_state = 329, .external_lex_state = 25}, + [2796] = {.lex_state = 163, .external_lex_state = 26}, + [2797] = {.lex_state = 163, .external_lex_state = 26}, + [2798] = {.lex_state = 163, .external_lex_state = 26}, + [2799] = {.lex_state = 163, .external_lex_state = 26}, + [2800] = {.lex_state = 163, .external_lex_state = 26}, + [2801] = {.lex_state = 163, .external_lex_state = 26}, + [2802] = {.lex_state = 163, .external_lex_state = 26}, + [2803] = {.lex_state = 163, .external_lex_state = 26}, + [2804] = {.lex_state = 163, .external_lex_state = 26}, + [2805] = {.lex_state = 163, .external_lex_state = 26}, + [2806] = {.lex_state = 163, .external_lex_state = 26}, + [2807] = {.lex_state = 329, .external_lex_state = 25}, + [2808] = {.lex_state = 163, .external_lex_state = 26}, + [2809] = {.lex_state = 163, .external_lex_state = 26}, + [2810] = {.lex_state = 163, .external_lex_state = 26}, + [2811] = {.lex_state = 329, .external_lex_state = 25}, + [2812] = {.lex_state = 163, .external_lex_state = 26}, + [2813] = {.lex_state = 329, .external_lex_state = 25}, + [2814] = {.lex_state = 163, .external_lex_state = 26}, + [2815] = {.lex_state = 163, .external_lex_state = 26}, + [2816] = {.lex_state = 329, .external_lex_state = 25}, + [2817] = {.lex_state = 163, .external_lex_state = 26}, + [2818] = {.lex_state = 163, .external_lex_state = 26}, + [2819] = {.lex_state = 163, .external_lex_state = 26}, + [2820] = {.lex_state = 163, .external_lex_state = 26}, + [2821] = {.lex_state = 163, .external_lex_state = 26}, + [2822] = {.lex_state = 163, .external_lex_state = 26}, + [2823] = {.lex_state = 329, .external_lex_state = 25}, + [2824] = {.lex_state = 163, .external_lex_state = 26}, + [2825] = {.lex_state = 163, .external_lex_state = 26}, + [2826] = {.lex_state = 329, .external_lex_state = 25}, + [2827] = {.lex_state = 163, .external_lex_state = 26}, + [2828] = {.lex_state = 163, .external_lex_state = 26}, + [2829] = {.lex_state = 163, .external_lex_state = 26}, + [2830] = {.lex_state = 329, .external_lex_state = 25}, + [2831] = {.lex_state = 163, .external_lex_state = 26}, + [2832] = {.lex_state = 163, .external_lex_state = 26}, + [2833] = {.lex_state = 163, .external_lex_state = 26}, + [2834] = {.lex_state = 163, .external_lex_state = 26}, + [2835] = {.lex_state = 163, .external_lex_state = 26}, + [2836] = {.lex_state = 163, .external_lex_state = 26}, + [2837] = {.lex_state = 163, .external_lex_state = 26}, + [2838] = {.lex_state = 163, .external_lex_state = 26}, + [2839] = {.lex_state = 163, .external_lex_state = 26}, + [2840] = {.lex_state = 163, .external_lex_state = 26}, + [2841] = {.lex_state = 163, .external_lex_state = 26}, + [2842] = {.lex_state = 163, .external_lex_state = 26}, + [2843] = {.lex_state = 163, .external_lex_state = 26}, + [2844] = {.lex_state = 163, .external_lex_state = 26}, + [2845] = {.lex_state = 163, .external_lex_state = 26}, + [2846] = {.lex_state = 163, .external_lex_state = 26}, + [2847] = {.lex_state = 163, .external_lex_state = 26}, + [2848] = {.lex_state = 329, .external_lex_state = 25}, + [2849] = {.lex_state = 163, .external_lex_state = 26}, + [2850] = {.lex_state = 163, .external_lex_state = 26}, + [2851] = {.lex_state = 163, .external_lex_state = 26}, + [2852] = {.lex_state = 329, .external_lex_state = 25}, + [2853] = {.lex_state = 163, .external_lex_state = 26}, + [2854] = {.lex_state = 163, .external_lex_state = 26}, + [2855] = {.lex_state = 329, .external_lex_state = 25}, + [2856] = {.lex_state = 163, .external_lex_state = 26}, + [2857] = {.lex_state = 163, .external_lex_state = 26}, + [2858] = {.lex_state = 329, .external_lex_state = 25}, + [2859] = {.lex_state = 163, .external_lex_state = 26}, + [2860] = {.lex_state = 163, .external_lex_state = 26}, + [2861] = {.lex_state = 163, .external_lex_state = 26}, + [2862] = {.lex_state = 329, .external_lex_state = 25}, + [2863] = {.lex_state = 329, .external_lex_state = 25}, + [2864] = {.lex_state = 329, .external_lex_state = 25}, + [2865] = {.lex_state = 163, .external_lex_state = 26}, + [2866] = {.lex_state = 163, .external_lex_state = 26}, + [2867] = {.lex_state = 163, .external_lex_state = 26}, + [2868] = {.lex_state = 163, .external_lex_state = 26}, + [2869] = {.lex_state = 163, .external_lex_state = 26}, + [2870] = {.lex_state = 163, .external_lex_state = 26}, + [2871] = {.lex_state = 163, .external_lex_state = 26}, + [2872] = {.lex_state = 163, .external_lex_state = 26}, + [2873] = {.lex_state = 163, .external_lex_state = 26}, + [2874] = {.lex_state = 163, .external_lex_state = 26}, + [2875] = {.lex_state = 163, .external_lex_state = 26}, + [2876] = {.lex_state = 163, .external_lex_state = 26}, + [2877] = {.lex_state = 163, .external_lex_state = 26}, + [2878] = {.lex_state = 163, .external_lex_state = 26}, + [2879] = {.lex_state = 163, .external_lex_state = 26}, + [2880] = {.lex_state = 329, .external_lex_state = 25}, + [2881] = {.lex_state = 163, .external_lex_state = 26}, + [2882] = {.lex_state = 163, .external_lex_state = 26}, + [2883] = {.lex_state = 163, .external_lex_state = 26}, + [2884] = {.lex_state = 161, .external_lex_state = 22}, + [2885] = {.lex_state = 161, .external_lex_state = 22}, + [2886] = {.lex_state = 161, .external_lex_state = 22}, + [2887] = {.lex_state = 161, .external_lex_state = 22}, + [2888] = {.lex_state = 329, .external_lex_state = 27}, + [2889] = {.lex_state = 161, .external_lex_state = 22}, + [2890] = {.lex_state = 161, .external_lex_state = 22}, + [2891] = {.lex_state = 161, .external_lex_state = 22}, + [2892] = {.lex_state = 161, .external_lex_state = 22}, + [2893] = {.lex_state = 161, .external_lex_state = 22}, + [2894] = {.lex_state = 161, .external_lex_state = 22}, + [2895] = {.lex_state = 329, .external_lex_state = 27}, + [2896] = {.lex_state = 161, .external_lex_state = 22}, + [2897] = {.lex_state = 161, .external_lex_state = 22}, + [2898] = {.lex_state = 161, .external_lex_state = 22}, + [2899] = {.lex_state = 329, .external_lex_state = 27}, + [2900] = {.lex_state = 329, .external_lex_state = 27}, + [2901] = {.lex_state = 161, .external_lex_state = 22}, + [2902] = {.lex_state = 161, .external_lex_state = 22}, + [2903] = {.lex_state = 161, .external_lex_state = 22}, + [2904] = {.lex_state = 161, .external_lex_state = 22}, + [2905] = {.lex_state = 161, .external_lex_state = 22}, + [2906] = {.lex_state = 161, .external_lex_state = 22}, + [2907] = {.lex_state = 161, .external_lex_state = 22}, + [2908] = {.lex_state = 161, .external_lex_state = 22}, + [2909] = {.lex_state = 329, .external_lex_state = 28}, + [2910] = {.lex_state = 329, .external_lex_state = 28}, + [2911] = {.lex_state = 329, .external_lex_state = 28}, + [2912] = {.lex_state = 329, .external_lex_state = 28}, + [2913] = {.lex_state = 329, .external_lex_state = 28}, + [2914] = {.lex_state = 329, .external_lex_state = 28}, + [2915] = {.lex_state = 329, .external_lex_state = 28}, + [2916] = {.lex_state = 329, .external_lex_state = 28}, + [2917] = {.lex_state = 329, .external_lex_state = 28}, + [2918] = {.lex_state = 329, .external_lex_state = 28}, + [2919] = {.lex_state = 329, .external_lex_state = 28}, + [2920] = {.lex_state = 329, .external_lex_state = 28}, + [2921] = {.lex_state = 329, .external_lex_state = 28}, + [2922] = {.lex_state = 329, .external_lex_state = 28}, + [2923] = {.lex_state = 329, .external_lex_state = 28}, + [2924] = {.lex_state = 329, .external_lex_state = 28}, + [2925] = {.lex_state = 329, .external_lex_state = 28}, + [2926] = {.lex_state = 329, .external_lex_state = 28}, + [2927] = {.lex_state = 329, .external_lex_state = 28}, + [2928] = {.lex_state = 329, .external_lex_state = 28}, + [2929] = {.lex_state = 329, .external_lex_state = 28}, + [2930] = {.lex_state = 329, .external_lex_state = 28}, + [2931] = {.lex_state = 329, .external_lex_state = 28}, + [2932] = {.lex_state = 329, .external_lex_state = 28}, + [2933] = {.lex_state = 329, .external_lex_state = 28}, + [2934] = {.lex_state = 329, .external_lex_state = 28}, + [2935] = {.lex_state = 329, .external_lex_state = 28}, + [2936] = {.lex_state = 38, .external_lex_state = 25}, + [2937] = {.lex_state = 38, .external_lex_state = 27}, + [2938] = {.lex_state = 38, .external_lex_state = 25}, + [2939] = {.lex_state = 38, .external_lex_state = 27}, + [2940] = {.lex_state = 162, .external_lex_state = 4}, + [2941] = {.lex_state = 27, .external_lex_state = 27}, + [2942] = {.lex_state = 162, .external_lex_state = 4}, + [2943] = {.lex_state = 38, .external_lex_state = 25}, + [2944] = {.lex_state = 38, .external_lex_state = 25}, + [2945] = {.lex_state = 162, .external_lex_state = 4}, + [2946] = {.lex_state = 38, .external_lex_state = 25}, + [2947] = {.lex_state = 38, .external_lex_state = 25}, + [2948] = {.lex_state = 38, .external_lex_state = 28}, + [2949] = {.lex_state = 38, .external_lex_state = 25}, + [2950] = {.lex_state = 162, .external_lex_state = 4}, + [2951] = {.lex_state = 38, .external_lex_state = 25}, + [2952] = {.lex_state = 38, .external_lex_state = 25}, + [2953] = {.lex_state = 38, .external_lex_state = 25}, + [2954] = {.lex_state = 38, .external_lex_state = 25}, + [2955] = {.lex_state = 38, .external_lex_state = 25}, + [2956] = {.lex_state = 38, .external_lex_state = 25}, + [2957] = {.lex_state = 162, .external_lex_state = 4}, + [2958] = {.lex_state = 38, .external_lex_state = 25}, + [2959] = {.lex_state = 38, .external_lex_state = 25}, + [2960] = {.lex_state = 322, .external_lex_state = 27}, + [2961] = {.lex_state = 38, .external_lex_state = 25}, + [2962] = {.lex_state = 38, .external_lex_state = 25}, + [2963] = {.lex_state = 38, .external_lex_state = 28}, + [2964] = {.lex_state = 162, .external_lex_state = 4}, + [2965] = {.lex_state = 162, .external_lex_state = 4}, + [2966] = {.lex_state = 38, .external_lex_state = 25}, + [2967] = {.lex_state = 329, .external_lex_state = 27}, + [2968] = {.lex_state = 162, .external_lex_state = 4}, + [2969] = {.lex_state = 38, .external_lex_state = 25}, + [2970] = {.lex_state = 329, .external_lex_state = 27}, + [2971] = {.lex_state = 38, .external_lex_state = 25}, + [2972] = {.lex_state = 162, .external_lex_state = 4}, + [2973] = {.lex_state = 38, .external_lex_state = 25}, + [2974] = {.lex_state = 38, .external_lex_state = 28}, + [2975] = {.lex_state = 162, .external_lex_state = 4}, + [2976] = {.lex_state = 162, .external_lex_state = 4}, + [2977] = {.lex_state = 162, .external_lex_state = 4}, + [2978] = {.lex_state = 38, .external_lex_state = 25}, + [2979] = {.lex_state = 322, .external_lex_state = 27}, + [2980] = {.lex_state = 38, .external_lex_state = 25}, + [2981] = {.lex_state = 162, .external_lex_state = 4}, + [2982] = {.lex_state = 162, .external_lex_state = 4}, + [2983] = {.lex_state = 38, .external_lex_state = 25}, + [2984] = {.lex_state = 162, .external_lex_state = 4}, + [2985] = {.lex_state = 38, .external_lex_state = 25}, + [2986] = {.lex_state = 162, .external_lex_state = 4}, + [2987] = {.lex_state = 162, .external_lex_state = 4}, + [2988] = {.lex_state = 162, .external_lex_state = 4}, + [2989] = {.lex_state = 27, .external_lex_state = 27}, + [2990] = {.lex_state = 322, .external_lex_state = 28}, + [2991] = {.lex_state = 322, .external_lex_state = 28}, + [2992] = {.lex_state = 329, .external_lex_state = 28}, + [2993] = {.lex_state = 38, .external_lex_state = 27}, + [2994] = {.lex_state = 27, .external_lex_state = 28}, + [2995] = {.lex_state = 38, .external_lex_state = 27}, + [2996] = {.lex_state = 27, .external_lex_state = 28}, + [2997] = {.lex_state = 329, .external_lex_state = 28}, + [2998] = {.lex_state = 38, .external_lex_state = 27}, + [2999] = {.lex_state = 27, .external_lex_state = 28}, + [3000] = {.lex_state = 322, .external_lex_state = 28}, + [3001] = {.lex_state = 329, .external_lex_state = 28}, + [3002] = {.lex_state = 38, .external_lex_state = 27}, + [3003] = {.lex_state = 38, .external_lex_state = 28}, + [3004] = {.lex_state = 38, .external_lex_state = 28}, + [3005] = {.lex_state = 38, .external_lex_state = 28}, + [3006] = {.lex_state = 322, .external_lex_state = 29}, + [3007] = {.lex_state = 38, .external_lex_state = 28}, + [3008] = {.lex_state = 329, .external_lex_state = 27}, + [3009] = {.lex_state = 329, .external_lex_state = 27}, + [3010] = {.lex_state = 329, .external_lex_state = 27}, + [3011] = {.lex_state = 38, .external_lex_state = 28}, + [3012] = {.lex_state = 38, .external_lex_state = 28}, + [3013] = {.lex_state = 38, .external_lex_state = 28}, + [3014] = {.lex_state = 38, .external_lex_state = 28}, + [3015] = {.lex_state = 38, .external_lex_state = 28}, + [3016] = {.lex_state = 329, .external_lex_state = 27}, + [3017] = {.lex_state = 322, .external_lex_state = 29}, + [3018] = {.lex_state = 38, .external_lex_state = 28}, + [3019] = {.lex_state = 38, .external_lex_state = 28}, + [3020] = {.lex_state = 329, .external_lex_state = 27}, + [3021] = {.lex_state = 38, .external_lex_state = 28}, + [3022] = {.lex_state = 38, .external_lex_state = 28}, + [3023] = {.lex_state = 38, .external_lex_state = 28}, + [3024] = {.lex_state = 38, .external_lex_state = 28}, + [3025] = {.lex_state = 38, .external_lex_state = 28}, + [3026] = {.lex_state = 322, .external_lex_state = 30}, + [3027] = {.lex_state = 38, .external_lex_state = 28}, + [3028] = {.lex_state = 38, .external_lex_state = 28}, + [3029] = {.lex_state = 39, .external_lex_state = 27}, + [3030] = {.lex_state = 38, .external_lex_state = 28}, + [3031] = {.lex_state = 38, .external_lex_state = 28}, + [3032] = {.lex_state = 38, .external_lex_state = 28}, + [3033] = {.lex_state = 38, .external_lex_state = 28}, + [3034] = {.lex_state = 38, .external_lex_state = 28}, + [3035] = {.lex_state = 38, .external_lex_state = 28}, + [3036] = {.lex_state = 38, .external_lex_state = 28}, + [3037] = {.lex_state = 329, .external_lex_state = 27}, + [3038] = {.lex_state = 322, .external_lex_state = 30}, + [3039] = {.lex_state = 39, .external_lex_state = 25}, + [3040] = {.lex_state = 39, .external_lex_state = 27}, + [3041] = {.lex_state = 38, .external_lex_state = 28}, + [3042] = {.lex_state = 38, .external_lex_state = 28}, + [3043] = {.lex_state = 38, .external_lex_state = 28}, + [3044] = {.lex_state = 38, .external_lex_state = 28}, + [3045] = {.lex_state = 38, .external_lex_state = 28}, + [3046] = {.lex_state = 38, .external_lex_state = 28}, + [3047] = {.lex_state = 38, .external_lex_state = 28}, + [3048] = {.lex_state = 38, .external_lex_state = 28}, + [3049] = {.lex_state = 38, .external_lex_state = 28}, + [3050] = {.lex_state = 39, .external_lex_state = 25}, + [3051] = {.lex_state = 38, .external_lex_state = 28}, + [3052] = {.lex_state = 39, .external_lex_state = 25}, + [3053] = {.lex_state = 27, .external_lex_state = 28}, + [3054] = {.lex_state = 163, .external_lex_state = 26}, + [3055] = {.lex_state = 39, .external_lex_state = 25}, + [3056] = {.lex_state = 163, .external_lex_state = 26}, + [3057] = {.lex_state = 163, .external_lex_state = 26}, + [3058] = {.lex_state = 163, .external_lex_state = 26}, + [3059] = {.lex_state = 322, .external_lex_state = 28}, + [3060] = {.lex_state = 322, .external_lex_state = 29}, + [3061] = {.lex_state = 322, .external_lex_state = 29}, + [3062] = {.lex_state = 39, .external_lex_state = 25}, + [3063] = {.lex_state = 322, .external_lex_state = 29}, + [3064] = {.lex_state = 322, .external_lex_state = 31}, + [3065] = {.lex_state = 27, .external_lex_state = 28}, + [3066] = {.lex_state = 163, .external_lex_state = 26}, + [3067] = {.lex_state = 163, .external_lex_state = 26}, + [3068] = {.lex_state = 329, .external_lex_state = 28}, + [3069] = {.lex_state = 329, .external_lex_state = 28}, + [3070] = {.lex_state = 163, .external_lex_state = 26}, + [3071] = {.lex_state = 322, .external_lex_state = 29}, + [3072] = {.lex_state = 322, .external_lex_state = 29}, + [3073] = {.lex_state = 39, .external_lex_state = 25}, + [3074] = {.lex_state = 163, .external_lex_state = 26}, + [3075] = {.lex_state = 329, .external_lex_state = 28}, + [3076] = {.lex_state = 322, .external_lex_state = 29}, + [3077] = {.lex_state = 27, .external_lex_state = 28}, + [3078] = {.lex_state = 329, .external_lex_state = 28}, + [3079] = {.lex_state = 322, .external_lex_state = 29}, + [3080] = {.lex_state = 322, .external_lex_state = 29}, + [3081] = {.lex_state = 322, .external_lex_state = 29}, + [3082] = {.lex_state = 322, .external_lex_state = 29}, + [3083] = {.lex_state = 322, .external_lex_state = 28}, + [3084] = {.lex_state = 322, .external_lex_state = 29}, + [3085] = {.lex_state = 322, .external_lex_state = 29}, + [3086] = {.lex_state = 322, .external_lex_state = 29}, + [3087] = {.lex_state = 322, .external_lex_state = 29}, + [3088] = {.lex_state = 329, .external_lex_state = 28}, + [3089] = {.lex_state = 27, .external_lex_state = 28}, + [3090] = {.lex_state = 322, .external_lex_state = 28}, + [3091] = {.lex_state = 322, .external_lex_state = 29}, + [3092] = {.lex_state = 322, .external_lex_state = 29}, + [3093] = {.lex_state = 322, .external_lex_state = 29}, + [3094] = {.lex_state = 27, .external_lex_state = 28}, + [3095] = {.lex_state = 322, .external_lex_state = 29}, + [3096] = {.lex_state = 39, .external_lex_state = 28}, + [3097] = {.lex_state = 329, .external_lex_state = 28}, + [3098] = {.lex_state = 37}, + [3099] = {.lex_state = 322, .external_lex_state = 28}, + [3100] = {.lex_state = 322, .external_lex_state = 31}, + [3101] = {.lex_state = 329, .external_lex_state = 28}, + [3102] = {.lex_state = 37}, + [3103] = {.lex_state = 322, .external_lex_state = 28}, + [3104] = {.lex_state = 322, .external_lex_state = 28}, + [3105] = {.lex_state = 37}, + [3106] = {.lex_state = 39, .external_lex_state = 25}, + [3107] = {.lex_state = 329, .external_lex_state = 28}, + [3108] = {.lex_state = 37}, + [3109] = {.lex_state = 163, .external_lex_state = 26}, + [3110] = {.lex_state = 39, .external_lex_state = 25}, + [3111] = {.lex_state = 322, .external_lex_state = 28}, + [3112] = {.lex_state = 329, .external_lex_state = 28}, + [3113] = {.lex_state = 329, .external_lex_state = 28}, + [3114] = {.lex_state = 37}, + [3115] = {.lex_state = 329, .external_lex_state = 28}, + [3116] = {.lex_state = 39, .external_lex_state = 25}, + [3117] = {.lex_state = 329, .external_lex_state = 28}, + [3118] = {.lex_state = 329, .external_lex_state = 28}, [3119] = {.lex_state = 37}, - [3120] = {.lex_state = 37}, - [3121] = {.lex_state = 37}, - [3122] = {.lex_state = 37}, + [3120] = {.lex_state = 39, .external_lex_state = 25}, + [3121] = {.lex_state = 27, .external_lex_state = 28}, + [3122] = {.lex_state = 322, .external_lex_state = 29}, [3123] = {.lex_state = 37}, [3124] = {.lex_state = 37}, - [3125] = {.lex_state = 37}, - [3126] = {.lex_state = 37}, + [3125] = {.lex_state = 329, .external_lex_state = 28}, + [3126] = {.lex_state = 39, .external_lex_state = 25}, [3127] = {.lex_state = 37}, - [3128] = {.lex_state = 37}, - [3129] = {.lex_state = 37}, - [3130] = {.lex_state = 37}, - [3131] = {.lex_state = 37}, + [3128] = {.lex_state = 27, .external_lex_state = 28}, + [3129] = {.lex_state = 322, .external_lex_state = 29}, + [3130] = {.lex_state = 39, .external_lex_state = 25}, + [3131] = {.lex_state = 39, .external_lex_state = 25}, [3132] = {.lex_state = 37}, - [3133] = {.lex_state = 37}, - [3134] = {.lex_state = 160, .external_lex_state = 32}, - [3135] = {.lex_state = 37}, - [3136] = {.lex_state = 36}, - [3137] = {.lex_state = 319, .external_lex_state = 35}, - [3138] = {.lex_state = 37}, - [3139] = {.lex_state = 38, .external_lex_state = 34}, - [3140] = {.lex_state = 37}, - [3141] = {.lex_state = 160, .external_lex_state = 32}, - [3142] = {.lex_state = 38, .external_lex_state = 33}, - [3143] = {.lex_state = 319, .external_lex_state = 37}, - [3144] = {.lex_state = 319, .external_lex_state = 35}, - [3145] = {.lex_state = 319, .external_lex_state = 35}, - [3146] = {.lex_state = 27}, - [3147] = {.lex_state = 38, .external_lex_state = 33}, - [3148] = {.lex_state = 319, .external_lex_state = 35}, - [3149] = {.lex_state = 38, .external_lex_state = 33}, - [3150] = {.lex_state = 38, .external_lex_state = 33}, - [3151] = {.lex_state = 319, .external_lex_state = 35}, - [3152] = {.lex_state = 319, .external_lex_state = 35}, - [3153] = {.lex_state = 327}, - [3154] = {.lex_state = 38, .external_lex_state = 33}, - [3155] = {.lex_state = 327}, - [3156] = {.lex_state = 319, .external_lex_state = 35}, - [3157] = {.lex_state = 319, .external_lex_state = 35}, - [3158] = {.lex_state = 327}, - [3159] = {.lex_state = 319, .external_lex_state = 35}, - [3160] = {.lex_state = 327}, - [3161] = {.lex_state = 319, .external_lex_state = 37}, - [3162] = {.lex_state = 38}, - [3163] = {.lex_state = 327}, - [3164] = {.lex_state = 27}, - [3165] = {.lex_state = 27}, - [3166] = {.lex_state = 319}, - [3167] = {.lex_state = 319, .external_lex_state = 35}, - [3168] = {.lex_state = 38, .external_lex_state = 33}, - [3169] = {.lex_state = 27}, - [3170] = {.lex_state = 319, .external_lex_state = 35}, - [3171] = {.lex_state = 327}, - [3172] = {.lex_state = 38, .external_lex_state = 33}, - [3173] = {.lex_state = 27}, - [3174] = {.lex_state = 319, .external_lex_state = 37}, - [3175] = {.lex_state = 327}, - [3176] = {.lex_state = 327}, - [3177] = {.lex_state = 38, .external_lex_state = 33}, - [3178] = {.lex_state = 327}, - [3179] = {.lex_state = 38, .external_lex_state = 33}, - [3180] = {.lex_state = 327}, - [3181] = {.lex_state = 319}, - [3182] = {.lex_state = 327}, - [3183] = {.lex_state = 319}, - [3184] = {.lex_state = 319}, - [3185] = {.lex_state = 38, .external_lex_state = 33}, - [3186] = {.lex_state = 38, .external_lex_state = 33}, - [3187] = {.lex_state = 327}, - [3188] = {.lex_state = 38, .external_lex_state = 33}, - [3189] = {.lex_state = 27}, - [3190] = {.lex_state = 38, .external_lex_state = 33}, - [3191] = {.lex_state = 38, .external_lex_state = 33}, - [3192] = {.lex_state = 319}, - [3193] = {.lex_state = 38, .external_lex_state = 33}, - [3194] = {.lex_state = 319}, - [3195] = {.lex_state = 327}, - [3196] = {.lex_state = 319, .external_lex_state = 35}, - [3197] = {.lex_state = 27}, - [3198] = {.lex_state = 38, .external_lex_state = 33}, - [3199] = {.lex_state = 319, .external_lex_state = 35}, - [3200] = {.lex_state = 319, .external_lex_state = 35}, - [3201] = {.lex_state = 38, .external_lex_state = 33}, - [3202] = {.lex_state = 319, .external_lex_state = 35}, - [3203] = {.lex_state = 38, .external_lex_state = 33}, - [3204] = {.lex_state = 38, .external_lex_state = 33}, - [3205] = {.lex_state = 38, .external_lex_state = 33}, - [3206] = {.lex_state = 38, .external_lex_state = 33}, - [3207] = {.lex_state = 319, .external_lex_state = 35}, - [3208] = {.lex_state = 319, .external_lex_state = 35}, - [3209] = {.lex_state = 319}, - [3210] = {.lex_state = 327}, - [3211] = {.lex_state = 38, .external_lex_state = 33}, - [3212] = {.lex_state = 38}, - [3213] = {.lex_state = 319, .external_lex_state = 35}, - [3214] = {.lex_state = 319}, - [3215] = {.lex_state = 38, .external_lex_state = 33}, - [3216] = {.lex_state = 327}, - [3217] = {.lex_state = 319, .external_lex_state = 35}, - [3218] = {.lex_state = 319, .external_lex_state = 35}, - [3219] = {.lex_state = 319, .external_lex_state = 35}, - [3220] = {.lex_state = 327}, - [3221] = {.lex_state = 319, .external_lex_state = 35}, - [3222] = {.lex_state = 38}, - [3223] = {.lex_state = 327}, - [3224] = {.lex_state = 27}, - [3225] = {.lex_state = 319, .external_lex_state = 35}, - [3226] = {.lex_state = 319, .external_lex_state = 35}, - [3227] = {.lex_state = 325}, - [3228] = {.lex_state = 38, .external_lex_state = 34}, - [3229] = {.lex_state = 319, .external_lex_state = 36}, - [3230] = {.lex_state = 325}, - [3231] = {.lex_state = 325}, - [3232] = {.lex_state = 325}, - [3233] = {.lex_state = 325}, - [3234] = {.lex_state = 325}, - [3235] = {.lex_state = 325}, - [3236] = {.lex_state = 325}, - [3237] = {.lex_state = 325}, - [3238] = {.lex_state = 325}, - [3239] = {.lex_state = 325}, - [3240] = {.lex_state = 325}, - [3241] = {.lex_state = 325}, - [3242] = {.lex_state = 319, .external_lex_state = 36}, - [3243] = {.lex_state = 325}, - [3244] = {.lex_state = 325}, - [3245] = {.lex_state = 325}, - [3246] = {.lex_state = 325}, - [3247] = {.lex_state = 325}, - [3248] = {.lex_state = 325}, - [3249] = {.lex_state = 325}, - [3250] = {.lex_state = 325}, - [3251] = {.lex_state = 325}, - [3252] = {.lex_state = 325}, - [3253] = {.lex_state = 325}, - [3254] = {.lex_state = 325}, - [3255] = {.lex_state = 325}, - [3256] = {.lex_state = 319, .external_lex_state = 36}, - [3257] = {.lex_state = 325}, - [3258] = {.lex_state = 325}, - [3259] = {.lex_state = 325}, - [3260] = {.lex_state = 325}, - [3261] = {.lex_state = 325}, - [3262] = {.lex_state = 325}, - [3263] = {.lex_state = 325}, - [3264] = {.lex_state = 325}, - [3265] = {.lex_state = 325}, - [3266] = {.lex_state = 38, .external_lex_state = 34}, - [3267] = {.lex_state = 325}, - [3268] = {.lex_state = 325}, - [3269] = {.lex_state = 319, .external_lex_state = 36}, - [3270] = {.lex_state = 38, .external_lex_state = 34}, - [3271] = {.lex_state = 38, .external_lex_state = 34}, - [3272] = {.lex_state = 325}, - [3273] = {.lex_state = 325}, - [3274] = {.lex_state = 325}, - [3275] = {.lex_state = 38}, - [3276] = {.lex_state = 319, .external_lex_state = 37}, - [3277] = {.lex_state = 327}, - [3278] = {.lex_state = 38}, - [3279] = {.lex_state = 38}, - [3280] = {.lex_state = 38}, - [3281] = {.lex_state = 38}, - [3282] = {.lex_state = 38}, - [3283] = {.lex_state = 319, .external_lex_state = 37}, - [3284] = {.lex_state = 319, .external_lex_state = 37}, - [3285] = {.lex_state = 38}, - [3286] = {.lex_state = 319, .external_lex_state = 37}, - [3287] = {.lex_state = 319, .external_lex_state = 37}, - [3288] = {.lex_state = 319, .external_lex_state = 37}, - [3289] = {.lex_state = 319, .external_lex_state = 37}, - [3290] = {.lex_state = 38}, - [3291] = {.lex_state = 38}, - [3292] = {.lex_state = 319, .external_lex_state = 37}, - [3293] = {.lex_state = 319}, - [3294] = {.lex_state = 319, .external_lex_state = 37}, - [3295] = {.lex_state = 38}, - [3296] = {.lex_state = 38}, - [3297] = {.lex_state = 319, .external_lex_state = 37}, - [3298] = {.lex_state = 319, .external_lex_state = 37}, - [3299] = {.lex_state = 327}, - [3300] = {.lex_state = 38}, - [3301] = {.lex_state = 327}, - [3302] = {.lex_state = 319, .external_lex_state = 37}, - [3303] = {.lex_state = 319, .external_lex_state = 37}, - [3304] = {.lex_state = 327}, - [3305] = {.lex_state = 327}, - [3306] = {.lex_state = 38}, - [3307] = {.lex_state = 319, .external_lex_state = 37}, - [3308] = {.lex_state = 319, .external_lex_state = 37}, - [3309] = {.lex_state = 327}, - [3310] = {.lex_state = 38}, - [3311] = {.lex_state = 327}, - [3312] = {.lex_state = 38}, - [3313] = {.lex_state = 327}, - [3314] = {.lex_state = 327}, - [3315] = {.lex_state = 327}, - [3316] = {.lex_state = 319, .external_lex_state = 37}, - [3317] = {.lex_state = 319, .external_lex_state = 37}, - [3318] = {.lex_state = 38}, - [3319] = {.lex_state = 327}, - [3320] = {.lex_state = 38}, - [3321] = {.lex_state = 38}, - [3322] = {.lex_state = 38}, - [3323] = {.lex_state = 38}, - [3324] = {.lex_state = 38}, - [3325] = {.lex_state = 327}, - [3326] = {.lex_state = 319, .external_lex_state = 37}, - [3327] = {.lex_state = 327}, - [3328] = {.lex_state = 38}, - [3329] = {.lex_state = 38}, - [3330] = {.lex_state = 327}, - [3331] = {.lex_state = 38}, - [3332] = {.lex_state = 319, .external_lex_state = 37}, - [3333] = {.lex_state = 327}, - [3334] = {.lex_state = 38}, - [3335] = {.lex_state = 319, .external_lex_state = 37}, - [3336] = {.lex_state = 319, .external_lex_state = 37}, - [3337] = {.lex_state = 319, .external_lex_state = 37}, - [3338] = {.lex_state = 327}, - [3339] = {.lex_state = 38}, - [3340] = {.lex_state = 319, .external_lex_state = 37}, - [3341] = {.lex_state = 319, .external_lex_state = 37}, - [3342] = {.lex_state = 327}, - [3343] = {.lex_state = 38}, - [3344] = {.lex_state = 327}, - [3345] = {.lex_state = 38}, - [3346] = {.lex_state = 319, .external_lex_state = 37}, - [3347] = {.lex_state = 327}, - [3348] = {.lex_state = 319, .external_lex_state = 37}, - [3349] = {.lex_state = 319, .external_lex_state = 37}, - [3350] = {.lex_state = 327}, - [3351] = {.lex_state = 319, .external_lex_state = 37}, - [3352] = {.lex_state = 327}, - [3353] = {.lex_state = 319, .external_lex_state = 37}, - [3354] = {.lex_state = 319, .external_lex_state = 37}, - [3355] = {.lex_state = 38}, - [3356] = {.lex_state = 38}, - [3357] = {.lex_state = 38}, - [3358] = {.lex_state = 319, .external_lex_state = 37}, - [3359] = {.lex_state = 319, .external_lex_state = 37}, - [3360] = {.lex_state = 319, .external_lex_state = 37}, - [3361] = {.lex_state = 327}, - [3362] = {.lex_state = 38}, - [3363] = {.lex_state = 38}, - [3364] = {.lex_state = 319, .external_lex_state = 37}, - [3365] = {.lex_state = 319, .external_lex_state = 37}, - [3366] = {.lex_state = 38}, - [3367] = {.lex_state = 327}, - [3368] = {.lex_state = 327}, - [3369] = {.lex_state = 38}, - [3370] = {.lex_state = 325}, - [3371] = {.lex_state = 36, .external_lex_state = 38}, - [3372] = {.lex_state = 325}, - [3373] = {.lex_state = 325}, - [3374] = {.lex_state = 325}, - [3375] = {.lex_state = 325}, - [3376] = {.lex_state = 325}, - [3377] = {.lex_state = 325}, - [3378] = {.lex_state = 325}, - [3379] = {.lex_state = 36, .external_lex_state = 38}, - [3380] = {.lex_state = 325}, - [3381] = {.lex_state = 325}, - [3382] = {.lex_state = 325}, - [3383] = {.lex_state = 325}, - [3384] = {.lex_state = 39}, - [3385] = {.lex_state = 39}, - [3386] = {.lex_state = 36, .external_lex_state = 38}, - [3387] = {.lex_state = 36, .external_lex_state = 38}, - [3388] = {.lex_state = 325}, - [3389] = {.lex_state = 36, .external_lex_state = 38}, - [3390] = {.lex_state = 36, .external_lex_state = 38}, - [3391] = {.lex_state = 36, .external_lex_state = 38}, - [3392] = {.lex_state = 39}, - [3393] = {.lex_state = 36, .external_lex_state = 38}, - [3394] = {.lex_state = 36, .external_lex_state = 38}, - [3395] = {.lex_state = 36, .external_lex_state = 38}, - [3396] = {.lex_state = 36, .external_lex_state = 38}, - [3397] = {.lex_state = 36, .external_lex_state = 38}, - [3398] = {.lex_state = 36, .external_lex_state = 38}, - [3399] = {.lex_state = 36, .external_lex_state = 38}, - [3400] = {.lex_state = 36, .external_lex_state = 38}, - [3401] = {.lex_state = 36, .external_lex_state = 38}, - [3402] = {.lex_state = 36, .external_lex_state = 38}, - [3403] = {.lex_state = 36, .external_lex_state = 38}, - [3404] = {.lex_state = 36, .external_lex_state = 38}, - [3405] = {.lex_state = 36, .external_lex_state = 38}, - [3406] = {.lex_state = 36, .external_lex_state = 38}, - [3407] = {.lex_state = 36, .external_lex_state = 38}, - [3408] = {.lex_state = 36, .external_lex_state = 38}, - [3409] = {.lex_state = 36, .external_lex_state = 38}, - [3410] = {.lex_state = 39}, - [3411] = {.lex_state = 36, .external_lex_state = 38}, - [3412] = {.lex_state = 326}, - [3413] = {.lex_state = 326}, - [3414] = {.lex_state = 325}, - [3415] = {.lex_state = 325}, - [3416] = {.lex_state = 325}, - [3417] = {.lex_state = 156}, - [3418] = {.lex_state = 156}, - [3419] = {.lex_state = 325}, - [3420] = {.lex_state = 321, .external_lex_state = 37}, - [3421] = {.lex_state = 148}, - [3422] = {.lex_state = 325}, - [3423] = {.lex_state = 325}, - [3424] = {.lex_state = 325}, - [3425] = {.lex_state = 325}, - [3426] = {.lex_state = 325}, - [3427] = {.lex_state = 156}, - [3428] = {.lex_state = 156}, - [3429] = {.lex_state = 325}, - [3430] = {.lex_state = 156}, - [3431] = {.lex_state = 325}, - [3432] = {.lex_state = 325}, - [3433] = {.lex_state = 325}, - [3434] = {.lex_state = 325}, - [3435] = {.lex_state = 325}, - [3436] = {.lex_state = 321, .external_lex_state = 37}, - [3437] = {.lex_state = 325}, - [3438] = {.lex_state = 325}, - [3439] = {.lex_state = 325}, - [3440] = {.lex_state = 156}, - [3441] = {.lex_state = 325}, - [3442] = {.lex_state = 325}, - [3443] = {.lex_state = 325}, - [3444] = {.lex_state = 156}, - [3445] = {.lex_state = 325}, - [3446] = {.lex_state = 321, .external_lex_state = 37}, - [3447] = {.lex_state = 325}, - [3448] = {.lex_state = 156}, - [3449] = {.lex_state = 325}, - [3450] = {.lex_state = 156}, - [3451] = {.lex_state = 325}, - [3452] = {.lex_state = 325}, - [3453] = {.lex_state = 156}, - [3454] = {.lex_state = 325}, - [3455] = {.lex_state = 325}, - [3456] = {.lex_state = 325}, - [3457] = {.lex_state = 325}, - [3458] = {.lex_state = 148}, - [3459] = {.lex_state = 325}, - [3460] = {.lex_state = 325}, - [3461] = {.lex_state = 156}, - [3462] = {.lex_state = 325}, - [3463] = {.lex_state = 35}, - [3464] = {.lex_state = 325}, - [3465] = {.lex_state = 325}, - [3466] = {.lex_state = 325}, - [3467] = {.lex_state = 325}, - [3468] = {.lex_state = 325}, - [3469] = {.lex_state = 325}, - [3470] = {.lex_state = 325}, - [3471] = {.lex_state = 325}, - [3472] = {.lex_state = 156}, - [3473] = {.lex_state = 325}, - [3474] = {.lex_state = 156}, - [3475] = {.lex_state = 325}, - [3476] = {.lex_state = 325}, - [3477] = {.lex_state = 325}, - [3478] = {.lex_state = 325}, - [3479] = {.lex_state = 325}, - [3480] = {.lex_state = 325}, - [3481] = {.lex_state = 156}, - [3482] = {.lex_state = 325}, - [3483] = {.lex_state = 325}, - [3484] = {.lex_state = 325}, - [3485] = {.lex_state = 325}, - [3486] = {.lex_state = 325}, - [3487] = {.lex_state = 325}, - [3488] = {.lex_state = 325}, - [3489] = {.lex_state = 325}, - [3490] = {.lex_state = 156}, - [3491] = {.lex_state = 156}, - [3492] = {.lex_state = 156}, - [3493] = {.lex_state = 325}, - [3494] = {.lex_state = 325}, - [3495] = {.lex_state = 325}, - [3496] = {.lex_state = 156}, - [3497] = {.lex_state = 156}, - [3498] = {.lex_state = 325}, - [3499] = {.lex_state = 35}, - [3500] = {.lex_state = 325}, - [3501] = {.lex_state = 35}, - [3502] = {.lex_state = 35}, - [3503] = {.lex_state = 325}, - [3504] = {.lex_state = 321, .external_lex_state = 37}, - [3505] = {.lex_state = 325}, - [3506] = {.lex_state = 325}, - [3507] = {.lex_state = 325}, - [3508] = {.lex_state = 325}, - [3509] = {.lex_state = 325}, - [3510] = {.lex_state = 325}, - [3511] = {.lex_state = 156}, - [3512] = {.lex_state = 156}, - [3513] = {.lex_state = 156}, - [3514] = {.lex_state = 325}, - [3515] = {.lex_state = 325}, - [3516] = {.lex_state = 156}, - [3517] = {.lex_state = 156}, - [3518] = {.lex_state = 156}, - [3519] = {.lex_state = 325}, - [3520] = {.lex_state = 325}, - [3521] = {.lex_state = 321}, - [3522] = {.lex_state = 325}, - [3523] = {.lex_state = 325}, - [3524] = {.lex_state = 156}, - [3525] = {.lex_state = 156}, - [3526] = {.lex_state = 156}, - [3527] = {.lex_state = 325}, - [3528] = {.lex_state = 156}, - [3529] = {.lex_state = 325}, - [3530] = {.lex_state = 148}, - [3531] = {.lex_state = 325}, - [3532] = {.lex_state = 325}, - [3533] = {.lex_state = 325}, - [3534] = {.lex_state = 325}, - [3535] = {.lex_state = 156}, - [3536] = {.lex_state = 325}, - [3537] = {.lex_state = 321}, - [3538] = {.lex_state = 325}, - [3539] = {.lex_state = 156}, - [3540] = {.lex_state = 156}, - [3541] = {.lex_state = 156}, - [3542] = {.lex_state = 325}, - [3543] = {.lex_state = 325}, - [3544] = {.lex_state = 325}, - [3545] = {.lex_state = 325}, - [3546] = {.lex_state = 325}, - [3547] = {.lex_state = 325}, - [3548] = {.lex_state = 156}, - [3549] = {.lex_state = 325}, - [3550] = {.lex_state = 325}, - [3551] = {.lex_state = 325}, - [3552] = {.lex_state = 156}, - [3553] = {.lex_state = 325}, - [3554] = {.lex_state = 325}, - [3555] = {.lex_state = 325}, - [3556] = {.lex_state = 321, .external_lex_state = 38}, - [3557] = {.lex_state = 321, .external_lex_state = 38}, - [3558] = {.lex_state = 321, .external_lex_state = 38}, - [3559] = {.lex_state = 154}, - [3560] = {.lex_state = 321, .external_lex_state = 38}, - [3561] = {.lex_state = 321, .external_lex_state = 38}, - [3562] = {.lex_state = 325}, - [3563] = {.lex_state = 325}, - [3564] = {.lex_state = 321, .external_lex_state = 38}, - [3565] = {.lex_state = 156}, - [3566] = {.lex_state = 325}, - [3567] = {.lex_state = 325}, - [3568] = {.lex_state = 321, .external_lex_state = 38}, - [3569] = {.lex_state = 321, .external_lex_state = 38}, - [3570] = {.lex_state = 321, .external_lex_state = 38}, - [3571] = {.lex_state = 148}, - [3572] = {.lex_state = 321, .external_lex_state = 38}, - [3573] = {.lex_state = 321, .external_lex_state = 38}, - [3574] = {.lex_state = 321, .external_lex_state = 38}, - [3575] = {.lex_state = 321, .external_lex_state = 38}, - [3576] = {.lex_state = 325}, - [3577] = {.lex_state = 325}, - [3578] = {.lex_state = 321, .external_lex_state = 38}, - [3579] = {.lex_state = 321, .external_lex_state = 38}, - [3580] = {.lex_state = 321, .external_lex_state = 38}, - [3581] = {.lex_state = 325}, - [3582] = {.lex_state = 325}, - [3583] = {.lex_state = 325}, - [3584] = {.lex_state = 325}, - [3585] = {.lex_state = 321, .external_lex_state = 38}, - [3586] = {.lex_state = 321, .external_lex_state = 38}, - [3587] = {.lex_state = 321, .external_lex_state = 38}, - [3588] = {.lex_state = 325}, - [3589] = {.lex_state = 325}, - [3590] = {.lex_state = 321, .external_lex_state = 38}, - [3591] = {.lex_state = 321, .external_lex_state = 38}, - [3592] = {.lex_state = 325}, - [3593] = {.lex_state = 154}, - [3594] = {.lex_state = 321, .external_lex_state = 38}, - [3595] = {.lex_state = 325}, - [3596] = {.lex_state = 325}, - [3597] = {.lex_state = 154}, - [3598] = {.lex_state = 325}, - [3599] = {.lex_state = 325}, - [3600] = {.lex_state = 321, .external_lex_state = 38}, - [3601] = {.lex_state = 154}, - [3602] = {.lex_state = 325}, - [3603] = {.lex_state = 325}, - [3604] = {.lex_state = 321, .external_lex_state = 38}, - [3605] = {.lex_state = 321, .external_lex_state = 38}, - [3606] = {.lex_state = 325}, - [3607] = {.lex_state = 325}, - [3608] = {.lex_state = 321, .external_lex_state = 38}, - [3609] = {.lex_state = 325}, - [3610] = {.lex_state = 325}, - [3611] = {.lex_state = 321, .external_lex_state = 38}, - [3612] = {.lex_state = 321, .external_lex_state = 38}, - [3613] = {.lex_state = 325}, - [3614] = {.lex_state = 321, .external_lex_state = 38}, - [3615] = {.lex_state = 321, .external_lex_state = 38}, - [3616] = {.lex_state = 325}, - [3617] = {.lex_state = 154}, - [3618] = {.lex_state = 154}, - [3619] = {.lex_state = 154}, - [3620] = {.lex_state = 154}, - [3621] = {.lex_state = 154}, - [3622] = {.lex_state = 321, .external_lex_state = 38}, - [3623] = {.lex_state = 325}, - [3624] = {.lex_state = 321, .external_lex_state = 39}, - [3625] = {.lex_state = 321, .external_lex_state = 37}, - [3626] = {.lex_state = 154}, - [3627] = {.lex_state = 321}, - [3628] = {.lex_state = 321}, - [3629] = {.lex_state = 321}, - [3630] = {.lex_state = 321}, - [3631] = {.lex_state = 325}, - [3632] = {.lex_state = 321}, - [3633] = {.lex_state = 321}, - [3634] = {.lex_state = 321}, - [3635] = {.lex_state = 321}, - [3636] = {.lex_state = 321}, - [3637] = {.lex_state = 321, .external_lex_state = 40}, - [3638] = {.lex_state = 321}, - [3639] = {.lex_state = 321, .external_lex_state = 40}, - [3640] = {.lex_state = 321}, - [3641] = {.lex_state = 321}, - [3642] = {.lex_state = 321, .external_lex_state = 39}, - [3643] = {.lex_state = 321}, - [3644] = {.lex_state = 321, .external_lex_state = 37}, - [3645] = {.lex_state = 321}, - [3646] = {.lex_state = 321}, - [3647] = {.lex_state = 321}, - [3648] = {.lex_state = 321}, - [3649] = {.lex_state = 321}, - [3650] = {.lex_state = 321}, - [3651] = {.lex_state = 321, .external_lex_state = 39}, - [3652] = {.lex_state = 321}, - [3653] = {.lex_state = 321}, - [3654] = {.lex_state = 321}, - [3655] = {.lex_state = 321}, - [3656] = {.lex_state = 321}, - [3657] = {.lex_state = 321}, - [3658] = {.lex_state = 321, .external_lex_state = 37}, - [3659] = {.lex_state = 321}, - [3660] = {.lex_state = 321, .external_lex_state = 39}, - [3661] = {.lex_state = 325}, - [3662] = {.lex_state = 321}, - [3663] = {.lex_state = 321, .external_lex_state = 40}, - [3664] = {.lex_state = 321, .external_lex_state = 39}, - [3665] = {.lex_state = 321, .external_lex_state = 40}, - [3666] = {.lex_state = 321, .external_lex_state = 39}, - [3667] = {.lex_state = 321, .external_lex_state = 39}, - [3668] = {.lex_state = 321}, - [3669] = {.lex_state = 321}, - [3670] = {.lex_state = 321}, - [3671] = {.lex_state = 321, .external_lex_state = 37}, - [3672] = {.lex_state = 321}, - [3673] = {.lex_state = 321, .external_lex_state = 40}, - [3674] = {.lex_state = 321, .external_lex_state = 39}, - [3675] = {.lex_state = 321, .external_lex_state = 37}, - [3676] = {.lex_state = 325}, - [3677] = {.lex_state = 321, .external_lex_state = 40}, - [3678] = {.lex_state = 325}, - [3679] = {.lex_state = 321}, - [3680] = {.lex_state = 325}, - [3681] = {.lex_state = 321, .external_lex_state = 40}, - [3682] = {.lex_state = 321, .external_lex_state = 40}, - [3683] = {.lex_state = 321, .external_lex_state = 39}, - [3684] = {.lex_state = 35}, - [3685] = {.lex_state = 321, .external_lex_state = 37}, - [3686] = {.lex_state = 321, .external_lex_state = 40}, - [3687] = {.lex_state = 321}, - [3688] = {.lex_state = 325}, - [3689] = {.lex_state = 325}, - [3690] = {.lex_state = 321, .external_lex_state = 39}, - [3691] = {.lex_state = 325}, - [3692] = {.lex_state = 325}, - [3693] = {.lex_state = 154}, - [3694] = {.lex_state = 325}, - [3695] = {.lex_state = 325}, - [3696] = {.lex_state = 321}, - [3697] = {.lex_state = 321, .external_lex_state = 37}, - [3698] = {.lex_state = 321, .external_lex_state = 40}, - [3699] = {.lex_state = 321}, - [3700] = {.lex_state = 321, .external_lex_state = 40}, - [3701] = {.lex_state = 321}, - [3702] = {.lex_state = 325}, - [3703] = {.lex_state = 325}, - [3704] = {.lex_state = 325}, - [3705] = {.lex_state = 321, .external_lex_state = 39}, - [3706] = {.lex_state = 321}, - [3707] = {.lex_state = 321, .external_lex_state = 40}, - [3708] = {.lex_state = 321}, - [3709] = {.lex_state = 325}, - [3710] = {.lex_state = 321}, - [3711] = {.lex_state = 321}, - [3712] = {.lex_state = 321}, - [3713] = {.lex_state = 35}, - [3714] = {.lex_state = 321, .external_lex_state = 37}, - [3715] = {.lex_state = 321, .external_lex_state = 39}, - [3716] = {.lex_state = 321}, - [3717] = {.lex_state = 321, .external_lex_state = 39}, - [3718] = {.lex_state = 321, .external_lex_state = 37}, - [3719] = {.lex_state = 321, .external_lex_state = 37}, - [3720] = {.lex_state = 321, .external_lex_state = 40}, - [3721] = {.lex_state = 321, .external_lex_state = 39}, - [3722] = {.lex_state = 321, .external_lex_state = 40}, - [3723] = {.lex_state = 321, .external_lex_state = 37}, - [3724] = {.lex_state = 35}, - [3725] = {.lex_state = 321, .external_lex_state = 40}, - [3726] = {.lex_state = 321, .external_lex_state = 37}, - [3727] = {.lex_state = 321, .external_lex_state = 40}, - [3728] = {.lex_state = 321, .external_lex_state = 40}, - [3729] = {.lex_state = 321}, - [3730] = {.lex_state = 321, .external_lex_state = 39}, - [3731] = {.lex_state = 321, .external_lex_state = 40}, - [3732] = {.lex_state = 321, .external_lex_state = 40}, - [3733] = {.lex_state = 321, .external_lex_state = 39}, - [3734] = {.lex_state = 321, .external_lex_state = 37}, - [3735] = {.lex_state = 321, .external_lex_state = 39}, - [3736] = {.lex_state = 321}, - [3737] = {.lex_state = 321}, - [3738] = {.lex_state = 321, .external_lex_state = 39}, - [3739] = {.lex_state = 321, .external_lex_state = 39}, - [3740] = {.lex_state = 321, .external_lex_state = 39}, - [3741] = {.lex_state = 321}, - [3742] = {.lex_state = 321, .external_lex_state = 40}, - [3743] = {.lex_state = 325}, - [3744] = {.lex_state = 321, .external_lex_state = 37}, - [3745] = {.lex_state = 325}, - [3746] = {.lex_state = 321, .external_lex_state = 39}, - [3747] = {.lex_state = 321, .external_lex_state = 37}, - [3748] = {.lex_state = 321}, - [3749] = {.lex_state = 321}, - [3750] = {.lex_state = 321, .external_lex_state = 40}, - [3751] = {.lex_state = 321}, - [3752] = {.lex_state = 321, .external_lex_state = 39}, - [3753] = {.lex_state = 321}, - [3754] = {.lex_state = 321, .external_lex_state = 37}, - [3755] = {.lex_state = 321}, - [3756] = {.lex_state = 321}, - [3757] = {.lex_state = 321, .external_lex_state = 37}, - [3758] = {.lex_state = 321}, - [3759] = {.lex_state = 321, .external_lex_state = 37}, - [3760] = {.lex_state = 325}, - [3761] = {.lex_state = 154}, - [3762] = {.lex_state = 321}, - [3763] = {.lex_state = 321}, - [3764] = {.lex_state = 321}, - [3765] = {.lex_state = 321}, - [3766] = {.lex_state = 321, .external_lex_state = 37}, - [3767] = {.lex_state = 321}, - [3768] = {.lex_state = 321}, - [3769] = {.lex_state = 321}, - [3770] = {.lex_state = 325}, - [3771] = {.lex_state = 325}, - [3772] = {.lex_state = 321, .external_lex_state = 37}, - [3773] = {.lex_state = 321, .external_lex_state = 40}, - [3774] = {.lex_state = 321, .external_lex_state = 39}, - [3775] = {.lex_state = 325}, - [3776] = {.lex_state = 321, .external_lex_state = 40}, - [3777] = {.lex_state = 325}, - [3778] = {.lex_state = 321}, - [3779] = {.lex_state = 321}, - [3780] = {.lex_state = 325}, - [3781] = {.lex_state = 321, .external_lex_state = 37}, - [3782] = {.lex_state = 321}, - [3783] = {.lex_state = 321, .external_lex_state = 39}, - [3784] = {.lex_state = 35}, - [3785] = {.lex_state = 321, .external_lex_state = 40}, - [3786] = {.lex_state = 321, .external_lex_state = 39}, - [3787] = {.lex_state = 35}, - [3788] = {.lex_state = 321}, - [3789] = {.lex_state = 321}, - [3790] = {.lex_state = 325}, - [3791] = {.lex_state = 325}, - [3792] = {.lex_state = 321}, - [3793] = {.lex_state = 325}, - [3794] = {.lex_state = 325}, - [3795] = {.lex_state = 321, .external_lex_state = 40}, - [3796] = {.lex_state = 325}, - [3797] = {.lex_state = 325}, - [3798] = {.lex_state = 325}, - [3799] = {.lex_state = 321}, - [3800] = {.lex_state = 325}, - [3801] = {.lex_state = 325}, - [3802] = {.lex_state = 321, .external_lex_state = 40}, - [3803] = {.lex_state = 325}, - [3804] = {.lex_state = 325}, - [3805] = {.lex_state = 325}, - [3806] = {.lex_state = 321, .external_lex_state = 39}, - [3807] = {.lex_state = 321, .external_lex_state = 37}, - [3808] = {.lex_state = 325}, - [3809] = {.lex_state = 321}, - [3810] = {.lex_state = 325}, - [3811] = {.lex_state = 321, .external_lex_state = 40}, - [3812] = {.lex_state = 321, .external_lex_state = 39}, - [3813] = {.lex_state = 325}, - [3814] = {.lex_state = 325}, - [3815] = {.lex_state = 321}, - [3816] = {.lex_state = 321, .external_lex_state = 40}, - [3817] = {.lex_state = 321, .external_lex_state = 39}, - [3818] = {.lex_state = 321}, - [3819] = {.lex_state = 321}, - [3820] = {.lex_state = 321}, - [3821] = {.lex_state = 154}, - [3822] = {.lex_state = 321}, - [3823] = {.lex_state = 321, .external_lex_state = 37}, - [3824] = {.lex_state = 325}, - [3825] = {.lex_state = 321}, - [3826] = {.lex_state = 321, .external_lex_state = 40}, - [3827] = {.lex_state = 321, .external_lex_state = 39}, - [3828] = {.lex_state = 321, .external_lex_state = 37}, - [3829] = {.lex_state = 325}, - [3830] = {.lex_state = 321}, - [3831] = {.lex_state = 321}, - [3832] = {.lex_state = 325}, - [3833] = {.lex_state = 321}, - [3834] = {.lex_state = 321, .external_lex_state = 40}, - [3835] = {.lex_state = 321}, - [3836] = {.lex_state = 321}, - [3837] = {.lex_state = 325}, - [3838] = {.lex_state = 321}, - [3839] = {.lex_state = 321, .external_lex_state = 40}, - [3840] = {.lex_state = 321, .external_lex_state = 39}, - [3841] = {.lex_state = 321}, - [3842] = {.lex_state = 325}, - [3843] = {.lex_state = 321, .external_lex_state = 37}, - [3844] = {.lex_state = 321}, - [3845] = {.lex_state = 321, .external_lex_state = 40}, - [3846] = {.lex_state = 321, .external_lex_state = 39}, - [3847] = {.lex_state = 321, .external_lex_state = 37}, - [3848] = {.lex_state = 321, .external_lex_state = 40}, - [3849] = {.lex_state = 321, .external_lex_state = 39}, - [3850] = {.lex_state = 321, .external_lex_state = 40}, - [3851] = {.lex_state = 321, .external_lex_state = 37}, - [3852] = {.lex_state = 325}, - [3853] = {.lex_state = 321, .external_lex_state = 39}, - [3854] = {.lex_state = 35}, - [3855] = {.lex_state = 321}, - [3856] = {.lex_state = 321, .external_lex_state = 37}, - [3857] = {.lex_state = 325}, - [3858] = {.lex_state = 321, .external_lex_state = 37}, - [3859] = {.lex_state = 321}, - [3860] = {.lex_state = 321, .external_lex_state = 39}, - [3861] = {.lex_state = 154}, - [3862] = {.lex_state = 321, .external_lex_state = 40}, - [3863] = {.lex_state = 321}, - [3864] = {.lex_state = 321}, - [3865] = {.lex_state = 321}, - [3866] = {.lex_state = 325}, - [3867] = {.lex_state = 321, .external_lex_state = 40}, - [3868] = {.lex_state = 321, .external_lex_state = 40}, - [3869] = {.lex_state = 321, .external_lex_state = 37}, - [3870] = {.lex_state = 154}, - [3871] = {.lex_state = 321, .external_lex_state = 39}, - [3872] = {.lex_state = 321}, - [3873] = {.lex_state = 321, .external_lex_state = 40}, - [3874] = {.lex_state = 321, .external_lex_state = 39}, - [3875] = {.lex_state = 325}, - [3876] = {.lex_state = 321}, - [3877] = {.lex_state = 154}, - [3878] = {.lex_state = 325}, - [3879] = {.lex_state = 154}, - [3880] = {.lex_state = 325}, - [3881] = {.lex_state = 321}, - [3882] = {.lex_state = 321, .external_lex_state = 39}, - [3883] = {.lex_state = 321, .external_lex_state = 39}, - [3884] = {.lex_state = 325}, - [3885] = {.lex_state = 321, .external_lex_state = 40}, - [3886] = {.lex_state = 325}, - [3887] = {.lex_state = 321, .external_lex_state = 40}, - [3888] = {.lex_state = 325}, - [3889] = {.lex_state = 321, .external_lex_state = 39}, - [3890] = {.lex_state = 321, .external_lex_state = 40}, - [3891] = {.lex_state = 321, .external_lex_state = 39}, - [3892] = {.lex_state = 325}, - [3893] = {.lex_state = 321}, - [3894] = {.lex_state = 321, .external_lex_state = 37}, - [3895] = {.lex_state = 321}, - [3896] = {.lex_state = 325}, - [3897] = {.lex_state = 321, .external_lex_state = 40}, - [3898] = {.lex_state = 321}, - [3899] = {.lex_state = 321, .external_lex_state = 39}, - [3900] = {.lex_state = 321}, - [3901] = {.lex_state = 35}, - [3902] = {.lex_state = 321}, - [3903] = {.lex_state = 325}, - [3904] = {.lex_state = 325}, - [3905] = {.lex_state = 321, .external_lex_state = 37}, - [3906] = {.lex_state = 325}, - [3907] = {.lex_state = 321, .external_lex_state = 37}, - [3908] = {.lex_state = 325}, - [3909] = {.lex_state = 321, .external_lex_state = 40}, - [3910] = {.lex_state = 325}, - [3911] = {.lex_state = 321, .external_lex_state = 39}, - [3912] = {.lex_state = 325}, - [3913] = {.lex_state = 321, .external_lex_state = 39}, - [3914] = {.lex_state = 325}, - [3915] = {.lex_state = 325}, - [3916] = {.lex_state = 325}, - [3917] = {.lex_state = 321, .external_lex_state = 37}, - [3918] = {.lex_state = 325}, - [3919] = {.lex_state = 321, .external_lex_state = 37}, - [3920] = {.lex_state = 325}, - [3921] = {.lex_state = 321}, - [3922] = {.lex_state = 325}, - [3923] = {.lex_state = 325}, - [3924] = {.lex_state = 325}, - [3925] = {.lex_state = 325}, - [3926] = {.lex_state = 325}, - [3927] = {.lex_state = 325}, - [3928] = {.lex_state = 325}, - [3929] = {.lex_state = 325}, - [3930] = {.lex_state = 325}, - [3931] = {.lex_state = 325}, - [3932] = {.lex_state = 325}, - [3933] = {.lex_state = 325}, - [3934] = {.lex_state = 325}, - [3935] = {.lex_state = 325}, - [3936] = {.lex_state = 321, .external_lex_state = 40}, - [3937] = {.lex_state = 321, .external_lex_state = 39}, - [3938] = {.lex_state = 321, .external_lex_state = 37}, - [3939] = {.lex_state = 321}, - [3940] = {.lex_state = 325}, - [3941] = {.lex_state = 35}, + [3133] = {.lex_state = 39, .external_lex_state = 28}, + [3134] = {.lex_state = 39, .external_lex_state = 25}, + [3135] = {.lex_state = 39, .external_lex_state = 25}, + [3136] = {.lex_state = 37}, + [3137] = {.lex_state = 37}, + [3138] = {.lex_state = 39, .external_lex_state = 25}, + [3139] = {.lex_state = 37}, + [3140] = {.lex_state = 322, .external_lex_state = 29}, + [3141] = {.lex_state = 37}, + [3142] = {.lex_state = 329, .external_lex_state = 28}, + [3143] = {.lex_state = 37}, + [3144] = {.lex_state = 37}, + [3145] = {.lex_state = 37}, + [3146] = {.lex_state = 39, .external_lex_state = 25}, + [3147] = {.lex_state = 163, .external_lex_state = 26}, + [3148] = {.lex_state = 37}, + [3149] = {.lex_state = 39, .external_lex_state = 28}, + [3150] = {.lex_state = 37}, + [3151] = {.lex_state = 39, .external_lex_state = 25}, + [3152] = {.lex_state = 37}, + [3153] = {.lex_state = 37}, + [3154] = {.lex_state = 37}, + [3155] = {.lex_state = 37}, + [3156] = {.lex_state = 39, .external_lex_state = 25}, + [3157] = {.lex_state = 27, .external_lex_state = 28}, + [3158] = {.lex_state = 322, .external_lex_state = 29}, + [3159] = {.lex_state = 163, .external_lex_state = 26}, + [3160] = {.lex_state = 39, .external_lex_state = 25}, + [3161] = {.lex_state = 322, .external_lex_state = 29}, + [3162] = {.lex_state = 39, .external_lex_state = 25}, + [3163] = {.lex_state = 39, .external_lex_state = 25}, + [3164] = {.lex_state = 322, .external_lex_state = 31}, + [3165] = {.lex_state = 39, .external_lex_state = 25}, + [3166] = {.lex_state = 39, .external_lex_state = 25}, + [3167] = {.lex_state = 322, .external_lex_state = 28}, + [3168] = {.lex_state = 329, .external_lex_state = 28}, + [3169] = {.lex_state = 163, .external_lex_state = 26}, + [3170] = {.lex_state = 39, .external_lex_state = 25}, + [3171] = {.lex_state = 163, .external_lex_state = 26}, + [3172] = {.lex_state = 329, .external_lex_state = 28}, + [3173] = {.lex_state = 39, .external_lex_state = 27}, + [3174] = {.lex_state = 322, .external_lex_state = 30}, + [3175] = {.lex_state = 39, .external_lex_state = 27}, + [3176] = {.lex_state = 322, .external_lex_state = 30}, + [3177] = {.lex_state = 322, .external_lex_state = 28}, + [3178] = {.lex_state = 39, .external_lex_state = 27}, + [3179] = {.lex_state = 322, .external_lex_state = 30}, + [3180] = {.lex_state = 39, .external_lex_state = 27}, + [3181] = {.lex_state = 322, .external_lex_state = 30}, + [3182] = {.lex_state = 322, .external_lex_state = 31}, + [3183] = {.lex_state = 329, .external_lex_state = 28}, + [3184] = {.lex_state = 39, .external_lex_state = 28}, + [3185] = {.lex_state = 322, .external_lex_state = 31}, + [3186] = {.lex_state = 39, .external_lex_state = 28}, + [3187] = {.lex_state = 322, .external_lex_state = 31}, + [3188] = {.lex_state = 328}, + [3189] = {.lex_state = 329, .external_lex_state = 28}, + [3190] = {.lex_state = 328}, + [3191] = {.lex_state = 322, .external_lex_state = 31}, + [3192] = {.lex_state = 322, .external_lex_state = 31}, + [3193] = {.lex_state = 329, .external_lex_state = 28}, + [3194] = {.lex_state = 39, .external_lex_state = 28}, + [3195] = {.lex_state = 328}, + [3196] = {.lex_state = 329, .external_lex_state = 28}, + [3197] = {.lex_state = 39, .external_lex_state = 28}, + [3198] = {.lex_state = 329, .external_lex_state = 28}, + [3199] = {.lex_state = 39, .external_lex_state = 28}, + [3200] = {.lex_state = 329, .external_lex_state = 28}, + [3201] = {.lex_state = 328}, + [3202] = {.lex_state = 328}, + [3203] = {.lex_state = 328}, + [3204] = {.lex_state = 39, .external_lex_state = 28}, + [3205] = {.lex_state = 328}, + [3206] = {.lex_state = 328}, + [3207] = {.lex_state = 322, .external_lex_state = 31}, + [3208] = {.lex_state = 329, .external_lex_state = 28}, + [3209] = {.lex_state = 328}, + [3210] = {.lex_state = 322, .external_lex_state = 31}, + [3211] = {.lex_state = 328}, + [3212] = {.lex_state = 329, .external_lex_state = 28}, + [3213] = {.lex_state = 328}, + [3214] = {.lex_state = 328}, + [3215] = {.lex_state = 322, .external_lex_state = 31}, + [3216] = {.lex_state = 328}, + [3217] = {.lex_state = 322, .external_lex_state = 31}, + [3218] = {.lex_state = 328}, + [3219] = {.lex_state = 329, .external_lex_state = 28}, + [3220] = {.lex_state = 328}, + [3221] = {.lex_state = 322, .external_lex_state = 31}, + [3222] = {.lex_state = 328}, + [3223] = {.lex_state = 328}, + [3224] = {.lex_state = 328}, + [3225] = {.lex_state = 328}, + [3226] = {.lex_state = 329, .external_lex_state = 28}, + [3227] = {.lex_state = 322, .external_lex_state = 31}, + [3228] = {.lex_state = 329, .external_lex_state = 28}, + [3229] = {.lex_state = 39, .external_lex_state = 28}, + [3230] = {.lex_state = 39, .external_lex_state = 28}, + [3231] = {.lex_state = 39, .external_lex_state = 28}, + [3232] = {.lex_state = 39, .external_lex_state = 28}, + [3233] = {.lex_state = 328}, + [3234] = {.lex_state = 328}, + [3235] = {.lex_state = 328}, + [3236] = {.lex_state = 329, .external_lex_state = 28}, + [3237] = {.lex_state = 322, .external_lex_state = 31}, + [3238] = {.lex_state = 322, .external_lex_state = 31}, + [3239] = {.lex_state = 322, .external_lex_state = 31}, + [3240] = {.lex_state = 322, .external_lex_state = 31}, + [3241] = {.lex_state = 329, .external_lex_state = 28}, + [3242] = {.lex_state = 328}, + [3243] = {.lex_state = 39, .external_lex_state = 28}, + [3244] = {.lex_state = 328}, + [3245] = {.lex_state = 328}, + [3246] = {.lex_state = 322, .external_lex_state = 31}, + [3247] = {.lex_state = 328}, + [3248] = {.lex_state = 329, .external_lex_state = 28}, + [3249] = {.lex_state = 322, .external_lex_state = 31}, + [3250] = {.lex_state = 39, .external_lex_state = 28}, + [3251] = {.lex_state = 39, .external_lex_state = 28}, + [3252] = {.lex_state = 329, .external_lex_state = 28}, + [3253] = {.lex_state = 329, .external_lex_state = 28}, + [3254] = {.lex_state = 39, .external_lex_state = 28}, + [3255] = {.lex_state = 322, .external_lex_state = 31}, + [3256] = {.lex_state = 322, .external_lex_state = 31}, + [3257] = {.lex_state = 39, .external_lex_state = 28}, + [3258] = {.lex_state = 322, .external_lex_state = 31}, + [3259] = {.lex_state = 39, .external_lex_state = 28}, + [3260] = {.lex_state = 322, .external_lex_state = 31}, + [3261] = {.lex_state = 322, .external_lex_state = 31}, + [3262] = {.lex_state = 328}, + [3263] = {.lex_state = 39, .external_lex_state = 28}, + [3264] = {.lex_state = 39, .external_lex_state = 28}, + [3265] = {.lex_state = 328}, + [3266] = {.lex_state = 39, .external_lex_state = 28}, + [3267] = {.lex_state = 329, .external_lex_state = 28}, + [3268] = {.lex_state = 322, .external_lex_state = 31}, + [3269] = {.lex_state = 39, .external_lex_state = 28}, + [3270] = {.lex_state = 329, .external_lex_state = 28}, + [3271] = {.lex_state = 322, .external_lex_state = 31}, + [3272] = {.lex_state = 322, .external_lex_state = 31}, + [3273] = {.lex_state = 322, .external_lex_state = 31}, + [3274] = {.lex_state = 39, .external_lex_state = 28}, + [3275] = {.lex_state = 322, .external_lex_state = 31}, + [3276] = {.lex_state = 329, .external_lex_state = 28}, + [3277] = {.lex_state = 322, .external_lex_state = 31}, + [3278] = {.lex_state = 39, .external_lex_state = 28}, + [3279] = {.lex_state = 39, .external_lex_state = 28}, + [3280] = {.lex_state = 322, .external_lex_state = 31}, + [3281] = {.lex_state = 39, .external_lex_state = 28}, + [3282] = {.lex_state = 328}, + [3283] = {.lex_state = 39, .external_lex_state = 28}, + [3284] = {.lex_state = 39, .external_lex_state = 28}, + [3285] = {.lex_state = 39, .external_lex_state = 28}, + [3286] = {.lex_state = 322, .external_lex_state = 31}, + [3287] = {.lex_state = 322, .external_lex_state = 31}, + [3288] = {.lex_state = 39, .external_lex_state = 28}, + [3289] = {.lex_state = 39, .external_lex_state = 28}, + [3290] = {.lex_state = 329, .external_lex_state = 28}, + [3291] = {.lex_state = 39, .external_lex_state = 28}, + [3292] = {.lex_state = 329, .external_lex_state = 28}, + [3293] = {.lex_state = 39, .external_lex_state = 28}, + [3294] = {.lex_state = 328}, + [3295] = {.lex_state = 328}, + [3296] = {.lex_state = 322, .external_lex_state = 31}, + [3297] = {.lex_state = 322, .external_lex_state = 31}, + [3298] = {.lex_state = 322, .external_lex_state = 31}, + [3299] = {.lex_state = 329, .external_lex_state = 28}, + [3300] = {.lex_state = 322, .external_lex_state = 31}, + [3301] = {.lex_state = 329, .external_lex_state = 28}, + [3302] = {.lex_state = 39, .external_lex_state = 28}, + [3303] = {.lex_state = 328}, + [3304] = {.lex_state = 39, .external_lex_state = 28}, + [3305] = {.lex_state = 329, .external_lex_state = 28}, + [3306] = {.lex_state = 328}, + [3307] = {.lex_state = 328}, + [3308] = {.lex_state = 328}, + [3309] = {.lex_state = 328}, + [3310] = {.lex_state = 328}, + [3311] = {.lex_state = 39, .external_lex_state = 28}, + [3312] = {.lex_state = 328}, + [3313] = {.lex_state = 328}, + [3314] = {.lex_state = 328}, + [3315] = {.lex_state = 39, .external_lex_state = 28}, + [3316] = {.lex_state = 328}, + [3317] = {.lex_state = 328}, + [3318] = {.lex_state = 328}, + [3319] = {.lex_state = 328}, + [3320] = {.lex_state = 37, .external_lex_state = 32}, + [3321] = {.lex_state = 328}, + [3322] = {.lex_state = 328}, + [3323] = {.lex_state = 328}, + [3324] = {.lex_state = 328}, + [3325] = {.lex_state = 37, .external_lex_state = 32}, + [3326] = {.lex_state = 328}, + [3327] = {.lex_state = 328}, + [3328] = {.lex_state = 328}, + [3329] = {.lex_state = 328}, + [3330] = {.lex_state = 328}, + [3331] = {.lex_state = 40}, + [3332] = {.lex_state = 37, .external_lex_state = 32}, + [3333] = {.lex_state = 37, .external_lex_state = 32}, + [3334] = {.lex_state = 37, .external_lex_state = 32}, + [3335] = {.lex_state = 37, .external_lex_state = 32}, + [3336] = {.lex_state = 40}, + [3337] = {.lex_state = 37, .external_lex_state = 32}, + [3338] = {.lex_state = 37, .external_lex_state = 32}, + [3339] = {.lex_state = 37, .external_lex_state = 32}, + [3340] = {.lex_state = 37, .external_lex_state = 32}, + [3341] = {.lex_state = 37, .external_lex_state = 32}, + [3342] = {.lex_state = 37, .external_lex_state = 32}, + [3343] = {.lex_state = 37, .external_lex_state = 32}, + [3344] = {.lex_state = 40}, + [3345] = {.lex_state = 37, .external_lex_state = 32}, + [3346] = {.lex_state = 37, .external_lex_state = 32}, + [3347] = {.lex_state = 37, .external_lex_state = 32}, + [3348] = {.lex_state = 37, .external_lex_state = 32}, + [3349] = {.lex_state = 37, .external_lex_state = 32}, + [3350] = {.lex_state = 37, .external_lex_state = 32}, + [3351] = {.lex_state = 37, .external_lex_state = 32}, + [3352] = {.lex_state = 37, .external_lex_state = 32}, + [3353] = {.lex_state = 37, .external_lex_state = 32}, + [3354] = {.lex_state = 37, .external_lex_state = 32}, + [3355] = {.lex_state = 37, .external_lex_state = 32}, + [3356] = {.lex_state = 37, .external_lex_state = 32}, + [3357] = {.lex_state = 40}, + [3358] = {.lex_state = 328}, + [3359] = {.lex_state = 324, .external_lex_state = 33}, + [3360] = {.lex_state = 324, .external_lex_state = 33}, + [3361] = {.lex_state = 324, .external_lex_state = 33}, + [3362] = {.lex_state = 324, .external_lex_state = 33}, + [3363] = {.lex_state = 324, .external_lex_state = 33}, + [3364] = {.lex_state = 35}, + [3365] = {.lex_state = 324, .external_lex_state = 33}, + [3366] = {.lex_state = 324, .external_lex_state = 33}, + [3367] = {.lex_state = 324, .external_lex_state = 33}, + [3368] = {.lex_state = 35}, + [3369] = {.lex_state = 159}, + [3370] = {.lex_state = 159}, + [3371] = {.lex_state = 328}, + [3372] = {.lex_state = 328}, + [3373] = {.lex_state = 328}, + [3374] = {.lex_state = 328}, + [3375] = {.lex_state = 159}, + [3376] = {.lex_state = 159}, + [3377] = {.lex_state = 328}, + [3378] = {.lex_state = 328}, + [3379] = {.lex_state = 328}, + [3380] = {.lex_state = 328}, + [3381] = {.lex_state = 328}, + [3382] = {.lex_state = 328}, + [3383] = {.lex_state = 328}, + [3384] = {.lex_state = 328}, + [3385] = {.lex_state = 328}, + [3386] = {.lex_state = 159}, + [3387] = {.lex_state = 328}, + [3388] = {.lex_state = 159}, + [3389] = {.lex_state = 159}, + [3390] = {.lex_state = 328}, + [3391] = {.lex_state = 328}, + [3392] = {.lex_state = 159}, + [3393] = {.lex_state = 328}, + [3394] = {.lex_state = 151}, + [3395] = {.lex_state = 159}, + [3396] = {.lex_state = 328}, + [3397] = {.lex_state = 159}, + [3398] = {.lex_state = 328}, + [3399] = {.lex_state = 328}, + [3400] = {.lex_state = 328}, + [3401] = {.lex_state = 328}, + [3402] = {.lex_state = 159}, + [3403] = {.lex_state = 159}, + [3404] = {.lex_state = 328}, + [3405] = {.lex_state = 328}, + [3406] = {.lex_state = 328}, + [3407] = {.lex_state = 159}, + [3408] = {.lex_state = 328}, + [3409] = {.lex_state = 328}, + [3410] = {.lex_state = 328}, + [3411] = {.lex_state = 328}, + [3412] = {.lex_state = 328}, + [3413] = {.lex_state = 328}, + [3414] = {.lex_state = 328}, + [3415] = {.lex_state = 328}, + [3416] = {.lex_state = 328}, + [3417] = {.lex_state = 328}, + [3418] = {.lex_state = 159}, + [3419] = {.lex_state = 328}, + [3420] = {.lex_state = 328}, + [3421] = {.lex_state = 328}, + [3422] = {.lex_state = 159}, + [3423] = {.lex_state = 328}, + [3424] = {.lex_state = 328}, + [3425] = {.lex_state = 328}, + [3426] = {.lex_state = 328}, + [3427] = {.lex_state = 328}, + [3428] = {.lex_state = 328}, + [3429] = {.lex_state = 328}, + [3430] = {.lex_state = 328}, + [3431] = {.lex_state = 151}, + [3432] = {.lex_state = 328}, + [3433] = {.lex_state = 328}, + [3434] = {.lex_state = 159}, + [3435] = {.lex_state = 159}, + [3436] = {.lex_state = 328}, + [3437] = {.lex_state = 159}, + [3438] = {.lex_state = 159}, + [3439] = {.lex_state = 324}, + [3440] = {.lex_state = 328}, + [3441] = {.lex_state = 328}, + [3442] = {.lex_state = 328}, + [3443] = {.lex_state = 159}, + [3444] = {.lex_state = 328}, + [3445] = {.lex_state = 328}, + [3446] = {.lex_state = 328}, + [3447] = {.lex_state = 328}, + [3448] = {.lex_state = 328}, + [3449] = {.lex_state = 159}, + [3450] = {.lex_state = 159}, + [3451] = {.lex_state = 328}, + [3452] = {.lex_state = 159}, + [3453] = {.lex_state = 328}, + [3454] = {.lex_state = 328}, + [3455] = {.lex_state = 328}, + [3456] = {.lex_state = 328}, + [3457] = {.lex_state = 159}, + [3458] = {.lex_state = 328}, + [3459] = {.lex_state = 328}, + [3460] = {.lex_state = 328}, + [3461] = {.lex_state = 328}, + [3462] = {.lex_state = 159}, + [3463] = {.lex_state = 328}, + [3464] = {.lex_state = 328}, + [3465] = {.lex_state = 328}, + [3466] = {.lex_state = 328}, + [3467] = {.lex_state = 328}, + [3468] = {.lex_state = 159}, + [3469] = {.lex_state = 328}, + [3470] = {.lex_state = 328}, + [3471] = {.lex_state = 159}, + [3472] = {.lex_state = 328}, + [3473] = {.lex_state = 328}, + [3474] = {.lex_state = 159}, + [3475] = {.lex_state = 328}, + [3476] = {.lex_state = 328}, + [3477] = {.lex_state = 151}, + [3478] = {.lex_state = 328}, + [3479] = {.lex_state = 328}, + [3480] = {.lex_state = 328}, + [3481] = {.lex_state = 328}, + [3482] = {.lex_state = 328}, + [3483] = {.lex_state = 328}, + [3484] = {.lex_state = 328}, + [3485] = {.lex_state = 159}, + [3486] = {.lex_state = 159}, + [3487] = {.lex_state = 328}, + [3488] = {.lex_state = 328}, + [3489] = {.lex_state = 328}, + [3490] = {.lex_state = 159}, + [3491] = {.lex_state = 324}, + [3492] = {.lex_state = 328}, + [3493] = {.lex_state = 328}, + [3494] = {.lex_state = 328}, + [3495] = {.lex_state = 328}, + [3496] = {.lex_state = 328}, + [3497] = {.lex_state = 159}, + [3498] = {.lex_state = 328}, + [3499] = {.lex_state = 159}, + [3500] = {.lex_state = 159}, + [3501] = {.lex_state = 159}, + [3502] = {.lex_state = 328}, + [3503] = {.lex_state = 328}, + [3504] = {.lex_state = 159}, + [3505] = {.lex_state = 328}, + [3506] = {.lex_state = 324, .external_lex_state = 32}, + [3507] = {.lex_state = 328}, + [3508] = {.lex_state = 328}, + [3509] = {.lex_state = 324, .external_lex_state = 32}, + [3510] = {.lex_state = 324, .external_lex_state = 32}, + [3511] = {.lex_state = 324, .external_lex_state = 32}, + [3512] = {.lex_state = 324, .external_lex_state = 32}, + [3513] = {.lex_state = 328}, + [3514] = {.lex_state = 157}, + [3515] = {.lex_state = 324, .external_lex_state = 32}, + [3516] = {.lex_state = 324, .external_lex_state = 32}, + [3517] = {.lex_state = 328}, + [3518] = {.lex_state = 328}, + [3519] = {.lex_state = 328}, + [3520] = {.lex_state = 324, .external_lex_state = 32}, + [3521] = {.lex_state = 328}, + [3522] = {.lex_state = 324, .external_lex_state = 32}, + [3523] = {.lex_state = 324, .external_lex_state = 32}, + [3524] = {.lex_state = 328}, + [3525] = {.lex_state = 324, .external_lex_state = 32}, + [3526] = {.lex_state = 324, .external_lex_state = 32}, + [3527] = {.lex_state = 328}, + [3528] = {.lex_state = 157}, + [3529] = {.lex_state = 324, .external_lex_state = 32}, + [3530] = {.lex_state = 151}, + [3531] = {.lex_state = 328}, + [3532] = {.lex_state = 328}, + [3533] = {.lex_state = 324, .external_lex_state = 32}, + [3534] = {.lex_state = 324, .external_lex_state = 32}, + [3535] = {.lex_state = 324, .external_lex_state = 32}, + [3536] = {.lex_state = 328}, + [3537] = {.lex_state = 324, .external_lex_state = 32}, + [3538] = {.lex_state = 328}, + [3539] = {.lex_state = 324, .external_lex_state = 32}, + [3540] = {.lex_state = 324, .external_lex_state = 32}, + [3541] = {.lex_state = 328}, + [3542] = {.lex_state = 324, .external_lex_state = 32}, + [3543] = {.lex_state = 324, .external_lex_state = 32}, + [3544] = {.lex_state = 324, .external_lex_state = 32}, + [3545] = {.lex_state = 328}, + [3546] = {.lex_state = 157}, + [3547] = {.lex_state = 328}, + [3548] = {.lex_state = 324, .external_lex_state = 32}, + [3549] = {.lex_state = 159}, + [3550] = {.lex_state = 157}, + [3551] = {.lex_state = 324, .external_lex_state = 32}, + [3552] = {.lex_state = 328}, + [3553] = {.lex_state = 324, .external_lex_state = 32}, + [3554] = {.lex_state = 157}, + [3555] = {.lex_state = 324, .external_lex_state = 32}, + [3556] = {.lex_state = 328}, + [3557] = {.lex_state = 328}, + [3558] = {.lex_state = 328}, + [3559] = {.lex_state = 328}, + [3560] = {.lex_state = 324, .external_lex_state = 32}, + [3561] = {.lex_state = 324, .external_lex_state = 32}, + [3562] = {.lex_state = 328}, + [3563] = {.lex_state = 324, .external_lex_state = 32}, + [3564] = {.lex_state = 328}, + [3565] = {.lex_state = 328}, + [3566] = {.lex_state = 328}, + [3567] = {.lex_state = 328}, + [3568] = {.lex_state = 324, .external_lex_state = 32}, + [3569] = {.lex_state = 328}, + [3570] = {.lex_state = 324, .external_lex_state = 32}, + [3571] = {.lex_state = 157}, + [3572] = {.lex_state = 157}, + [3573] = {.lex_state = 157}, + [3574] = {.lex_state = 157}, + [3575] = {.lex_state = 324, .external_lex_state = 32}, + [3576] = {.lex_state = 328}, + [3577] = {.lex_state = 328}, + [3578] = {.lex_state = 324, .external_lex_state = 34}, + [3579] = {.lex_state = 324, .external_lex_state = 35}, + [3580] = {.lex_state = 324}, + [3581] = {.lex_state = 324, .external_lex_state = 35}, + [3582] = {.lex_state = 324, .external_lex_state = 36}, + [3583] = {.lex_state = 324}, + [3584] = {.lex_state = 324, .external_lex_state = 35}, + [3585] = {.lex_state = 324}, + [3586] = {.lex_state = 157}, + [3587] = {.lex_state = 328}, + [3588] = {.lex_state = 324, .external_lex_state = 36}, + [3589] = {.lex_state = 324, .external_lex_state = 36}, + [3590] = {.lex_state = 324}, + [3591] = {.lex_state = 328}, + [3592] = {.lex_state = 324}, + [3593] = {.lex_state = 324, .external_lex_state = 36}, + [3594] = {.lex_state = 324}, + [3595] = {.lex_state = 324, .external_lex_state = 34}, + [3596] = {.lex_state = 328}, + [3597] = {.lex_state = 324}, + [3598] = {.lex_state = 324, .external_lex_state = 35}, + [3599] = {.lex_state = 328}, + [3600] = {.lex_state = 324, .external_lex_state = 37}, + [3601] = {.lex_state = 328}, + [3602] = {.lex_state = 328}, + [3603] = {.lex_state = 324, .external_lex_state = 34}, + [3604] = {.lex_state = 324}, + [3605] = {.lex_state = 324}, + [3606] = {.lex_state = 324}, + [3607] = {.lex_state = 324}, + [3608] = {.lex_state = 324, .external_lex_state = 36}, + [3609] = {.lex_state = 328}, + [3610] = {.lex_state = 324}, + [3611] = {.lex_state = 324}, + [3612] = {.lex_state = 328}, + [3613] = {.lex_state = 324, .external_lex_state = 36}, + [3614] = {.lex_state = 328}, + [3615] = {.lex_state = 324, .external_lex_state = 34}, + [3616] = {.lex_state = 328}, + [3617] = {.lex_state = 324}, + [3618] = {.lex_state = 324}, + [3619] = {.lex_state = 324, .external_lex_state = 36}, + [3620] = {.lex_state = 324, .external_lex_state = 34}, + [3621] = {.lex_state = 324}, + [3622] = {.lex_state = 324, .external_lex_state = 35}, + [3623] = {.lex_state = 328}, + [3624] = {.lex_state = 324}, + [3625] = {.lex_state = 328}, + [3626] = {.lex_state = 324, .external_lex_state = 36}, + [3627] = {.lex_state = 324, .external_lex_state = 34}, + [3628] = {.lex_state = 324, .external_lex_state = 34}, + [3629] = {.lex_state = 324, .external_lex_state = 35}, + [3630] = {.lex_state = 324}, + [3631] = {.lex_state = 324}, + [3632] = {.lex_state = 324, .external_lex_state = 36}, + [3633] = {.lex_state = 324}, + [3634] = {.lex_state = 324}, + [3635] = {.lex_state = 324, .external_lex_state = 34}, + [3636] = {.lex_state = 324, .external_lex_state = 35}, + [3637] = {.lex_state = 324}, + [3638] = {.lex_state = 324, .external_lex_state = 36}, + [3639] = {.lex_state = 324, .external_lex_state = 34}, + [3640] = {.lex_state = 324, .external_lex_state = 35}, + [3641] = {.lex_state = 324, .external_lex_state = 36}, + [3642] = {.lex_state = 328}, + [3643] = {.lex_state = 324, .external_lex_state = 35}, + [3644] = {.lex_state = 324, .external_lex_state = 37}, + [3645] = {.lex_state = 324}, + [3646] = {.lex_state = 328}, + [3647] = {.lex_state = 328}, + [3648] = {.lex_state = 324, .external_lex_state = 36}, + [3649] = {.lex_state = 324}, + [3650] = {.lex_state = 324, .external_lex_state = 34}, + [3651] = {.lex_state = 324}, + [3652] = {.lex_state = 324, .external_lex_state = 35}, + [3653] = {.lex_state = 324, .external_lex_state = 34}, + [3654] = {.lex_state = 324}, + [3655] = {.lex_state = 324, .external_lex_state = 35}, + [3656] = {.lex_state = 324}, + [3657] = {.lex_state = 324, .external_lex_state = 36}, + [3658] = {.lex_state = 324}, + [3659] = {.lex_state = 328}, + [3660] = {.lex_state = 157}, + [3661] = {.lex_state = 324}, + [3662] = {.lex_state = 324}, + [3663] = {.lex_state = 324}, + [3664] = {.lex_state = 324}, + [3665] = {.lex_state = 324, .external_lex_state = 36}, + [3666] = {.lex_state = 324}, + [3667] = {.lex_state = 324}, + [3668] = {.lex_state = 35}, + [3669] = {.lex_state = 324}, + [3670] = {.lex_state = 324}, + [3671] = {.lex_state = 328}, + [3672] = {.lex_state = 324, .external_lex_state = 34}, + [3673] = {.lex_state = 324, .external_lex_state = 34}, + [3674] = {.lex_state = 35}, + [3675] = {.lex_state = 324, .external_lex_state = 34}, + [3676] = {.lex_state = 324, .external_lex_state = 34}, + [3677] = {.lex_state = 328}, + [3678] = {.lex_state = 324, .external_lex_state = 35}, + [3679] = {.lex_state = 324, .external_lex_state = 34}, + [3680] = {.lex_state = 324, .external_lex_state = 35}, + [3681] = {.lex_state = 324, .external_lex_state = 35}, + [3682] = {.lex_state = 324}, + [3683] = {.lex_state = 324, .external_lex_state = 37}, + [3684] = {.lex_state = 324, .external_lex_state = 36}, + [3685] = {.lex_state = 324, .external_lex_state = 34}, + [3686] = {.lex_state = 324}, + [3687] = {.lex_state = 324, .external_lex_state = 34}, + [3688] = {.lex_state = 324, .external_lex_state = 35}, + [3689] = {.lex_state = 324, .external_lex_state = 36}, + [3690] = {.lex_state = 324}, + [3691] = {.lex_state = 324, .external_lex_state = 34}, + [3692] = {.lex_state = 324}, + [3693] = {.lex_state = 324, .external_lex_state = 35}, + [3694] = {.lex_state = 324, .external_lex_state = 36}, + [3695] = {.lex_state = 324, .external_lex_state = 36}, + [3696] = {.lex_state = 35}, + [3697] = {.lex_state = 324}, + [3698] = {.lex_state = 324, .external_lex_state = 35}, + [3699] = {.lex_state = 328}, + [3700] = {.lex_state = 324, .external_lex_state = 36}, + [3701] = {.lex_state = 324, .external_lex_state = 37}, + [3702] = {.lex_state = 324}, + [3703] = {.lex_state = 324, .external_lex_state = 34}, + [3704] = {.lex_state = 324, .external_lex_state = 35}, + [3705] = {.lex_state = 324, .external_lex_state = 34}, + [3706] = {.lex_state = 324, .external_lex_state = 34}, + [3707] = {.lex_state = 328}, + [3708] = {.lex_state = 324}, + [3709] = {.lex_state = 324, .external_lex_state = 37}, + [3710] = {.lex_state = 324}, + [3711] = {.lex_state = 324}, + [3712] = {.lex_state = 35}, + [3713] = {.lex_state = 328}, + [3714] = {.lex_state = 324, .external_lex_state = 35}, + [3715] = {.lex_state = 324, .external_lex_state = 35}, + [3716] = {.lex_state = 324}, + [3717] = {.lex_state = 324}, + [3718] = {.lex_state = 328}, + [3719] = {.lex_state = 324, .external_lex_state = 35}, + [3720] = {.lex_state = 328}, + [3721] = {.lex_state = 324}, + [3722] = {.lex_state = 324, .external_lex_state = 34}, + [3723] = {.lex_state = 324, .external_lex_state = 35}, + [3724] = {.lex_state = 324, .external_lex_state = 34}, + [3725] = {.lex_state = 324, .external_lex_state = 35}, + [3726] = {.lex_state = 324}, + [3727] = {.lex_state = 324}, + [3728] = {.lex_state = 35}, + [3729] = {.lex_state = 324}, + [3730] = {.lex_state = 324, .external_lex_state = 36}, + [3731] = {.lex_state = 328}, + [3732] = {.lex_state = 324, .external_lex_state = 35}, + [3733] = {.lex_state = 324}, + [3734] = {.lex_state = 324}, + [3735] = {.lex_state = 324, .external_lex_state = 34}, + [3736] = {.lex_state = 324, .external_lex_state = 34}, + [3737] = {.lex_state = 324, .external_lex_state = 35}, + [3738] = {.lex_state = 324, .external_lex_state = 36}, + [3739] = {.lex_state = 324}, + [3740] = {.lex_state = 324, .external_lex_state = 36}, + [3741] = {.lex_state = 328}, + [3742] = {.lex_state = 324}, + [3743] = {.lex_state = 324}, + [3744] = {.lex_state = 324}, + [3745] = {.lex_state = 324, .external_lex_state = 35}, + [3746] = {.lex_state = 324, .external_lex_state = 34}, + [3747] = {.lex_state = 324}, + [3748] = {.lex_state = 324}, + [3749] = {.lex_state = 324, .external_lex_state = 34}, + [3750] = {.lex_state = 324}, + [3751] = {.lex_state = 324, .external_lex_state = 36}, + [3752] = {.lex_state = 324}, + [3753] = {.lex_state = 324, .external_lex_state = 35}, + [3754] = {.lex_state = 324, .external_lex_state = 35}, + [3755] = {.lex_state = 324}, + [3756] = {.lex_state = 324, .external_lex_state = 36}, + [3757] = {.lex_state = 324, .external_lex_state = 36}, + [3758] = {.lex_state = 328}, + [3759] = {.lex_state = 328}, + [3760] = {.lex_state = 328}, + [3761] = {.lex_state = 324, .external_lex_state = 35}, + [3762] = {.lex_state = 324}, + [3763] = {.lex_state = 324, .external_lex_state = 36}, + [3764] = {.lex_state = 35}, + [3765] = {.lex_state = 324, .external_lex_state = 35}, + [3766] = {.lex_state = 324, .external_lex_state = 34}, + [3767] = {.lex_state = 324, .external_lex_state = 35}, + [3768] = {.lex_state = 324, .external_lex_state = 34}, + [3769] = {.lex_state = 324, .external_lex_state = 34}, + [3770] = {.lex_state = 324, .external_lex_state = 35}, + [3771] = {.lex_state = 324, .external_lex_state = 36}, + [3772] = {.lex_state = 324}, + [3773] = {.lex_state = 324}, + [3774] = {.lex_state = 324}, + [3775] = {.lex_state = 324, .external_lex_state = 34}, + [3776] = {.lex_state = 324, .external_lex_state = 34}, + [3777] = {.lex_state = 324, .external_lex_state = 35}, + [3778] = {.lex_state = 324, .external_lex_state = 36}, + [3779] = {.lex_state = 324, .external_lex_state = 35}, + [3780] = {.lex_state = 324}, + [3781] = {.lex_state = 324}, + [3782] = {.lex_state = 324, .external_lex_state = 36}, + [3783] = {.lex_state = 324}, + [3784] = {.lex_state = 324}, + [3785] = {.lex_state = 324}, + [3786] = {.lex_state = 157}, + [3787] = {.lex_state = 324}, + [3788] = {.lex_state = 324, .external_lex_state = 35}, + [3789] = {.lex_state = 324}, + [3790] = {.lex_state = 157}, + [3791] = {.lex_state = 324}, + [3792] = {.lex_state = 324, .external_lex_state = 37}, + [3793] = {.lex_state = 324}, + [3794] = {.lex_state = 324}, + [3795] = {.lex_state = 324}, + [3796] = {.lex_state = 324, .external_lex_state = 34}, + [3797] = {.lex_state = 324, .external_lex_state = 34}, + [3798] = {.lex_state = 324}, + [3799] = {.lex_state = 324}, + [3800] = {.lex_state = 328}, + [3801] = {.lex_state = 324}, + [3802] = {.lex_state = 324}, + [3803] = {.lex_state = 328}, + [3804] = {.lex_state = 328}, + [3805] = {.lex_state = 328}, + [3806] = {.lex_state = 324, .external_lex_state = 36}, + [3807] = {.lex_state = 324}, + [3808] = {.lex_state = 324}, + [3809] = {.lex_state = 324}, + [3810] = {.lex_state = 324, .external_lex_state = 34}, + [3811] = {.lex_state = 324, .external_lex_state = 35}, + [3812] = {.lex_state = 324, .external_lex_state = 37}, + [3813] = {.lex_state = 324, .external_lex_state = 35}, + [3814] = {.lex_state = 324}, + [3815] = {.lex_state = 324, .external_lex_state = 36}, + [3816] = {.lex_state = 324, .external_lex_state = 34}, + [3817] = {.lex_state = 328}, + [3818] = {.lex_state = 324}, + [3819] = {.lex_state = 324, .external_lex_state = 35}, + [3820] = {.lex_state = 324, .external_lex_state = 34}, + [3821] = {.lex_state = 324, .external_lex_state = 35}, + [3822] = {.lex_state = 324, .external_lex_state = 36}, + [3823] = {.lex_state = 328}, + [3824] = {.lex_state = 328}, + [3825] = {.lex_state = 324, .external_lex_state = 37}, + [3826] = {.lex_state = 324, .external_lex_state = 35}, + [3827] = {.lex_state = 328}, + [3828] = {.lex_state = 157}, + [3829] = {.lex_state = 324}, + [3830] = {.lex_state = 324, .external_lex_state = 36}, + [3831] = {.lex_state = 328}, + [3832] = {.lex_state = 324, .external_lex_state = 36}, + [3833] = {.lex_state = 328}, + [3834] = {.lex_state = 324}, + [3835] = {.lex_state = 328}, + [3836] = {.lex_state = 324}, + [3837] = {.lex_state = 157}, + [3838] = {.lex_state = 328}, + [3839] = {.lex_state = 324}, + [3840] = {.lex_state = 35}, + [3841] = {.lex_state = 324, .external_lex_state = 36}, + [3842] = {.lex_state = 328}, + [3843] = {.lex_state = 328}, + [3844] = {.lex_state = 324}, + [3845] = {.lex_state = 324, .external_lex_state = 34}, + [3846] = {.lex_state = 157}, + [3847] = {.lex_state = 328}, + [3848] = {.lex_state = 324, .external_lex_state = 34}, + [3849] = {.lex_state = 324, .external_lex_state = 35}, + [3850] = {.lex_state = 324, .external_lex_state = 36}, + [3851] = {.lex_state = 328}, + [3852] = {.lex_state = 324}, + [3853] = {.lex_state = 324}, + [3854] = {.lex_state = 324}, + [3855] = {.lex_state = 328}, + [3856] = {.lex_state = 324, .external_lex_state = 34}, + [3857] = {.lex_state = 324, .external_lex_state = 35}, + [3858] = {.lex_state = 157}, + [3859] = {.lex_state = 328}, + [3860] = {.lex_state = 324}, + [3861] = {.lex_state = 324}, + [3862] = {.lex_state = 328}, + [3863] = {.lex_state = 328}, + [3864] = {.lex_state = 328}, + [3865] = {.lex_state = 324, .external_lex_state = 34}, + [3866] = {.lex_state = 324, .external_lex_state = 35}, + [3867] = {.lex_state = 328}, + [3868] = {.lex_state = 328}, + [3869] = {.lex_state = 328}, + [3870] = {.lex_state = 324, .external_lex_state = 34}, + [3871] = {.lex_state = 328}, + [3872] = {.lex_state = 324, .external_lex_state = 35}, + [3873] = {.lex_state = 328}, + [3874] = {.lex_state = 324}, + [3875] = {.lex_state = 328}, + [3876] = {.lex_state = 328}, + [3877] = {.lex_state = 328}, + [3878] = {.lex_state = 324}, + [3879] = {.lex_state = 328}, + [3880] = {.lex_state = 324}, + [3881] = {.lex_state = 328}, + [3882] = {.lex_state = 328}, + [3883] = {.lex_state = 328}, + [3884] = {.lex_state = 328}, + [3885] = {.lex_state = 328}, + [3886] = {.lex_state = 324, .external_lex_state = 34}, + [3887] = {.lex_state = 328}, + [3888] = {.lex_state = 324, .external_lex_state = 34}, + [3889] = {.lex_state = 328}, + [3890] = {.lex_state = 324, .external_lex_state = 35}, + [3891] = {.lex_state = 328}, + [3892] = {.lex_state = 328}, + [3893] = {.lex_state = 328}, + [3894] = {.lex_state = 328}, + [3895] = {.lex_state = 328}, + [3896] = {.lex_state = 328}, + [3897] = {.lex_state = 328}, + [3898] = {.lex_state = 324, .external_lex_state = 35}, + [3899] = {.lex_state = 328}, + [3900] = {.lex_state = 328}, + [3901] = {.lex_state = 328}, + [3902] = {.lex_state = 328}, + [3903] = {.lex_state = 328}, + [3904] = {.lex_state = 328}, + [3905] = {.lex_state = 35}, + [3906] = {.lex_state = 324, .external_lex_state = 34}, + [3907] = {.lex_state = 328}, + [3908] = {.lex_state = 324, .external_lex_state = 36}, + [3909] = {.lex_state = 328}, + [3910] = {.lex_state = 328}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -21155,6 +21109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_start_dash] = ACTIONS(1), [sym_heredoc_body] = ACTIONS(1), [sym_heredoc_end] = ACTIONS(1), + [sym__heredoc_newline] = ACTIONS(1), [sym__concat] = ACTIONS(1), [sym__assignment_name] = ACTIONS(1), [sym__file_descriptor] = ACTIONS(1), @@ -21165,57 +21120,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [STATE(1)] = { - [sym_program] = STATE(3641), - [sym__statements] = STATE(3778), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [sym_program] = STATE(3836), + [sym__statements] = STATE(3583), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(64), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_LF] = ACTIONS(9), @@ -21276,59 +21231,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(2)] = { - [sym__statements] = STATE(3373), - [sym__statement] = STATE(3052), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_elif_clause] = STATE(3467), - [sym_else_clause] = STATE(3770), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_program_repeat1] = STATE(208), - [aux_sym__statements_repeat1] = STATE(291), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_if_statement_repeat1] = STATE(3374), - [aux_sym_command_repeat1] = STATE(1163), + [sym__statements] = STATE(3318), + [sym__statement] = STATE(3001), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_elif_clause] = STATE(3382), + [sym_else_clause] = STATE(3602), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_program_repeat1] = STATE(207), + [aux_sym__statements_repeat1] = STATE(283), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_if_statement_repeat1] = STATE(3321), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), [anon_sym_LF] = ACTIONS(85), [sym_shebang] = ACTIONS(11), @@ -21391,59 +21346,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(139), }, [STATE(3)] = { - [sym__statements] = STATE(3375), - [sym__statement] = STATE(3052), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_elif_clause] = STATE(3467), - [sym_else_clause] = STATE(3777), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_program_repeat1] = STATE(208), - [aux_sym__statements_repeat1] = STATE(291), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_if_statement_repeat1] = STATE(3376), - [aux_sym_command_repeat1] = STATE(1163), + [sym__statements] = STATE(3328), + [sym__statement] = STATE(3001), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_elif_clause] = STATE(3382), + [sym_else_clause] = STATE(3707), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_program_repeat1] = STATE(207), + [aux_sym__statements_repeat1] = STATE(283), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_if_statement_repeat1] = STATE(3316), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), [anon_sym_LF] = ACTIONS(85), [sym_shebang] = ACTIONS(11), @@ -21506,59 +21461,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(139), }, [STATE(4)] = { - [sym__statements] = STATE(3381), - [sym__statement] = STATE(3052), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_elif_clause] = STATE(3467), - [sym_else_clause] = STATE(3676), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_program_repeat1] = STATE(208), - [aux_sym__statements_repeat1] = STATE(291), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_if_statement_repeat1] = STATE(3382), - [aux_sym_command_repeat1] = STATE(1163), + [sym__statements] = STATE(3329), + [sym__statement] = STATE(3001), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_elif_clause] = STATE(3382), + [sym_else_clause] = STATE(3805), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_program_repeat1] = STATE(207), + [aux_sym__statements_repeat1] = STATE(283), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_if_statement_repeat1] = STATE(3317), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), [anon_sym_LF] = ACTIONS(85), [sym_shebang] = ACTIONS(11), @@ -21621,59 +21576,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(139), }, [STATE(5)] = { - [sym__statements] = STATE(3372), - [sym__statement] = STATE(3052), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_elif_clause] = STATE(3467), - [sym_else_clause] = STATE(3878), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_program_repeat1] = STATE(208), - [aux_sym__statements_repeat1] = STATE(291), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_if_statement_repeat1] = STATE(3380), - [aux_sym_command_repeat1] = STATE(1163), + [sym__statements] = STATE(3322), + [sym__statement] = STATE(3001), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_elif_clause] = STATE(3382), + [sym_else_clause] = STATE(3720), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_program_repeat1] = STATE(207), + [aux_sym__statements_repeat1] = STATE(283), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_if_statement_repeat1] = STATE(3324), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), [anon_sym_LF] = ACTIONS(85), [sym_shebang] = ACTIONS(11), @@ -21736,57 +21691,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(139), }, [STATE(6)] = { - [sym__statements] = STATE(3412), - [sym__statement] = STATE(3034), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__case_body] = STATE(3412), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_program_repeat1] = STATE(45), - [aux_sym__statements_repeat1] = STATE(292), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [sym__statements] = STATE(3364), + [sym__statement] = STATE(2974), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__case_body] = STATE(3364), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym__statements_repeat1] = STATE(286), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), [anon_sym_LF] = ACTIONS(149), [sym_shebang] = ACTIONS(151), @@ -21850,57 +21805,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(227), }, [STATE(7)] = { - [sym__statements] = STATE(3413), - [sym__statement] = STATE(3034), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__case_body] = STATE(3413), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_program_repeat1] = STATE(45), - [aux_sym__statements_repeat1] = STATE(292), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [sym__statements] = STATE(3368), + [sym__statement] = STATE(2974), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__case_body] = STATE(3368), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym__statements_repeat1] = STATE(286), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), [anon_sym_LF] = ACTIONS(149), [sym_shebang] = ACTIONS(151), @@ -21964,57 +21919,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(227), }, [STATE(8)] = { - [sym__statements] = STATE(3521), - [sym__statement] = STATE(3047), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__case_body] = STATE(3521), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), + [sym__statements] = STATE(3491), + [sym__statement] = STATE(2994), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__case_body] = STATE(3491), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), [aux_sym_program_repeat1] = STATE(48), - [aux_sym__statements_repeat1] = STATE(286), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [aux_sym__statements_repeat1] = STATE(294), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), [anon_sym_LF] = ACTIONS(237), [sym_shebang] = ACTIONS(151), @@ -22077,57 +22032,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(285), }, [STATE(9)] = { - [sym__statements] = STATE(3537), - [sym__statement] = STATE(3047), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__case_body] = STATE(3537), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), + [sym__statements] = STATE(3439), + [sym__statement] = STATE(2994), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__case_body] = STATE(3439), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), [aux_sym_program_repeat1] = STATE(48), - [aux_sym__statements_repeat1] = STATE(286), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [aux_sym__statements_repeat1] = STATE(294), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), [anon_sym_LF] = ACTIONS(237), [sym_shebang] = ACTIONS(151), @@ -22190,177 +22145,289 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(285), }, [STATE(10)] = { - [sym__terminator] = STATE(216), - [sym__statement] = STATE(3320), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3318), - [sym_compound_statement] = STATE(3318), - [sym__body] = STATE(3339), - [sym_do_group] = STATE(3323), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), + [sym__terminator] = STATE(205), + [sym__statement] = STATE(3193), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2921), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), [sym_word] = ACTIONS(287), [anon_sym_LF] = ACTIONS(289), [anon_sym_SEMI] = ACTIONS(289), [anon_sym_AMP] = ACTIONS(291), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_do] = ACTIONS(301), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(297), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, [STATE(11)] = { + [sym__statement] = STATE(2948), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_program_repeat1] = STATE(339), + [aux_sym__statements_repeat1] = STATE(291), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), + [sym_word] = ACTIONS(147), + [anon_sym_LF] = ACTIONS(343), + [sym_shebang] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_case] = ACTIONS(161), + [anon_sym_esac] = ACTIONS(345), + [anon_sym_SEMI_SEMI] = ACTIONS(345), + [anon_sym_SEMI_AMP] = ACTIONS(347), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(347), + [anon_sym_for] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_LPAREN_LPAREN] = ACTIONS(173), + [anon_sym_while] = ACTIONS(175), + [anon_sym_until] = ACTIONS(177), + [anon_sym_return] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_function] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(189), + [anon_sym_typeset] = ACTIONS(189), + [anon_sym_export] = ACTIONS(189), + [anon_sym_readonly] = ACTIONS(189), + [anon_sym_local] = ACTIONS(189), + [anon_sym_eval] = ACTIONS(189), + [anon_sym_alias] = ACTIONS(189), + [anon_sym_let] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_GT_GT] = ACTIONS(193), + [anon_sym_AMP_GT] = ACTIONS(191), + [anon_sym_AMP_GT_GT] = ACTIONS(193), + [anon_sym_LT_AMP] = ACTIONS(193), + [anon_sym_GT_AMP] = ACTIONS(193), + [anon_sym_GT_PIPE] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_LT_LT_DASH] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(199), + [aux_sym_brace_expression_token1] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(207), + [sym_raw_string] = ACTIONS(203), + [sym_ansi_c_string] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(213), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(219), + [sym__file_descriptor] = ACTIONS(221), + [sym__backtick_open] = ACTIONS(223), + [sym__dollar_literal] = ACTIONS(225), + [sym__brace_expr_start] = ACTIONS(227), + }, + [STATE(12)] = { [sym__terminator] = STATE(233), - [sym__statement] = STATE(3192), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2976), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [sym__statement] = STATE(3104), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2921), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(367), - [anon_sym_SEMI] = ACTIONS(367), - [anon_sym_AMP] = ACTIONS(369), + [anon_sym_LF] = ACTIONS(349), + [anon_sym_SEMI] = ACTIONS(349), + [anon_sym_AMP] = ACTIONS(351), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(23), @@ -22413,66 +22480,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(12)] = { - [sym__terminator] = STATE(232), - [sym__statement] = STATE(3166), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2966), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [STATE(13)] = { + [sym__terminator] = STATE(234), + [sym__statement] = STATE(3090), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2929), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(373), - [anon_sym_SEMI] = ACTIONS(373), - [anon_sym_AMP] = ACTIONS(375), + [anon_sym_LF] = ACTIONS(353), + [anon_sym_SEMI] = ACTIONS(353), + [anon_sym_AMP] = ACTIONS(355), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(23), @@ -22525,66 +22592,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(13)] = { - [sym__terminator] = STATE(234), - [sym__statement] = STATE(3209), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2984), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [STATE(14)] = { + [sym__terminator] = STATE(202), + [sym__statement] = STATE(3272), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3273), + [sym_compound_statement] = STATE(3273), + [sym__body] = STATE(3275), + [sym_do_group] = STATE(3298), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [anon_sym_LF] = ACTIONS(359), + [anon_sym_SEMI] = ACTIONS(359), + [anon_sym_AMP] = ACTIONS(361), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), + }, + [STATE(15)] = { + [sym__terminator] = STATE(230), + [sym__statement] = STATE(3167), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2933), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(377), - [anon_sym_AMP] = ACTIONS(379), + [anon_sym_LF] = ACTIONS(437), + [anon_sym_SEMI] = ACTIONS(437), + [anon_sym_AMP] = ACTIONS(439), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(23), @@ -22637,1522 +22816,1298 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(14)] = { - [sym__terminator] = STATE(199), - [sym__statement] = STATE(3276), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3298), - [sym_compound_statement] = STATE(3298), - [sym__body] = STATE(3303), - [sym_do_group] = STATE(3283), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(383), - [anon_sym_SEMI] = ACTIONS(383), - [anon_sym_AMP] = ACTIONS(385), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), - }, - [STATE(15)] = { + [STATE(16)] = { [sym__terminator] = STATE(236), - [sym__statement] = STATE(3332), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3298), - [sym_compound_statement] = STATE(3298), - [sym__body] = STATE(3335), - [sym_do_group] = STATE(3283), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(461), - [anon_sym_SEMI] = ACTIONS(461), - [anon_sym_AMP] = ACTIONS(463), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym__statement] = STATE(3297), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3273), + [sym_compound_statement] = STATE(3273), + [sym__body] = STATE(3300), + [sym_do_group] = STATE(3298), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [anon_sym_LF] = ACTIONS(441), + [anon_sym_SEMI] = ACTIONS(441), + [anon_sym_AMP] = ACTIONS(443), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, - [STATE(16)] = { + [STATE(17)] = { [sym__terminator] = STATE(237), - [sym__statement] = STATE(3292), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3298), - [sym_compound_statement] = STATE(3298), - [sym__body] = STATE(3297), - [sym_do_group] = STATE(3283), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(465), - [anon_sym_SEMI] = ACTIONS(465), - [anon_sym_AMP] = ACTIONS(467), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym__statement] = STATE(3210), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3273), + [sym_compound_statement] = STATE(3273), + [sym__body] = STATE(3191), + [sym_do_group] = STATE(3298), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [anon_sym_LF] = ACTIONS(445), + [anon_sym_SEMI] = ACTIONS(445), + [anon_sym_AMP] = ACTIONS(447), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, - [STATE(17)] = { - [sym__terminator] = STATE(239), - [sym__statement] = STATE(3316), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3298), - [sym_compound_statement] = STATE(3298), - [sym__body] = STATE(3326), - [sym_do_group] = STATE(3283), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(469), - [anon_sym_SEMI] = ACTIONS(469), - [anon_sym_AMP] = ACTIONS(471), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [STATE(18)] = { + [sym__terminator] = STATE(238), + [sym__statement] = STATE(3207), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3273), + [sym_compound_statement] = STATE(3273), + [sym__body] = STATE(3221), + [sym_do_group] = STATE(3298), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [anon_sym_LF] = ACTIONS(449), + [anon_sym_SEMI] = ACTIONS(449), + [anon_sym_AMP] = ACTIONS(451), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, - [STATE(18)] = { - [sym__terminator] = STATE(219), - [sym__statement] = STATE(3367), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2981), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), - [anon_sym_LF] = ACTIONS(475), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(477), + [STATE(19)] = { + [sym__terminator] = STATE(240), + [sym__statement] = STATE(3290), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2933), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), + [anon_sym_LF] = ACTIONS(455), + [anon_sym_SEMI] = ACTIONS(455), + [anon_sym_AMP] = ACTIONS(457), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(19)] = { - [sym__terminator] = STATE(200), + [STATE(20)] = { + [sym__terminator] = STATE(241), [sym__statement] = STATE(3305), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2966), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), - [anon_sym_LF] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(527), - [anon_sym_AMP] = ACTIONS(529), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2927), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), + [anon_sym_LF] = ACTIONS(507), + [anon_sym_SEMI] = ACTIONS(507), + [anon_sym_AMP] = ACTIONS(509), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(20)] = { - [sym__terminator] = STATE(201), - [sym__statement] = STATE(3299), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2976), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), - [anon_sym_LF] = ACTIONS(531), - [anon_sym_SEMI] = ACTIONS(531), - [anon_sym_AMP] = ACTIONS(533), + [STATE(21)] = { + [sym__terminator] = STATE(242), + [sym__statement] = STATE(3226), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2921), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), + [anon_sym_LF] = ACTIONS(511), + [anon_sym_SEMI] = ACTIONS(511), + [anon_sym_AMP] = ACTIONS(513), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(21)] = { - [sym__terminator] = STATE(202), - [sym__statement] = STATE(3347), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2984), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), - [anon_sym_LF] = ACTIONS(535), - [anon_sym_SEMI] = ACTIONS(535), - [anon_sym_AMP] = ACTIONS(537), + [STATE(22)] = { + [sym__terminator] = STATE(243), + [sym__statement] = STATE(3236), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2929), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), + [anon_sym_LF] = ACTIONS(515), + [anon_sym_SEMI] = ACTIONS(515), + [anon_sym_AMP] = ACTIONS(517), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(22)] = { - [sym__terminator] = STATE(204), - [sym__statement] = STATE(3314), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2981), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(541), - [anon_sym_SEMI] = ACTIONS(541), - [anon_sym_AMP] = ACTIONS(543), + [STATE(23)] = { + [sym__terminator] = STATE(203), + [sym__statement] = STATE(3299), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2933), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(519), + [anon_sym_SEMI] = ACTIONS(519), + [anon_sym_AMP] = ACTIONS(521), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, - [STATE(23)] = { - [sym__terminator] = STATE(205), - [sym__statement] = STATE(3333), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2966), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_SEMI] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(595), + [STATE(24)] = { + [sym__terminator] = STATE(204), + [sym__statement] = STATE(3189), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2927), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(523), + [anon_sym_SEMI] = ACTIONS(523), + [anon_sym_AMP] = ACTIONS(525), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, - [STATE(24)] = { + [STATE(25)] = { [sym__terminator] = STATE(206), - [sym__statement] = STATE(3338), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2976), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_SEMI] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(599), + [sym__statement] = STATE(3196), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2929), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(527), + [anon_sym_AMP] = ACTIONS(529), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, - [STATE(25)] = { - [sym__terminator] = STATE(207), - [sym__statement] = STATE(3342), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2984), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(603), + [STATE(26)] = { + [sym__terminator] = STATE(208), + [sym__statement] = STATE(3112), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2933), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), + [sym_word] = ACTIONS(83), + [anon_sym_LF] = ACTIONS(531), + [anon_sym_SEMI] = ACTIONS(531), + [anon_sym_AMP] = ACTIONS(533), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(95), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_typeset] = ACTIONS(103), + [anon_sym_export] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_local] = ACTIONS(103), + [anon_sym_eval] = ACTIONS(103), + [anon_sym_alias] = ACTIONS(103), + [anon_sym_let] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(107), + [anon_sym_AMP_GT] = ACTIONS(105), + [anon_sym_AMP_GT_GT] = ACTIONS(107), + [anon_sym_LT_AMP] = ACTIONS(107), + [anon_sym_GT_AMP] = ACTIONS(107), + [anon_sym_GT_PIPE] = ACTIONS(107), + [anon_sym_LT_GT] = ACTIONS(107), + [anon_sym_LT_LT_LT] = ACTIONS(107), + [anon_sym_LT_LT] = ACTIONS(109), + [anon_sym_LT_LT_DASH] = ACTIONS(111), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(113), + [sym_number] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_raw_string] = ACTIONS(115), + [sym_ansi_c_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(125), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(131), + [sym__file_descriptor] = ACTIONS(133), + [sym__backtick_open] = ACTIONS(135), + [sym__dollar_literal] = ACTIONS(137), + [sym__brace_expr_start] = ACTIONS(139), }, - [STATE(26)] = { + [STATE(27)] = { [sym__terminator] = STATE(209), - [sym__statement] = STATE(3210), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2981), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), + [sym__statement] = STATE(3113), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2927), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), - [anon_sym_LF] = ACTIONS(605), - [anon_sym_SEMI] = ACTIONS(605), - [anon_sym_AMP] = ACTIONS(607), + [anon_sym_LF] = ACTIONS(535), + [anon_sym_SEMI] = ACTIONS(535), + [anon_sym_AMP] = ACTIONS(537), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(95), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_eval] = ACTIONS(103), - [anon_sym_alias] = ACTIONS(103), - [anon_sym_let] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(105), - [anon_sym_GT_GT] = ACTIONS(107), - [anon_sym_AMP_GT] = ACTIONS(105), - [anon_sym_AMP_GT_GT] = ACTIONS(107), - [anon_sym_LT_AMP] = ACTIONS(107), - [anon_sym_GT_AMP] = ACTIONS(107), - [anon_sym_GT_PIPE] = ACTIONS(107), - [anon_sym_LT_GT] = ACTIONS(107), - [anon_sym_LT_LT_LT] = ACTIONS(107), - [anon_sym_LT_LT] = ACTIONS(109), - [anon_sym_LT_LT_DASH] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(113), - [sym_number] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_raw_string] = ACTIONS(115), - [sym_ansi_c_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(125), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(131), - [sym__file_descriptor] = ACTIONS(133), - [sym__backtick_open] = ACTIONS(135), - [sym__dollar_literal] = ACTIONS(137), - [sym__brace_expr_start] = ACTIONS(139), - }, - [STATE(27)] = { - [sym__terminator] = STATE(210), - [sym__statement] = STATE(3216), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2966), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), - [sym_word] = ACTIONS(83), - [anon_sym_LF] = ACTIONS(609), - [anon_sym_SEMI] = ACTIONS(609), - [anon_sym_AMP] = ACTIONS(611), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(95), @@ -24206,65 +24161,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(139), }, [STATE(28)] = { - [sym__terminator] = STATE(211), - [sym__statement] = STATE(3155), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2976), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), + [sym__terminator] = STATE(210), + [sym__statement] = STATE(3115), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2921), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), - [anon_sym_LF] = ACTIONS(613), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LF] = ACTIONS(539), + [anon_sym_SEMI] = ACTIONS(539), + [anon_sym_AMP] = ACTIONS(541), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(95), @@ -24318,65 +24273,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(139), }, [STATE(29)] = { - [sym__terminator] = STATE(212), - [sym__statement] = STATE(3171), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2984), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), + [sym__terminator] = STATE(211), + [sym__statement] = STATE(3117), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2929), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(619), + [anon_sym_LF] = ACTIONS(543), + [anon_sym_SEMI] = ACTIONS(543), + [anon_sym_AMP] = ACTIONS(545), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(95), @@ -24430,849 +24385,961 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(139), }, [STATE(30)] = { - [sym__terminator] = STATE(214), - [sym__statement] = STATE(3310), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3318), - [sym_compound_statement] = STATE(3318), - [sym__body] = STATE(3321), - [sym_do_group] = STATE(3323), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(621), - [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_AMP] = ACTIONS(623), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_do] = ACTIONS(301), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [sym__terminator] = STATE(213), + [sym__statement] = STATE(3284), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3302), + [sym_compound_statement] = STATE(3302), + [sym__body] = STATE(3304), + [sym_do_group] = STATE(3283), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(551), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_do] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, [STATE(31)] = { - [sym__terminator] = STATE(215), - [sym__statement] = STATE(3312), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3318), - [sym_compound_statement] = STATE(3318), - [sym__body] = STATE(3334), - [sym_do_group] = STATE(3323), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(625), - [anon_sym_SEMI] = ACTIONS(625), - [anon_sym_AMP] = ACTIONS(627), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_do] = ACTIONS(301), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [sym__terminator] = STATE(214), + [sym__statement] = STATE(3285), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3302), + [sym_compound_statement] = STATE(3302), + [sym__body] = STATE(3315), + [sym_do_group] = STATE(3283), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(627), + [anon_sym_SEMI] = ACTIONS(627), + [anon_sym_AMP] = ACTIONS(629), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_do] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, [STATE(32)] = { - [sym__terminator] = STATE(217), - [sym__statement] = STATE(3322), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3318), - [sym_compound_statement] = STATE(3318), - [sym__body] = STATE(3343), - [sym_do_group] = STATE(3323), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(629), - [anon_sym_SEMI] = ACTIONS(629), - [anon_sym_AMP] = ACTIONS(631), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_do] = ACTIONS(301), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [sym__terminator] = STATE(215), + [sym__statement] = STATE(3288), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3302), + [sym_compound_statement] = STATE(3302), + [sym__body] = STATE(3194), + [sym_do_group] = STATE(3283), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(631), + [anon_sym_SEMI] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(633), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_do] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, [STATE(33)] = { - [sym__terminator] = STATE(218), - [sym__statement] = STATE(3309), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2981), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), + [sym__terminator] = STATE(216), + [sym__statement] = STATE(3291), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3302), + [sym_compound_statement] = STATE(3302), + [sym__body] = STATE(3197), + [sym_do_group] = STATE(3283), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), [anon_sym_LF] = ACTIONS(635), [anon_sym_SEMI] = ACTIONS(635), [anon_sym_AMP] = ACTIONS(637), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_do] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), + }, + [STATE(34)] = { + [sym__terminator] = STATE(217), + [sym__statement] = STATE(3200), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2933), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), + [anon_sym_LF] = ACTIONS(641), + [anon_sym_SEMI] = ACTIONS(641), + [anon_sym_AMP] = ACTIONS(643), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(647), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), }, - [STATE(34)] = { - [sym__terminator] = STATE(241), - [sym__statement] = STATE(3311), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2966), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), - [anon_sym_LF] = ACTIONS(687), - [anon_sym_SEMI] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(689), + [STATE(35)] = { + [sym__terminator] = STATE(218), + [sym__statement] = STATE(3228), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2927), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), + [anon_sym_LF] = ACTIONS(693), + [anon_sym_SEMI] = ACTIONS(693), + [anon_sym_AMP] = ACTIONS(695), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(647), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), }, - [STATE(35)] = { - [sym__terminator] = STATE(220), - [sym__statement] = STATE(3313), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2976), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), - [anon_sym_LF] = ACTIONS(691), - [anon_sym_SEMI] = ACTIONS(691), - [anon_sym_AMP] = ACTIONS(693), + [STATE(36)] = { + [sym__terminator] = STATE(219), + [sym__statement] = STATE(3292), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2921), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), + [anon_sym_LF] = ACTIONS(697), + [anon_sym_SEMI] = ACTIONS(697), + [anon_sym_AMP] = ACTIONS(699), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(647), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), }, - [STATE(36)] = { - [sym__terminator] = STATE(221), - [sym__statement] = STATE(3315), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2984), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), - [anon_sym_LF] = ACTIONS(695), - [anon_sym_SEMI] = ACTIONS(695), - [anon_sym_AMP] = ACTIONS(697), + [STATE(37)] = { + [sym__terminator] = STATE(220), + [sym__statement] = STATE(3301), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2929), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), + [anon_sym_LF] = ACTIONS(701), + [anon_sym_SEMI] = ACTIONS(701), + [anon_sym_AMP] = ACTIONS(703), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(647), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), }, - [STATE(37)] = { - [sym__terminator] = STATE(222), - [sym__statement] = STATE(3127), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3069), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [STATE(38)] = { + [sym__terminator] = STATE(221), + [sym__statement] = STATE(3047), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3034), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(699), - [anon_sym_SEMI] = ACTIONS(699), - [anon_sym_AMP] = ACTIONS(701), + [anon_sym_LF] = ACTIONS(705), + [anon_sym_SEMI] = ACTIONS(705), + [anon_sym_AMP] = ACTIONS(707), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(169), @@ -25325,66 +25392,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(225), [sym__brace_expr_start] = ACTIONS(227), }, - [STATE(38)] = { - [sym__terminator] = STATE(223), - [sym__statement] = STATE(3128), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3113), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [STATE(39)] = { + [sym__terminator] = STATE(244), + [sym__statement] = STATE(3051), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3043), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(705), - [anon_sym_SEMI] = ACTIONS(705), - [anon_sym_AMP] = ACTIONS(707), + [anon_sym_LF] = ACTIONS(711), + [anon_sym_SEMI] = ACTIONS(711), + [anon_sym_AMP] = ACTIONS(713), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(169), @@ -25437,66 +25504,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(225), [sym__brace_expr_start] = ACTIONS(227), }, - [STATE(39)] = { - [sym__terminator] = STATE(224), - [sym__statement] = STATE(3129), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3121), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [STATE(40)] = { + [sym__terminator] = STATE(223), + [sym__statement] = STATE(3013), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3007), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(709), - [anon_sym_SEMI] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(711), + [anon_sym_LF] = ACTIONS(715), + [anon_sym_SEMI] = ACTIONS(715), + [anon_sym_AMP] = ACTIONS(717), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(169), @@ -25549,66 +25616,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(225), [sym__brace_expr_start] = ACTIONS(227), }, - [STATE(40)] = { - [sym__terminator] = STATE(225), - [sym__statement] = STATE(3131), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3095), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [STATE(41)] = { + [sym__terminator] = STATE(224), + [sym__statement] = STATE(3024), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3041), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(713), - [anon_sym_SEMI] = ACTIONS(713), - [anon_sym_AMP] = ACTIONS(715), + [anon_sym_LF] = ACTIONS(719), + [anon_sym_SEMI] = ACTIONS(719), + [anon_sym_AMP] = ACTIONS(721), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(169), @@ -25661,66 +25728,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(225), [sym__brace_expr_start] = ACTIONS(227), }, - [STATE(41)] = { - [sym__terminator] = STATE(226), - [sym__statement] = STATE(3224), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3069), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [STATE(42)] = { + [sym__terminator] = STATE(225), + [sym__statement] = STATE(3053), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3034), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), - [anon_sym_LF] = ACTIONS(717), - [anon_sym_SEMI] = ACTIONS(717), - [anon_sym_AMP] = ACTIONS(719), + [anon_sym_LF] = ACTIONS(723), + [anon_sym_SEMI] = ACTIONS(723), + [anon_sym_AMP] = ACTIONS(725), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(241), @@ -25773,66 +25840,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(42)] = { - [sym__terminator] = STATE(227), - [sym__statement] = STATE(3169), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3113), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [STATE(43)] = { + [sym__terminator] = STATE(226), + [sym__statement] = STATE(3065), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3043), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), - [anon_sym_LF] = ACTIONS(721), - [anon_sym_SEMI] = ACTIONS(721), - [anon_sym_AMP] = ACTIONS(723), + [anon_sym_LF] = ACTIONS(727), + [anon_sym_SEMI] = ACTIONS(727), + [anon_sym_AMP] = ACTIONS(729), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(241), @@ -25885,66 +25952,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(43)] = { - [sym__terminator] = STATE(228), - [sym__statement] = STATE(3197), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3121), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [STATE(44)] = { + [sym__terminator] = STATE(227), + [sym__statement] = STATE(3077), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3007), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), - [anon_sym_LF] = ACTIONS(725), - [anon_sym_SEMI] = ACTIONS(725), - [anon_sym_AMP] = ACTIONS(727), + [anon_sym_LF] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(731), + [anon_sym_AMP] = ACTIONS(733), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(241), @@ -25997,66 +26064,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(44)] = { - [sym__terminator] = STATE(229), - [sym__statement] = STATE(3146), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3095), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [STATE(45)] = { + [sym__terminator] = STATE(228), + [sym__statement] = STATE(3089), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3041), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), - [anon_sym_LF] = ACTIONS(729), - [anon_sym_SEMI] = ACTIONS(729), - [anon_sym_AMP] = ACTIONS(731), + [anon_sym_LF] = ACTIONS(735), + [anon_sym_SEMI] = ACTIONS(735), + [anon_sym_AMP] = ACTIONS(737), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(241), @@ -26109,178 +26176,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(45)] = { - [sym__statement] = STATE(3016), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_program_repeat1] = STATE(315), - [aux_sym__statements_repeat1] = STATE(287), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), - [sym_word] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(733), - [sym_shebang] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_esac] = ACTIONS(735), - [anon_sym_SEMI_SEMI] = ACTIONS(735), - [anon_sym_SEMI_AMP] = ACTIONS(737), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(737), - [anon_sym_for] = ACTIONS(169), - [anon_sym_select] = ACTIONS(171), - [anon_sym_LPAREN_LPAREN] = ACTIONS(173), - [anon_sym_while] = ACTIONS(175), - [anon_sym_until] = ACTIONS(177), - [anon_sym_return] = ACTIONS(179), - [anon_sym_break] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_function] = ACTIONS(185), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(189), - [anon_sym_typeset] = ACTIONS(189), - [anon_sym_export] = ACTIONS(189), - [anon_sym_readonly] = ACTIONS(189), - [anon_sym_local] = ACTIONS(189), - [anon_sym_eval] = ACTIONS(189), - [anon_sym_alias] = ACTIONS(189), - [anon_sym_let] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(193), - [anon_sym_AMP_GT] = ACTIONS(191), - [anon_sym_AMP_GT_GT] = ACTIONS(193), - [anon_sym_LT_AMP] = ACTIONS(193), - [anon_sym_GT_AMP] = ACTIONS(193), - [anon_sym_GT_PIPE] = ACTIONS(193), - [anon_sym_LT_GT] = ACTIONS(193), - [anon_sym_LT_LT_LT] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_LT_LT_DASH] = ACTIONS(197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(199), - [aux_sym_brace_expression_token1] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [sym_raw_string] = ACTIONS(203), - [sym_ansi_c_string] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), + [STATE(46)] = { + [sym__statements] = STATE(3379), + [sym__statement] = STATE(3001), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_program_repeat1] = STATE(207), + [aux_sym__statements_repeat1] = STATE(283), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), + [sym_word] = ACTIONS(83), + [anon_sym_LF] = ACTIONS(85), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_fi] = ACTIONS(739), + [anon_sym_elif] = ACTIONS(739), + [anon_sym_else] = ACTIONS(739), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(95), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_typeset] = ACTIONS(103), + [anon_sym_export] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_local] = ACTIONS(103), + [anon_sym_eval] = ACTIONS(103), + [anon_sym_alias] = ACTIONS(103), + [anon_sym_let] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(107), + [anon_sym_AMP_GT] = ACTIONS(105), + [anon_sym_AMP_GT_GT] = ACTIONS(107), + [anon_sym_LT_AMP] = ACTIONS(107), + [anon_sym_GT_AMP] = ACTIONS(107), + [anon_sym_GT_PIPE] = ACTIONS(107), + [anon_sym_LT_GT] = ACTIONS(107), + [anon_sym_LT_LT_LT] = ACTIONS(107), + [anon_sym_LT_LT] = ACTIONS(109), + [anon_sym_LT_LT_DASH] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(113), + [sym_number] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_raw_string] = ACTIONS(115), + [sym_ansi_c_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(125), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(219), - [sym__file_descriptor] = ACTIONS(221), - [sym__backtick_open] = ACTIONS(223), - [sym__dollar_literal] = ACTIONS(225), - [sym__brace_expr_start] = ACTIONS(227), + [sym__assignment_name] = ACTIONS(131), + [sym__file_descriptor] = ACTIONS(133), + [sym__backtick_open] = ACTIONS(135), + [sym__dollar_literal] = ACTIONS(137), + [sym__brace_expr_start] = ACTIONS(139), }, - [STATE(46)] = { + [STATE(47)] = { [sym__terminator] = STATE(231), - [sym__statement] = STATE(3183), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2981), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [sym__statement] = STATE(3111), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2927), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_AMP] = ACTIONS(741), + [anon_sym_LF] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(743), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(23), @@ -26333,168 +26400,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(47)] = { - [sym__statements] = STATE(3455), - [sym__statement] = STATE(3052), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_program_repeat1] = STATE(208), - [aux_sym__statements_repeat1] = STATE(291), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), - [sym_word] = ACTIONS(83), - [anon_sym_LF] = ACTIONS(85), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_fi] = ACTIONS(743), - [anon_sym_elif] = ACTIONS(743), - [anon_sym_else] = ACTIONS(743), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(95), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_eval] = ACTIONS(103), - [anon_sym_alias] = ACTIONS(103), - [anon_sym_let] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(105), - [anon_sym_GT_GT] = ACTIONS(107), - [anon_sym_AMP_GT] = ACTIONS(105), - [anon_sym_AMP_GT_GT] = ACTIONS(107), - [anon_sym_LT_AMP] = ACTIONS(107), - [anon_sym_GT_AMP] = ACTIONS(107), - [anon_sym_GT_PIPE] = ACTIONS(107), - [anon_sym_LT_GT] = ACTIONS(107), - [anon_sym_LT_LT_LT] = ACTIONS(107), - [anon_sym_LT_LT] = ACTIONS(109), - [anon_sym_LT_LT_DASH] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(113), - [sym_number] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_raw_string] = ACTIONS(115), - [sym_ansi_c_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(125), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(131), - [sym__file_descriptor] = ACTIONS(133), - [sym__backtick_open] = ACTIONS(135), - [sym__dollar_literal] = ACTIONS(137), - [sym__brace_expr_start] = ACTIONS(139), - }, [STATE(48)] = { - [sym__statement] = STATE(3048), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym__statements_repeat1] = STATE(289), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [sym__statement] = STATE(2999), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym__statements_repeat1] = STATE(285), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(151), @@ -26503,9 +26458,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(157), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), - [anon_sym_SEMI_SEMI] = ACTIONS(735), - [anon_sym_SEMI_AMP] = ACTIONS(737), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(345), + [anon_sym_SEMI_AMP] = ACTIONS(347), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(347), [anon_sym_for] = ACTIONS(241), [anon_sym_select] = ACTIONS(171), [anon_sym_LPAREN_LPAREN] = ACTIONS(173), @@ -26557,172 +26512,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(285), }, [STATE(49)] = { - [sym__statements] = STATE(3713), - [sym__statement] = STATE(3162), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_program_repeat1] = STATE(230), - [aux_sym__statements_repeat1] = STATE(280), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), + [sym__statements] = STATE(3864), + [sym__statement] = STATE(3125), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_program_repeat1] = STATE(212), + [aux_sym__statements_repeat1] = STATE(297), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), [anon_sym_LF] = ACTIONS(747), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_done] = ACTIONS(749), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_fi] = ACTIONS(749), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(647), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), }, [STATE(50)] = { - [sym__statements] = STATE(3630), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3674), + [sym__statement] = STATE(3096), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_program_repeat1] = STATE(229), + [aux_sym__statements_repeat1] = STATE(292), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(751), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_done] = ACTIONS(753), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), + }, + [STATE(51)] = { + [sym__statements] = STATE(3696), + [sym__statement] = STATE(3096), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_program_repeat1] = STATE(229), + [aux_sym__statements_repeat1] = STATE(292), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(751), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_done] = ACTIONS(755), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), + }, + [STATE(52)] = { + [sym__statements] = STATE(3733), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(753), + [anon_sym_RPAREN] = ACTIONS(759), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), @@ -26776,389 +26951,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(51)] = { - [sym__statements] = STATE(3784), - [sym__statement] = STATE(3162), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_program_repeat1] = STATE(230), - [aux_sym__statements_repeat1] = STATE(280), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(747), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_done] = ACTIONS(755), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), - }, - [STATE(52)] = { - [sym__statements] = STATE(3771), - [sym__statement] = STATE(3187), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_program_repeat1] = STATE(213), - [aux_sym__statements_repeat1] = STATE(293), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), + [STATE(53)] = { + [sym__statements] = STATE(3633), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(235), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), + [sym_word] = ACTIONS(7), [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(761), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), - [anon_sym_fi] = ACTIONS(759), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(23), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(43), + [anon_sym_typeset] = ACTIONS(43), + [anon_sym_export] = ACTIONS(43), + [anon_sym_readonly] = ACTIONS(43), + [anon_sym_local] = ACTIONS(43), + [anon_sym_eval] = ACTIONS(43), + [anon_sym_alias] = ACTIONS(43), + [anon_sym_let] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_GT] = ACTIONS(47), + [anon_sym_AMP_GT] = ACTIONS(45), + [anon_sym_AMP_GT_GT] = ACTIONS(47), + [anon_sym_LT_AMP] = ACTIONS(47), + [anon_sym_GT_AMP] = ACTIONS(47), + [anon_sym_GT_PIPE] = ACTIONS(47), + [anon_sym_LT_GT] = ACTIONS(47), + [anon_sym_LT_LT_LT] = ACTIONS(47), + [anon_sym_LT_LT] = ACTIONS(49), + [anon_sym_LT_LT_DASH] = ACTIONS(51), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), - }, - [STATE(53)] = { - [sym__statements] = STATE(3684), - [sym__statement] = STATE(3162), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_program_repeat1] = STATE(230), - [aux_sym__statements_repeat1] = STATE(280), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(747), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_done] = ACTIONS(761), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [aux_sym_brace_expression_token1] = ACTIONS(55), + [sym_number] = ACTIONS(57), + [anon_sym_DOLLAR] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [sym_raw_string] = ACTIONS(57), + [sym_ansi_c_string] = ACTIONS(57), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), + [anon_sym_LT_LPAREN] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(73), + [sym__file_descriptor] = ACTIONS(75), + [sym__backtick_open] = ACTIONS(77), + [sym__dollar_literal] = ACTIONS(79), + [sym__brace_expr_start] = ACTIONS(81), }, [STATE(54)] = { - [sym__statements] = STATE(3736), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3772), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -27217,58 +27172,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(55)] = { - [sym__statements] = STATE(3656), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3787), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -27327,612 +27282,721 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(56)] = { - [sym__statements] = STATE(3787), - [sym__statement] = STATE(3162), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_program_repeat1] = STATE(230), - [aux_sym__statements_repeat1] = STATE(280), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(747), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), + [sym__statements] = STATE(3712), + [sym__statement] = STATE(3096), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_program_repeat1] = STATE(229), + [aux_sym__statements_repeat1] = STATE(292), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(751), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), [anon_sym_done] = ACTIONS(767), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, [STATE(57)] = { - [sym__statements] = STATE(3854), - [sym__statement] = STATE(3162), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_program_repeat1] = STATE(230), - [aux_sym__statements_repeat1] = STATE(280), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(747), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), + [sym__statements] = STATE(3764), + [sym__statement] = STATE(3096), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_program_repeat1] = STATE(229), + [aux_sym__statements_repeat1] = STATE(292), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(751), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), [anon_sym_done] = ACTIONS(769), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, [STATE(58)] = { - [sym__statements] = STATE(3941), - [sym__statement] = STATE(3162), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_program_repeat1] = STATE(230), - [aux_sym__statements_repeat1] = STATE(280), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(747), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), + [sym__statements] = STATE(3728), + [sym__statement] = STATE(3096), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_program_repeat1] = STATE(229), + [aux_sym__statements_repeat1] = STATE(292), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(751), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), [anon_sym_done] = ACTIONS(771), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, [STATE(59)] = { - [sym__statements] = STATE(3901), - [sym__statement] = STATE(3162), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_program_repeat1] = STATE(230), - [aux_sym__statements_repeat1] = STATE(280), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(747), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), + [sym__statements] = STATE(3840), + [sym__statement] = STATE(3096), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_program_repeat1] = STATE(229), + [aux_sym__statements_repeat1] = STATE(292), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(751), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), [anon_sym_done] = ACTIONS(773), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, [STATE(60)] = { - [sym__statements] = STATE(3724), - [sym__statement] = STATE(3162), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_program_repeat1] = STATE(230), - [aux_sym__statements_repeat1] = STATE(280), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(747), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), + [sym__statements] = STATE(3668), + [sym__statement] = STATE(3096), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_program_repeat1] = STATE(229), + [aux_sym__statements_repeat1] = STATE(292), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(751), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), [anon_sym_done] = ACTIONS(775), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, [STATE(61)] = { - [sym__statements] = STATE(3895), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3905), + [sym__statement] = STATE(3096), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_program_repeat1] = STATE(229), + [aux_sym__statements_repeat1] = STATE(292), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(751), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_done] = ACTIONS(777), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), + }, + [STATE(62)] = { + [sym__statements] = STATE(3829), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(777), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), @@ -27986,59 +28050,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(62)] = { - [sym__statements] = STATE(3844), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [STATE(63)] = { + [sym__statements] = STATE(3854), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -28095,386 +28159,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(63)] = { - [sym__statements] = STATE(3595), - [sym__statement] = STATE(3182), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_program_repeat1] = STATE(203), - [aux_sym__statements_repeat1] = STATE(285), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(779), + [STATE(64)] = { + [sym__statement] = STATE(2991), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), + [ts_builtin_sym_end] = ACTIONS(779), + [sym_word] = ACTIONS(7), + [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(23), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(43), + [anon_sym_typeset] = ACTIONS(43), + [anon_sym_export] = ACTIONS(43), + [anon_sym_readonly] = ACTIONS(43), + [anon_sym_local] = ACTIONS(43), + [anon_sym_eval] = ACTIONS(43), + [anon_sym_alias] = ACTIONS(43), + [anon_sym_let] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_GT] = ACTIONS(47), + [anon_sym_AMP_GT] = ACTIONS(45), + [anon_sym_AMP_GT_GT] = ACTIONS(47), + [anon_sym_LT_AMP] = ACTIONS(47), + [anon_sym_GT_AMP] = ACTIONS(47), + [anon_sym_GT_PIPE] = ACTIONS(47), + [anon_sym_LT_GT] = ACTIONS(47), + [anon_sym_LT_LT_LT] = ACTIONS(47), + [anon_sym_LT_LT] = ACTIONS(49), + [anon_sym_LT_LT_DASH] = ACTIONS(51), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(55), + [sym_number] = ACTIONS(57), + [anon_sym_DOLLAR] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [sym_raw_string] = ACTIONS(57), + [sym_ansi_c_string] = ACTIONS(57), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), + [anon_sym_LT_LPAREN] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(73), + [sym__file_descriptor] = ACTIONS(75), + [sym__backtick_open] = ACTIONS(77), + [sym__dollar_literal] = ACTIONS(79), + [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(64)] = { - [sym__statements] = STATE(3760), - [sym__statement] = STATE(3176), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_program_repeat1] = STATE(240), - [aux_sym__statements_repeat1] = STATE(294), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), + [STATE(65)] = { + [sym__statements] = STATE(3646), + [sym__statement] = STATE(3068), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_program_repeat1] = STATE(239), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), [anon_sym_LF] = ACTIONS(781), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(65)] = { - [sym__statements] = STATE(3566), - [sym__statement] = STATE(3182), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_program_repeat1] = STATE(203), - [aux_sym__statements_repeat1] = STATE(285), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(779), + [STATE(66)] = { + [sym__statements] = STATE(3559), + [sym__statement] = STATE(3142), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_program_repeat1] = STATE(222), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(783), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, - [STATE(66)] = { - [sym__statements] = STATE(3647), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_program_repeat1] = STATE(235), + [STATE(67)] = { + [sym__statements] = STATE(3564), + [sym__statement] = STATE(3142), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_program_repeat1] = STATE(222), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(783), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(297), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), + }, + [STATE(68)] = { + [sym__statements] = STATE(3862), + [sym__statement] = STATE(3068), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_program_repeat1] = STATE(239), [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), + [anon_sym_LF] = ACTIONS(781), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(461), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), + }, + [STATE(69)] = { + [sym__statements] = STATE(3637), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(235), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -28531,59 +28813,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(67)] = { - [sym__statements] = STATE(3768), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [STATE(70)] = { + [sym__statements] = STATE(3815), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), + [aux_sym__statements_repeat1] = STATE(284), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [anon_sym_LF] = ACTIONS(785), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), + }, + [STATE(71)] = { + [sym__statements] = STATE(3733), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -28640,59 +29031,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(68)] = { - [sym__statement] = STATE(3050), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), - [ts_builtin_sym_end] = ACTIONS(783), + [STATE(72)] = { + [sym__statements] = STATE(3752), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(235), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(745), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -28749,59 +29140,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(69)] = { - [sym__statements] = STATE(3648), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [STATE(73)] = { + [sym__statements] = STATE(3541), + [sym__statement] = STATE(3142), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_program_repeat1] = STATE(222), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(783), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(297), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), + }, + [STATE(74)] = { + [sym__statements] = STATE(3527), + [sym__statement] = STATE(3142), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_program_repeat1] = STATE(222), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(783), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(297), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), + }, + [STATE(75)] = { + [sym__statements] = STATE(3785), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -28858,168 +29467,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(70)] = { - [sym__statements] = STATE(3644), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), - [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), - }, - [STATE(71)] = { - [sym__statements] = STATE(3656), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [STATE(76)] = { + [sym__statements] = STATE(3799), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -29076,495 +29576,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(72)] = { - [sym__statements] = STATE(3657), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), - [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(33), - [anon_sym_break] = ACTIONS(35), - [anon_sym_continue] = ACTIONS(37), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(43), - [anon_sym_typeset] = ACTIONS(43), - [anon_sym_export] = ACTIONS(43), - [anon_sym_readonly] = ACTIONS(43), - [anon_sym_local] = ACTIONS(43), - [anon_sym_eval] = ACTIONS(43), - [anon_sym_alias] = ACTIONS(43), - [anon_sym_let] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(45), - [anon_sym_GT_GT] = ACTIONS(47), - [anon_sym_AMP_GT] = ACTIONS(45), - [anon_sym_AMP_GT_GT] = ACTIONS(47), - [anon_sym_LT_AMP] = ACTIONS(47), - [anon_sym_GT_AMP] = ACTIONS(47), - [anon_sym_GT_PIPE] = ACTIONS(47), - [anon_sym_LT_GT] = ACTIONS(47), - [anon_sym_LT_LT_LT] = ACTIONS(47), - [anon_sym_LT_LT] = ACTIONS(49), - [anon_sym_LT_LT_DASH] = ACTIONS(51), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(55), - [sym_number] = ACTIONS(57), - [anon_sym_DOLLAR] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [sym_raw_string] = ACTIONS(57), - [sym_ansi_c_string] = ACTIONS(57), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), - [anon_sym_LT_LPAREN] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(73), - [sym__file_descriptor] = ACTIONS(75), - [sym__backtick_open] = ACTIONS(77), - [sym__dollar_literal] = ACTIONS(79), - [sym__brace_expr_start] = ACTIONS(81), - }, - [STATE(73)] = { - [sym__statements] = STATE(3581), - [sym__statement] = STATE(3182), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_program_repeat1] = STATE(203), - [aux_sym__statements_repeat1] = STATE(285), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(779), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), - }, - [STATE(74)] = { - [sym__statements] = STATE(3582), - [sym__statement] = STATE(3182), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_program_repeat1] = STATE(203), - [aux_sym__statements_repeat1] = STATE(285), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(779), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), - }, - [STATE(75)] = { - [sym__statements] = STATE(3696), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), - [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(33), - [anon_sym_break] = ACTIONS(35), - [anon_sym_continue] = ACTIONS(37), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(43), - [anon_sym_typeset] = ACTIONS(43), - [anon_sym_export] = ACTIONS(43), - [anon_sym_readonly] = ACTIONS(43), - [anon_sym_local] = ACTIONS(43), - [anon_sym_eval] = ACTIONS(43), - [anon_sym_alias] = ACTIONS(43), - [anon_sym_let] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(45), - [anon_sym_GT_GT] = ACTIONS(47), - [anon_sym_AMP_GT] = ACTIONS(45), - [anon_sym_AMP_GT_GT] = ACTIONS(47), - [anon_sym_LT_AMP] = ACTIONS(47), - [anon_sym_GT_AMP] = ACTIONS(47), - [anon_sym_GT_PIPE] = ACTIONS(47), - [anon_sym_LT_GT] = ACTIONS(47), - [anon_sym_LT_LT_LT] = ACTIONS(47), - [anon_sym_LT_LT] = ACTIONS(49), - [anon_sym_LT_LT_DASH] = ACTIONS(51), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(55), - [sym_number] = ACTIONS(57), - [anon_sym_DOLLAR] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [sym_raw_string] = ACTIONS(57), - [sym_ansi_c_string] = ACTIONS(57), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), - [anon_sym_LT_LPAREN] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(73), - [sym__file_descriptor] = ACTIONS(75), - [sym__backtick_open] = ACTIONS(77), - [sym__dollar_literal] = ACTIONS(79), - [sym__brace_expr_start] = ACTIONS(81), - }, - [STATE(76)] = { - [sym__statements] = STATE(3710), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [STATE(77)] = { + [sym__statements] = STATE(3592), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -29621,277 +29685,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(77)] = { - [sym__statements] = STATE(3757), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), - [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), - }, [STATE(78)] = { - [sym__statements] = STATE(3625), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3730), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(79)] = { - [sym__statements] = STATE(3628), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3742), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -29949,58 +29904,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(80)] = { - [sym__statements] = STATE(3629), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3743), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -30058,276 +30013,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(81)] = { - [sym__statements] = STATE(3589), - [sym__statement] = STATE(3182), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_program_repeat1] = STATE(203), - [aux_sym__statements_repeat1] = STATE(285), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(779), + [sym__statements] = STATE(3518), + [sym__statement] = STATE(3142), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_program_repeat1] = STATE(222), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(783), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, [STATE(82)] = { - [sym__statements] = STATE(3555), - [sym__statement] = STATE(3182), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_program_repeat1] = STATE(203), - [aux_sym__statements_repeat1] = STATE(285), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(779), + [sym__statements] = STATE(3519), + [sym__statement] = STATE(3142), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_program_repeat1] = STATE(222), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(783), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, [STATE(83)] = { - [sym__statements] = STATE(3650), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3801), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -30385,58 +30340,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(84)] = { - [sym__statements] = STATE(3654), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3814), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -30494,167 +30449,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(85)] = { - [sym__statements] = STATE(3734), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3782), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(86)] = { - [sym__statements] = STATE(3736), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3787), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -30712,58 +30667,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(87)] = { - [sym__statements] = STATE(3737), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3793), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -30821,276 +30776,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(88)] = { - [sym__statements] = STATE(3576), - [sym__statement] = STATE(3182), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_program_repeat1] = STATE(203), - [aux_sym__statements_repeat1] = STATE(285), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(779), + [sym__statements] = STATE(3552), + [sym__statement] = STATE(3142), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_program_repeat1] = STATE(222), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(783), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, [STATE(89)] = { - [sym__statements] = STATE(3577), - [sym__statement] = STATE(3182), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_program_repeat1] = STATE(203), - [aux_sym__statements_repeat1] = STATE(285), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(779), + [sym__statements] = STATE(3557), + [sym__statement] = STATE(3142), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_program_repeat1] = STATE(222), + [aux_sym__statements_repeat1] = STATE(281), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(783), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, [STATE(90)] = { - [sym__statements] = STATE(3753), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3630), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -31148,58 +31103,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(91)] = { - [sym__statements] = STATE(3756), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3726), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -31257,167 +31212,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(92)] = { - [sym__statements] = STATE(3828), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3657), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(93)] = { - [sym__statements] = STATE(3830), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3662), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -31475,58 +31430,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(94)] = { - [sym__statements] = STATE(3831), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3663), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -31584,58 +31539,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(95)] = { - [sym__statements] = STATE(3838), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3682), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -31693,58 +31648,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(96)] = { - [sym__statements] = STATE(3841), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3690), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -31802,167 +31757,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(97)] = { - [sym__statements] = STATE(3894), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3771), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(98)] = { - [sym__statements] = STATE(3895), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3772), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -32020,58 +31975,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(99)] = { - [sym__statements] = STATE(3898), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3780), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -32129,58 +32084,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(100)] = { - [sym__statements] = STATE(3863), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3798), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -32238,58 +32193,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(101)] = { - [sym__statements] = STATE(3649), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3802), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -32347,167 +32302,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(102)] = { - [sym__statements] = STATE(3843), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3806), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(103)] = { - [sym__statements] = STATE(3876), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3861), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -32565,58 +32520,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(104)] = { - [sym__statements] = STATE(3636), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3686), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -32674,58 +32629,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(105)] = { - [sym__statements] = STATE(3679), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3708), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -32783,58 +32738,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(106)] = { - [sym__statements] = STATE(3655), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3748), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -32892,167 +32847,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(107)] = { - [sym__statements] = STATE(3759), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3626), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(108)] = { - [sym__statements] = STATE(3779), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3667), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -33110,58 +33065,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(109)] = { - [sym__statements] = STATE(3782), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3692), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -33219,58 +33174,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(110)] = { - [sym__statements] = STATE(3662), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3621), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -33328,58 +33283,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(111)] = { - [sym__statements] = STATE(3699), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3656), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -33437,167 +33392,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(112)] = { - [sym__statements] = STATE(3856), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3695), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(113)] = { - [sym__statements] = STATE(3902), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3744), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -33655,58 +33610,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(114)] = { - [sym__statements] = STATE(3900), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3762), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -33764,167 +33719,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(115)] = { - [sym__statements] = STATE(3869), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3608), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(116)] = { - [sym__statements] = STATE(3687), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3789), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -33982,58 +33937,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(117)] = { - [sym__statements] = STATE(3729), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3878), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -34091,167 +34046,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(118)] = { - [sym__statements] = STATE(3675), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3613), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(119)] = { - [sym__statements] = STATE(3751), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3631), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -34309,58 +34264,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(120)] = { - [sym__statements] = STATE(3788), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3645), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -34418,167 +34373,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(121)] = { - [sym__statements] = STATE(3723), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3751), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(122)] = { - [sym__statements] = STATE(3755), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3783), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -34636,58 +34591,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(123)] = { - [sym__statements] = STATE(3762), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3809), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -34745,167 +34700,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(124)] = { - [sym__statements] = STATE(3847), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3582), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(125)] = { - [sym__statements] = STATE(3865), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3590), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -34963,58 +34918,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(126)] = { - [sym__statements] = STATE(3881), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3597), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -35072,167 +35027,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(127)] = { - [sym__statements] = STATE(3766), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3641), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(128)] = { - [sym__statements] = STATE(3668), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3651), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -35290,58 +35245,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(129)] = { - [sym__statements] = STATE(3818), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3654), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -35399,167 +35354,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(130)] = { - [sym__statements] = STATE(3719), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3689), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(131)] = { - [sym__statements] = STATE(3792), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3697), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -35617,58 +35572,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(132)] = { - [sym__statements] = STATE(3820), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3702), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -35726,167 +35681,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(133)] = { - [sym__statements] = STATE(3714), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3738), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(134)] = { - [sym__statements] = STATE(3741), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3747), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -35944,58 +35899,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(135)] = { - [sym__statements] = STATE(3767), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3750), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -36053,167 +36008,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(136)] = { - [sym__statements] = STATE(3917), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3778), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(137)] = { - [sym__statements] = STATE(3659), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3791), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -36271,58 +36226,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(138)] = { - [sym__statements] = STATE(3630), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3633), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -36380,167 +36335,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(139)] = { - [sym__statements] = STATE(3747), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3822), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(140)] = { - [sym__statements] = STATE(3809), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3839), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -36598,58 +36553,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(141)] = { - [sym__statements] = STATE(3822), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3844), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -36707,167 +36662,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(142)] = { - [sym__statements] = STATE(3938), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3850), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(143)] = { - [sym__statements] = STATE(3643), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3874), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -36925,58 +36880,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(144)] = { - [sym__statements] = STATE(3646), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3773), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -37034,167 +36989,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(145)] = { - [sym__statements] = STATE(3685), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3589), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(146)] = { - [sym__statements] = STATE(3701), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3711), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -37252,58 +37207,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(147)] = { - [sym__statements] = STATE(3708), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3729), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -37361,167 +37316,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(148)] = { - [sym__statements] = STATE(3754), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3665), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(149)] = { - [sym__statements] = STATE(3765), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3834), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -37579,58 +37534,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(150)] = { - [sym__statements] = STATE(3769), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3580), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -37688,167 +37643,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(151)] = { - [sym__statements] = STATE(3807), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3684), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(152)] = { - [sym__statements] = STATE(3819), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3727), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -37906,58 +37861,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(153)] = { - [sym__statements] = STATE(3825), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3734), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -38015,167 +37970,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(154)] = { - [sym__statements] = STATE(3851), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3830), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(155)] = { - [sym__statements] = STATE(3864), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3739), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -38233,58 +38188,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(156)] = { - [sym__statements] = STATE(3872), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3585), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -38342,167 +38297,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(157)] = { - [sym__statements] = STATE(3907), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3841), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(158)] = { - [sym__statements] = STATE(3921), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3618), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -38560,58 +38515,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(159)] = { - [sym__statements] = STATE(3638), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3624), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -38669,167 +38624,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(160)] = { - [sym__statements] = STATE(3671), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3756), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(161)] = { - [sym__statements] = STATE(3749), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3774), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -38887,58 +38842,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(162)] = { - [sym__statements] = STATE(3939), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3794), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -38996,167 +38951,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(163)] = { - [sym__statements] = STATE(3718), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3588), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(164)] = { - [sym__statements] = STATE(3836), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3604), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -39214,58 +39169,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(165)] = { - [sym__statements] = STATE(3633), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3610), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -39323,167 +39278,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(166)] = { - [sym__statements] = STATE(3858), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3648), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(167)] = { - [sym__statements] = STATE(3632), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3666), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -39541,58 +39496,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(168)] = { - [sym__statements] = STATE(3652), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3670), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -39650,167 +39605,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(169)] = { - [sym__statements] = STATE(3772), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3700), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(170)] = { - [sym__statements] = STATE(3815), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3716), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -39868,58 +39823,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(171)] = { - [sym__statements] = STATE(3833), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3721), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -39977,167 +39932,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(172)] = { - [sym__statements] = STATE(3919), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3757), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(173)] = { - [sym__statements] = STATE(3645), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3781), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -40195,58 +40150,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(174)] = { - [sym__statements] = STATE(3653), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3784), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -40304,167 +40259,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(175)] = { - [sym__statements] = STATE(3726), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3832), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(176)] = { - [sym__statements] = STATE(3748), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3852), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -40522,58 +40477,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(177)] = { - [sym__statements] = STATE(3764), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3860), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -40631,494 +40586,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(178)] = { - [sym__statements] = STATE(3823), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [sym__statements] = STATE(3619), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(179)] = { - [sym__statements] = STATE(3680), - [sym__statement] = STATE(3176), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_program_repeat1] = STATE(240), - [aux_sym__statements_repeat1] = STATE(294), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), - [anon_sym_LF] = ACTIONS(781), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), - }, - [STATE(180)] = { - [sym__statements] = STATE(3855), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [sym__statements] = STATE(3607), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), - [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(33), - [anon_sym_break] = ACTIONS(35), - [anon_sym_continue] = ACTIONS(37), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(43), - [anon_sym_typeset] = ACTIONS(43), - [anon_sym_export] = ACTIONS(43), - [anon_sym_readonly] = ACTIONS(43), - [anon_sym_local] = ACTIONS(43), - [anon_sym_eval] = ACTIONS(43), - [anon_sym_alias] = ACTIONS(43), - [anon_sym_let] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(45), - [anon_sym_GT_GT] = ACTIONS(47), - [anon_sym_AMP_GT] = ACTIONS(45), - [anon_sym_AMP_GT_GT] = ACTIONS(47), - [anon_sym_LT_AMP] = ACTIONS(47), - [anon_sym_GT_AMP] = ACTIONS(47), - [anon_sym_GT_PIPE] = ACTIONS(47), - [anon_sym_LT_GT] = ACTIONS(47), - [anon_sym_LT_LT_LT] = ACTIONS(47), - [anon_sym_LT_LT] = ACTIONS(49), - [anon_sym_LT_LT_DASH] = ACTIONS(51), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(55), - [sym_number] = ACTIONS(57), - [anon_sym_DOLLAR] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [sym_raw_string] = ACTIONS(57), - [sym_ansi_c_string] = ACTIONS(57), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), - [anon_sym_LT_LPAREN] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(73), - [sym__file_descriptor] = ACTIONS(75), - [sym__backtick_open] = ACTIONS(77), - [sym__dollar_literal] = ACTIONS(79), - [sym__brace_expr_start] = ACTIONS(81), - }, - [STATE(181)] = { - [sym__statements] = STATE(3905), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), - [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), - }, - [STATE(182)] = { - [sym__statements] = STATE(3627), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -41175,59 +40803,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(183)] = { - [sym__statements] = STATE(3635), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [STATE(180)] = { + [sym__statements] = STATE(3661), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -41284,168 +40912,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(184)] = { - [sym__statements] = STATE(3658), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [STATE(181)] = { + [sym__statements] = STATE(3908), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, - [STATE(185)] = { - [sym__statements] = STATE(3669), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [STATE(182)] = { + [sym__statements] = STATE(3649), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -41502,59 +41130,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(186)] = { - [sym__statements] = STATE(3672), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [STATE(183)] = { + [sym__statements] = STATE(3669), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -41611,168 +41239,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(187)] = { - [sym__statements] = STATE(3697), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [STATE(184)] = { + [sym__statements] = STATE(3763), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, - [STATE(188)] = { - [sym__statements] = STATE(3712), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [STATE(185)] = { + [sym__statements] = STATE(3807), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -41829,277 +41457,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(189)] = { - [sym__statements] = STATE(3716), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), - [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(33), - [anon_sym_break] = ACTIONS(35), - [anon_sym_continue] = ACTIONS(37), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(43), - [anon_sym_typeset] = ACTIONS(43), - [anon_sym_export] = ACTIONS(43), - [anon_sym_readonly] = ACTIONS(43), - [anon_sym_local] = ACTIONS(43), - [anon_sym_eval] = ACTIONS(43), - [anon_sym_alias] = ACTIONS(43), - [anon_sym_let] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(45), - [anon_sym_GT_GT] = ACTIONS(47), - [anon_sym_AMP_GT] = ACTIONS(45), - [anon_sym_AMP_GT_GT] = ACTIONS(47), - [anon_sym_LT_AMP] = ACTIONS(47), - [anon_sym_GT_AMP] = ACTIONS(47), - [anon_sym_GT_PIPE] = ACTIONS(47), - [anon_sym_LT_GT] = ACTIONS(47), - [anon_sym_LT_LT_LT] = ACTIONS(47), - [anon_sym_LT_LT] = ACTIONS(49), - [anon_sym_LT_LT_DASH] = ACTIONS(51), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(55), - [sym_number] = ACTIONS(57), - [anon_sym_DOLLAR] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [sym_raw_string] = ACTIONS(57), - [sym_ansi_c_string] = ACTIONS(57), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), - [anon_sym_LT_LPAREN] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(71), + [STATE(186)] = { + [sym__statements] = STATE(3632), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), + [aux_sym__statements_repeat1] = STATE(284), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [anon_sym_LF] = ACTIONS(785), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(73), - [sym__file_descriptor] = ACTIONS(75), - [sym__backtick_open] = ACTIONS(77), - [sym__dollar_literal] = ACTIONS(79), - [sym__brace_expr_start] = ACTIONS(81), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, - [STATE(190)] = { - [sym__statements] = STATE(3744), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [STATE(187)] = { + [sym__statements] = STATE(3593), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, - [STATE(191)] = { - [sym__statements] = STATE(3758), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [STATE(188)] = { + [sym__statements] = STATE(3611), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -42156,59 +41784,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(192)] = { - [sym__statements] = STATE(3763), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [STATE(189)] = { + [sym__statements] = STATE(3617), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -42265,168 +41893,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(193)] = { - [sym__statements] = STATE(3781), - [sym__statement] = STATE(3143), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(238), + [STATE(190)] = { + [sym__statements] = STATE(3638), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), [aux_sym__statements_repeat1] = STATE(284), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), [anon_sym_LF] = ACTIONS(785), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, - [STATE(194)] = { - [sym__statements] = STATE(3789), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [STATE(191)] = { + [sym__statements] = STATE(3658), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -42483,386 +42111,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(195)] = { - [sym__statements] = STATE(3832), - [sym__statement] = STATE(3176), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_program_repeat1] = STATE(240), - [aux_sym__statements_repeat1] = STATE(294), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), - [anon_sym_LF] = ACTIONS(781), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), - }, - [STATE(196)] = { - [sym__statements] = STATE(3886), - [sym__statement] = STATE(3176), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_program_repeat1] = STATE(240), - [aux_sym__statements_repeat1] = STATE(294), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), - [anon_sym_LF] = ACTIONS(781), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), - }, - [STATE(197)] = { - [sym__statements] = STATE(3631), - [sym__statement] = STATE(3176), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_program_repeat1] = STATE(240), - [aux_sym__statements_repeat1] = STATE(294), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), - [anon_sym_LF] = ACTIONS(781), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), - }, - [STATE(198)] = { - [sym__statements] = STATE(3670), - [sym__statement] = STATE(3056), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), + [STATE(192)] = { + [sym__statements] = STATE(3664), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), [aux_sym_program_repeat1] = STATE(235), - [aux_sym__statements_repeat1] = STATE(290), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(751), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -42919,1028 +42220,1577 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(199)] = { - [sym__statement] = STATE(3332), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3298), - [sym_compound_statement] = STATE(3298), - [sym__body] = STATE(3335), - [sym_do_group] = STATE(3283), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [STATE(193)] = { + [sym__statements] = STATE(3694), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), + [aux_sym__statements_repeat1] = STATE(284), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [anon_sym_LF] = ACTIONS(785), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, - [STATE(200)] = { - [sym__statement] = STATE(3299), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2976), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), + [STATE(194)] = { + [sym__statements] = STATE(3710), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(235), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), + [sym_word] = ACTIONS(7), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(23), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(43), + [anon_sym_typeset] = ACTIONS(43), + [anon_sym_export] = ACTIONS(43), + [anon_sym_readonly] = ACTIONS(43), + [anon_sym_local] = ACTIONS(43), + [anon_sym_eval] = ACTIONS(43), + [anon_sym_alias] = ACTIONS(43), + [anon_sym_let] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_GT] = ACTIONS(47), + [anon_sym_AMP_GT] = ACTIONS(45), + [anon_sym_AMP_GT_GT] = ACTIONS(47), + [anon_sym_LT_AMP] = ACTIONS(47), + [anon_sym_GT_AMP] = ACTIONS(47), + [anon_sym_GT_PIPE] = ACTIONS(47), + [anon_sym_LT_GT] = ACTIONS(47), + [anon_sym_LT_LT_LT] = ACTIONS(47), + [anon_sym_LT_LT] = ACTIONS(49), + [anon_sym_LT_LT_DASH] = ACTIONS(51), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(55), + [sym_number] = ACTIONS(57), + [anon_sym_DOLLAR] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [sym_raw_string] = ACTIONS(57), + [sym_ansi_c_string] = ACTIONS(57), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), + [anon_sym_LT_LPAREN] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(73), + [sym__file_descriptor] = ACTIONS(75), + [sym__backtick_open] = ACTIONS(77), + [sym__dollar_literal] = ACTIONS(79), + [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(201)] = { - [sym__statement] = STATE(3347), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2984), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), + [STATE(195)] = { + [sym__statements] = STATE(3717), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(235), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), + [sym_word] = ACTIONS(7), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(23), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(43), + [anon_sym_typeset] = ACTIONS(43), + [anon_sym_export] = ACTIONS(43), + [anon_sym_readonly] = ACTIONS(43), + [anon_sym_local] = ACTIONS(43), + [anon_sym_eval] = ACTIONS(43), + [anon_sym_alias] = ACTIONS(43), + [anon_sym_let] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_GT] = ACTIONS(47), + [anon_sym_AMP_GT] = ACTIONS(45), + [anon_sym_AMP_GT_GT] = ACTIONS(47), + [anon_sym_LT_AMP] = ACTIONS(47), + [anon_sym_GT_AMP] = ACTIONS(47), + [anon_sym_GT_PIPE] = ACTIONS(47), + [anon_sym_LT_GT] = ACTIONS(47), + [anon_sym_LT_LT_LT] = ACTIONS(47), + [anon_sym_LT_LT] = ACTIONS(49), + [anon_sym_LT_LT_DASH] = ACTIONS(51), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(55), + [sym_number] = ACTIONS(57), + [anon_sym_DOLLAR] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [sym_raw_string] = ACTIONS(57), + [sym_ansi_c_string] = ACTIONS(57), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), + [anon_sym_LT_LPAREN] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(73), + [sym__file_descriptor] = ACTIONS(75), + [sym__backtick_open] = ACTIONS(77), + [sym__dollar_literal] = ACTIONS(79), + [sym__brace_expr_start] = ACTIONS(81), + }, + [STATE(196)] = { + [sym__statements] = STATE(3740), + [sym__statement] = STATE(3100), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(232), + [aux_sym__statements_repeat1] = STATE(284), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [anon_sym_LF] = ACTIONS(785), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, - [STATE(202)] = { - [sym__statement] = STATE(3352), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2979), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), + [STATE(197)] = { + [sym__statements] = STATE(3755), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(235), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), + [sym_word] = ACTIONS(7), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(23), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(43), + [anon_sym_typeset] = ACTIONS(43), + [anon_sym_export] = ACTIONS(43), + [anon_sym_readonly] = ACTIONS(43), + [anon_sym_local] = ACTIONS(43), + [anon_sym_eval] = ACTIONS(43), + [anon_sym_alias] = ACTIONS(43), + [anon_sym_let] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_GT] = ACTIONS(47), + [anon_sym_AMP_GT] = ACTIONS(45), + [anon_sym_AMP_GT_GT] = ACTIONS(47), + [anon_sym_LT_AMP] = ACTIONS(47), + [anon_sym_GT_AMP] = ACTIONS(47), + [anon_sym_GT_PIPE] = ACTIONS(47), + [anon_sym_LT_GT] = ACTIONS(47), + [anon_sym_LT_LT_LT] = ACTIONS(47), + [anon_sym_LT_LT] = ACTIONS(49), + [anon_sym_LT_LT_DASH] = ACTIONS(51), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(55), + [sym_number] = ACTIONS(57), + [anon_sym_DOLLAR] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [sym_raw_string] = ACTIONS(57), + [sym_ansi_c_string] = ACTIONS(57), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), + [anon_sym_LT_LPAREN] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(73), + [sym__file_descriptor] = ACTIONS(75), + [sym__backtick_open] = ACTIONS(77), + [sym__dollar_literal] = ACTIONS(79), + [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(203)] = { - [sym__statement] = STATE(3223), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym__statements_repeat1] = STATE(278), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(745), + [STATE(198)] = { + [sym__statements] = STATE(3804), + [sym__statement] = STATE(3068), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_program_repeat1] = STATE(239), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), + [anon_sym_LF] = ACTIONS(781), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(204)] = { - [sym__statement] = STATE(3333), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2966), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), + [STATE(199)] = { + [sym__statements] = STATE(3869), + [sym__statement] = STATE(3068), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_program_repeat1] = STATE(239), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), + [anon_sym_LF] = ACTIONS(781), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(205)] = { - [sym__statement] = STATE(3338), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2976), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), + [STATE(200)] = { + [sym__statements] = STATE(3591), + [sym__statement] = STATE(3068), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_program_repeat1] = STATE(239), + [aux_sym__statements_repeat1] = STATE(290), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), + [anon_sym_LF] = ACTIONS(781), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(206)] = { - [sym__statement] = STATE(3342), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2984), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), + [STATE(201)] = { + [sym__statements] = STATE(3795), + [sym__statement] = STATE(2990), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(235), + [aux_sym__statements_repeat1] = STATE(295), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), + [sym_word] = ACTIONS(7), + [anon_sym_LF] = ACTIONS(757), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(23), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(43), + [anon_sym_typeset] = ACTIONS(43), + [anon_sym_export] = ACTIONS(43), + [anon_sym_readonly] = ACTIONS(43), + [anon_sym_local] = ACTIONS(43), + [anon_sym_eval] = ACTIONS(43), + [anon_sym_alias] = ACTIONS(43), + [anon_sym_let] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_GT] = ACTIONS(47), + [anon_sym_AMP_GT] = ACTIONS(45), + [anon_sym_AMP_GT_GT] = ACTIONS(47), + [anon_sym_LT_AMP] = ACTIONS(47), + [anon_sym_GT_AMP] = ACTIONS(47), + [anon_sym_GT_PIPE] = ACTIONS(47), + [anon_sym_LT_GT] = ACTIONS(47), + [anon_sym_LT_LT_LT] = ACTIONS(47), + [anon_sym_LT_LT] = ACTIONS(49), + [anon_sym_LT_LT_DASH] = ACTIONS(51), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(55), + [sym_number] = ACTIONS(57), + [anon_sym_DOLLAR] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [sym_raw_string] = ACTIONS(57), + [sym_ansi_c_string] = ACTIONS(57), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), + [anon_sym_LT_LPAREN] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(73), + [sym__file_descriptor] = ACTIONS(75), + [sym__backtick_open] = ACTIONS(77), + [sym__dollar_literal] = ACTIONS(79), + [sym__brace_expr_start] = ACTIONS(81), + }, + [STATE(202)] = { + [sym__statement] = STATE(3297), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3273), + [sym_compound_statement] = STATE(3273), + [sym__body] = STATE(3300), + [sym_do_group] = STATE(3298), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), [anon_sym_do] = ACTIONS(371), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), + }, + [STATE(203)] = { + [sym__statement] = STATE(3189), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2927), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, - [STATE(207)] = { - [sym__statement] = STATE(3344), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2979), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), + [STATE(204)] = { + [sym__statement] = STATE(3193), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2921), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, - [STATE(208)] = { - [sym__statement] = STATE(3046), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym__statements_repeat1] = STATE(282), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), + [STATE(205)] = { + [sym__statement] = STATE(3196), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2929), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(297), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), + }, + [STATE(206)] = { + [sym__statement] = STATE(3198), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2910), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_do] = ACTIONS(295), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(297), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), + }, + [STATE(207)] = { + [sym__statement] = STATE(2992), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym__statements_repeat1] = STATE(296), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(11), @@ -43999,62 +43849,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(137), [sym__brace_expr_start] = ACTIONS(139), }, - [STATE(209)] = { - [sym__statement] = STATE(3216), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2966), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), + [STATE(208)] = { + [sym__statement] = STATE(3113), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2927), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(95), @@ -44107,62 +43957,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(137), [sym__brace_expr_start] = ACTIONS(139), }, - [STATE(210)] = { - [sym__statement] = STATE(3155), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2976), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), + [STATE(209)] = { + [sym__statement] = STATE(3115), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2921), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(95), @@ -44215,62 +44065,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(137), [sym__brace_expr_start] = ACTIONS(139), }, - [STATE(211)] = { - [sym__statement] = STATE(3171), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2984), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), + [STATE(210)] = { + [sym__statement] = STATE(3117), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2929), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(95), @@ -44323,62 +44173,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(137), [sym__brace_expr_start] = ACTIONS(139), }, - [STATE(212)] = { - [sym__statement] = STATE(3180), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2979), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), + [STATE(211)] = { + [sym__statement] = STATE(3118), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2910), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(95), @@ -44431,1034 +44281,1034 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(137), [sym__brace_expr_start] = ACTIONS(139), }, - [STATE(213)] = { - [sym__statement] = STATE(3195), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym__statements_repeat1] = STATE(283), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), + [STATE(212)] = { + [sym__statement] = STATE(3168), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym__statements_repeat1] = STATE(298), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(647), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), + }, + [STATE(213)] = { + [sym__statement] = STATE(3285), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3302), + [sym_compound_statement] = STATE(3302), + [sym__body] = STATE(3315), + [sym_do_group] = STATE(3283), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_do] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, [STATE(214)] = { - [sym__statement] = STATE(3312), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3318), - [sym_compound_statement] = STATE(3318), - [sym__body] = STATE(3334), - [sym_do_group] = STATE(3323), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_do] = ACTIONS(301), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [sym__statement] = STATE(3288), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3302), + [sym_compound_statement] = STATE(3302), + [sym__body] = STATE(3194), + [sym_do_group] = STATE(3283), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_do] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, [STATE(215)] = { - [sym__statement] = STATE(3320), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3318), - [sym_compound_statement] = STATE(3318), - [sym__body] = STATE(3339), - [sym_do_group] = STATE(3323), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_do] = ACTIONS(301), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [sym__statement] = STATE(3291), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3302), + [sym_compound_statement] = STATE(3302), + [sym__body] = STATE(3197), + [sym_do_group] = STATE(3283), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_do] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, [STATE(216)] = { - [sym__statement] = STATE(3322), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3318), - [sym_compound_statement] = STATE(3318), - [sym__body] = STATE(3343), - [sym_do_group] = STATE(3323), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_do] = ACTIONS(301), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [sym__statement] = STATE(3293), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3302), + [sym_compound_statement] = STATE(3302), + [sym__body] = STATE(3199), + [sym_do_group] = STATE(3283), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_do] = ACTIONS(561), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, [STATE(217)] = { - [sym__statement] = STATE(3324), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3318), - [sym_compound_statement] = STATE(3318), - [sym__body] = STATE(3345), - [sym_do_group] = STATE(3323), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_do] = ACTIONS(301), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), - }, - [STATE(218)] = { - [sym__statement] = STATE(3311), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2966), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), + [sym__statement] = STATE(3228), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2927), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(647), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), }, - [STATE(219)] = { - [sym__statement] = STATE(3305), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2966), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), + [STATE(218)] = { + [sym__statement] = STATE(3292), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2921), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(647), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), }, - [STATE(220)] = { - [sym__statement] = STATE(3315), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2984), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), + [STATE(219)] = { + [sym__statement] = STATE(3301), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2929), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(647), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), }, - [STATE(221)] = { - [sym__statement] = STATE(3319), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2979), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), + [STATE(220)] = { + [sym__statement] = STATE(3252), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2910), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(647), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), }, - [STATE(222)] = { - [sym__statement] = STATE(3128), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3113), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [STATE(221)] = { + [sym__statement] = STATE(3051), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3043), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(169), @@ -45511,62 +45361,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(225), [sym__brace_expr_start] = ACTIONS(227), }, + [STATE(222)] = { + [sym__statement] = STATE(3069), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym__statements_repeat1] = STATE(299), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(745), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(297), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), + }, [STATE(223)] = { - [sym__statement] = STATE(3129), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3121), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [sym__statement] = STATE(3024), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3041), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(169), @@ -45620,61 +45578,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(227), }, [STATE(224)] = { - [sym__statement] = STATE(3131), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3095), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [sym__statement] = STATE(3012), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3015), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(169), @@ -45728,169 +45686,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(227), }, [STATE(225)] = { - [sym__statement] = STATE(3132), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3077), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), - [sym_word] = ACTIONS(147), - [sym_shebang] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_for] = ACTIONS(169), - [anon_sym_select] = ACTIONS(171), - [anon_sym_LPAREN_LPAREN] = ACTIONS(173), - [anon_sym_while] = ACTIONS(175), - [anon_sym_until] = ACTIONS(177), - [anon_sym_return] = ACTIONS(179), - [anon_sym_break] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_function] = ACTIONS(185), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(189), - [anon_sym_typeset] = ACTIONS(189), - [anon_sym_export] = ACTIONS(189), - [anon_sym_readonly] = ACTIONS(189), - [anon_sym_local] = ACTIONS(189), - [anon_sym_eval] = ACTIONS(189), - [anon_sym_alias] = ACTIONS(189), - [anon_sym_let] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(193), - [anon_sym_AMP_GT] = ACTIONS(191), - [anon_sym_AMP_GT_GT] = ACTIONS(193), - [anon_sym_LT_AMP] = ACTIONS(193), - [anon_sym_GT_AMP] = ACTIONS(193), - [anon_sym_GT_PIPE] = ACTIONS(193), - [anon_sym_LT_GT] = ACTIONS(193), - [anon_sym_LT_LT_LT] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_LT_LT_DASH] = ACTIONS(197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(199), - [aux_sym_brace_expression_token1] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [sym_raw_string] = ACTIONS(203), - [sym_ansi_c_string] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(219), - [sym__file_descriptor] = ACTIONS(221), - [sym__backtick_open] = ACTIONS(223), - [sym__dollar_literal] = ACTIONS(225), - [sym__brace_expr_start] = ACTIONS(227), - }, - [STATE(226)] = { - [sym__statement] = STATE(3169), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3113), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [sym__statement] = STATE(3065), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3043), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(241), @@ -45943,62 +45793,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(227)] = { - [sym__statement] = STATE(3197), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3121), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [STATE(226)] = { + [sym__statement] = STATE(3077), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3007), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(241), @@ -46051,62 +45901,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(228)] = { - [sym__statement] = STATE(3146), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3095), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [STATE(227)] = { + [sym__statement] = STATE(3089), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3041), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(241), @@ -46159,62 +46009,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(229)] = { - [sym__statement] = STATE(3173), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3059), - [sym_compound_statement] = STATE(3059), - [sym__body] = STATE(3077), - [sym_do_group] = STATE(3130), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [STATE(228)] = { + [sym__statement] = STATE(3094), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3015), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(155), [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_do] = ACTIONS(703), + [anon_sym_do] = ACTIONS(709), [anon_sym_if] = ACTIONS(159), [anon_sym_case] = ACTIONS(161), [anon_sym_for] = ACTIONS(241), @@ -46267,170 +46117,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(230)] = { - [sym__statement] = STATE(3212), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym__statements_repeat1] = STATE(296), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), + [STATE(229)] = { + [sym__statement] = STATE(3133), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym__statements_repeat1] = STATE(282), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), [anon_sym_LF] = ACTIONS(745), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, - [STATE(231)] = { - [sym__statement] = STATE(3166), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2966), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [STATE(230)] = { + [sym__statement] = STATE(3111), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2927), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(23), @@ -46483,62 +46333,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(232)] = { - [sym__statement] = STATE(3192), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2976), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [STATE(231)] = { + [sym__statement] = STATE(3104), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2921), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(23), @@ -46591,62 +46441,170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, + [STATE(232)] = { + [sym__statement] = STATE(3064), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym__statements_repeat1] = STATE(288), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [anon_sym_LF] = ACTIONS(745), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), + }, [STATE(233)] = { - [sym__statement] = STATE(3209), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2984), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [sym__statement] = STATE(3090), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2929), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(23), @@ -46700,61 +46658,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(234)] = { - [sym__statement] = STATE(3214), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2979), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [sym__statement] = STATE(3099), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2910), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), [anon_sym_for] = ACTIONS(23), @@ -46808,55 +46766,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(235)] = { - [sym__statement] = STATE(3050), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym__statements_repeat1] = STATE(279), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [sym__statement] = STATE(2991), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym__statements_repeat1] = STATE(287), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(11), @@ -46916,1132 +46874,1028 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(81), }, [STATE(236)] = { - [sym__statement] = STATE(3292), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3298), - [sym_compound_statement] = STATE(3298), - [sym__body] = STATE(3297), - [sym_do_group] = STATE(3283), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym__statement] = STATE(3210), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3273), + [sym_compound_statement] = STATE(3273), + [sym__body] = STATE(3191), + [sym_do_group] = STATE(3298), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(237)] = { - [sym__statement] = STATE(3316), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3298), - [sym_compound_statement] = STATE(3298), - [sym__body] = STATE(3326), - [sym_do_group] = STATE(3283), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym__statement] = STATE(3207), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3273), + [sym_compound_statement] = STATE(3273), + [sym__body] = STATE(3221), + [sym_do_group] = STATE(3298), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(238)] = { - [sym__statement] = STATE(3161), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym__statements_repeat1] = STATE(288), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(745), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [sym__statement] = STATE(3249), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3273), + [sym_compound_statement] = STATE(3273), + [sym__body] = STATE(3271), + [sym_do_group] = STATE(3298), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_do] = ACTIONS(371), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, [STATE(239)] = { - [sym__statement] = STATE(3340), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3298), - [sym_compound_statement] = STATE(3298), - [sym__body] = STATE(3353), - [sym_do_group] = STATE(3283), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_do] = ACTIONS(395), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), - }, - [STATE(240)] = { - [sym__statement] = STATE(3178), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym__statements_repeat1] = STATE(295), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), + [sym__statement] = STATE(3088), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym__statements_repeat1] = STATE(293), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(241)] = { - [sym__statement] = STATE(3313), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2980), - [sym_compound_statement] = STATE(2980), - [sym__body] = STATE(2976), - [sym_do_group] = STATE(2963), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), + [STATE(240)] = { + [sym__statement] = STATE(3305), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2927), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_do] = ACTIONS(371), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), - }, - [STATE(242)] = { - [sym__statement] = STATE(3351), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(745), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(243)] = { - [sym__statement] = STATE(3301), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), - [anon_sym_LF] = ACTIONS(745), + [STATE(241)] = { + [sym__statement] = STATE(3226), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2921), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(244)] = { - [sym__statement] = STATE(2978), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), - [anon_sym_LF] = ACTIONS(745), + [STATE(242)] = { + [sym__statement] = STATE(3236), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2929), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(245)] = { - [sym__statement] = STATE(3153), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_program_repeat1] = STATE(249), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), - [sym_word] = ACTIONS(83), - [anon_sym_LF] = ACTIONS(787), + [STATE(243)] = { + [sym__statement] = STATE(3183), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2932), + [sym_compound_statement] = STATE(2932), + [sym__body] = STATE(2910), + [sym_do_group] = STATE(2935), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(87), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_do] = ACTIONS(295), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(95), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_eval] = ACTIONS(103), - [anon_sym_alias] = ACTIONS(103), - [anon_sym_let] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(105), - [anon_sym_GT_GT] = ACTIONS(107), - [anon_sym_AMP_GT] = ACTIONS(105), - [anon_sym_AMP_GT_GT] = ACTIONS(107), - [anon_sym_LT_AMP] = ACTIONS(107), - [anon_sym_GT_AMP] = ACTIONS(107), - [anon_sym_GT_PIPE] = ACTIONS(107), - [anon_sym_LT_GT] = ACTIONS(107), - [anon_sym_LT_LT_LT] = ACTIONS(107), - [anon_sym_LT_LT] = ACTIONS(109), - [anon_sym_LT_LT_DASH] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(113), - [sym_number] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_raw_string] = ACTIONS(115), - [sym_ansi_c_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(125), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(131), - [sym__file_descriptor] = ACTIONS(133), - [sym__backtick_open] = ACTIONS(135), - [sym__dollar_literal] = ACTIONS(137), - [sym__brace_expr_start] = ACTIONS(139), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(246)] = { - [sym__statement] = STATE(3181), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_program_repeat1] = STATE(263), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [STATE(244)] = { + [sym__statement] = STATE(3013), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3030), + [sym_compound_statement] = STATE(3030), + [sym__body] = STATE(3007), + [sym_do_group] = STATE(3005), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), + [sym_word] = ACTIONS(147), + [sym_shebang] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_do] = ACTIONS(709), + [anon_sym_if] = ACTIONS(159), + [anon_sym_case] = ACTIONS(161), + [anon_sym_for] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_LPAREN_LPAREN] = ACTIONS(173), + [anon_sym_while] = ACTIONS(175), + [anon_sym_until] = ACTIONS(177), + [anon_sym_return] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_function] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(189), + [anon_sym_typeset] = ACTIONS(189), + [anon_sym_export] = ACTIONS(189), + [anon_sym_readonly] = ACTIONS(189), + [anon_sym_local] = ACTIONS(189), + [anon_sym_eval] = ACTIONS(189), + [anon_sym_alias] = ACTIONS(189), + [anon_sym_let] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_GT_GT] = ACTIONS(193), + [anon_sym_AMP_GT] = ACTIONS(191), + [anon_sym_AMP_GT_GT] = ACTIONS(193), + [anon_sym_LT_AMP] = ACTIONS(193), + [anon_sym_GT_AMP] = ACTIONS(193), + [anon_sym_GT_PIPE] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_LT_LT_DASH] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(199), + [aux_sym_brace_expression_token1] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(207), + [sym_raw_string] = ACTIONS(203), + [sym_ansi_c_string] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(213), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(219), + [sym__file_descriptor] = ACTIONS(221), + [sym__backtick_open] = ACTIONS(223), + [sym__dollar_literal] = ACTIONS(225), + [sym__brace_expr_start] = ACTIONS(227), + }, + [STATE(245)] = { + [sym__statement] = STATE(3103), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(789), + [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), @@ -48098,57 +47952,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, + [STATE(246)] = { + [sym__statement] = STATE(2920), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), + [anon_sym_LF] = ACTIONS(745), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(647), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), + }, [STATE(247)] = { - [sym__statement] = STATE(2982), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_program_repeat1] = STATE(254), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), + [sym__statement] = STATE(3107), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), - [anon_sym_LF] = ACTIONS(791), + [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(15), @@ -48206,161 +48167,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__brace_expr_start] = ACTIONS(139), }, [STATE(248)] = { - [sym__statement] = STATE(2982), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_program_repeat1] = STATE(264), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), - [sym_word] = ACTIONS(7), - [anon_sym_LF] = ACTIONS(793), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(23), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(33), - [anon_sym_break] = ACTIONS(35), - [anon_sym_continue] = ACTIONS(37), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(43), - [anon_sym_typeset] = ACTIONS(43), - [anon_sym_export] = ACTIONS(43), - [anon_sym_readonly] = ACTIONS(43), - [anon_sym_local] = ACTIONS(43), - [anon_sym_eval] = ACTIONS(43), - [anon_sym_alias] = ACTIONS(43), - [anon_sym_let] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(45), - [anon_sym_GT_GT] = ACTIONS(47), - [anon_sym_AMP_GT] = ACTIONS(45), - [anon_sym_AMP_GT_GT] = ACTIONS(47), - [anon_sym_LT_AMP] = ACTIONS(47), - [anon_sym_GT_AMP] = ACTIONS(47), - [anon_sym_GT_PIPE] = ACTIONS(47), - [anon_sym_LT_GT] = ACTIONS(47), - [anon_sym_LT_LT_LT] = ACTIONS(47), - [anon_sym_LT_LT] = ACTIONS(49), - [anon_sym_LT_LT_DASH] = ACTIONS(51), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(55), - [sym_number] = ACTIONS(57), - [anon_sym_DOLLAR] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [sym_raw_string] = ACTIONS(57), - [sym_ansi_c_string] = ACTIONS(57), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), - [anon_sym_LT_LPAREN] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(71), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(73), - [sym__file_descriptor] = ACTIONS(75), - [sym__backtick_open] = ACTIONS(77), - [sym__dollar_literal] = ACTIONS(79), - [sym__brace_expr_start] = ACTIONS(81), - }, - [STATE(249)] = { - [sym__statement] = STATE(3175), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), + [sym__statement] = STATE(2920), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(11), @@ -48419,57 +48273,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(137), [sym__brace_expr_start] = ACTIONS(139), }, - [STATE(250)] = { - [sym__statement] = STATE(3111), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_program_repeat1] = STATE(252), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [STATE(249)] = { + [sym__statement] = STATE(3036), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_program_repeat1] = STATE(251), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(795), + [anon_sym_LF] = ACTIONS(787), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), @@ -48526,57 +48380,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(225), [sym__brace_expr_start] = ACTIONS(227), }, - [STATE(251)] = { - [sym__statement] = STATE(3082), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_program_repeat1] = STATE(253), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [STATE(250)] = { + [sym__statement] = STATE(3045), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_program_repeat1] = STATE(252), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), - [anon_sym_LF] = ACTIONS(797), + [anon_sym_LF] = ACTIONS(789), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), [anon_sym_LPAREN] = ACTIONS(155), @@ -48633,55 +48487,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(225), [sym__brace_expr_start] = ACTIONS(227), }, - [STATE(252)] = { - [sym__statement] = STATE(3124), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [STATE(251)] = { + [sym__statement] = STATE(3046), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(151), @@ -48740,55 +48594,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(225), [sym__brace_expr_start] = ACTIONS(227), }, - [STATE(253)] = { - [sym__statement] = STATE(3109), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [STATE(252)] = { + [sym__statement] = STATE(3022), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(151), @@ -48847,378 +48701,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(225), [sym__brace_expr_start] = ACTIONS(227), }, - [STATE(254)] = { - [sym__statement] = STATE(2978), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), - [sym_word] = ACTIONS(83), - [anon_sym_LF] = ACTIONS(745), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(95), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_eval] = ACTIONS(103), - [anon_sym_alias] = ACTIONS(103), - [anon_sym_let] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(105), - [anon_sym_GT_GT] = ACTIONS(107), - [anon_sym_AMP_GT] = ACTIONS(105), - [anon_sym_AMP_GT_GT] = ACTIONS(107), - [anon_sym_LT_AMP] = ACTIONS(107), - [anon_sym_GT_AMP] = ACTIONS(107), - [anon_sym_GT_PIPE] = ACTIONS(107), - [anon_sym_LT_GT] = ACTIONS(107), - [anon_sym_LT_LT_LT] = ACTIONS(107), - [anon_sym_LT_LT] = ACTIONS(109), - [anon_sym_LT_LT_DASH] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(113), - [sym_number] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_raw_string] = ACTIONS(115), - [sym_ansi_c_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(125), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(131), - [sym__file_descriptor] = ACTIONS(133), - [sym__backtick_open] = ACTIONS(135), - [sym__dollar_literal] = ACTIONS(137), - [sym__brace_expr_start] = ACTIONS(139), - }, - [STATE(255)] = { - [sym__statement] = STATE(3368), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(745), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), - }, - [STATE(256)] = { - [sym__statement] = STATE(2978), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(745), + [STATE(253)] = { + [sym__statement] = STATE(2919), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(259), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), + [sym_word] = ACTIONS(7), + [anon_sym_LF] = ACTIONS(791), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(23), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(43), + [anon_sym_typeset] = ACTIONS(43), + [anon_sym_export] = ACTIONS(43), + [anon_sym_readonly] = ACTIONS(43), + [anon_sym_local] = ACTIONS(43), + [anon_sym_eval] = ACTIONS(43), + [anon_sym_alias] = ACTIONS(43), + [anon_sym_let] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_GT] = ACTIONS(47), + [anon_sym_AMP_GT] = ACTIONS(45), + [anon_sym_AMP_GT_GT] = ACTIONS(47), + [anon_sym_LT_AMP] = ACTIONS(47), + [anon_sym_GT_AMP] = ACTIONS(47), + [anon_sym_GT_PIPE] = ACTIONS(47), + [anon_sym_LT_GT] = ACTIONS(47), + [anon_sym_LT_LT_LT] = ACTIONS(47), + [anon_sym_LT_LT] = ACTIONS(49), + [anon_sym_LT_LT_DASH] = ACTIONS(51), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(55), + [sym_number] = ACTIONS(57), + [anon_sym_DOLLAR] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [sym_raw_string] = ACTIONS(57), + [sym_ansi_c_string] = ACTIONS(57), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), + [anon_sym_LT_LPAREN] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(71), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(73), + [sym__file_descriptor] = ACTIONS(75), + [sym__backtick_open] = ACTIONS(77), + [sym__dollar_literal] = ACTIONS(79), + [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(257)] = { - [sym__statement] = STATE(3164), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_program_repeat1] = STATE(259), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [STATE(254)] = { + [sym__statement] = STATE(3128), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_program_repeat1] = STATE(256), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), - [anon_sym_LF] = ACTIONS(799), + [anon_sym_LF] = ACTIONS(793), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(155), @@ -49275,162 +48915,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(258)] = { - [sym__statement] = STATE(3350), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), - [anon_sym_LF] = ACTIONS(745), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [STATE(255)] = { + [sym__statement] = STATE(3045), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_program_repeat1] = STATE(257), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), + [sym_word] = ACTIONS(235), + [anon_sym_LF] = ACTIONS(795), + [sym_shebang] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(239), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_case] = ACTIONS(161), + [anon_sym_for] = ACTIONS(241), + [anon_sym_select] = ACTIONS(171), + [anon_sym_LPAREN_LPAREN] = ACTIONS(173), + [anon_sym_while] = ACTIONS(175), + [anon_sym_until] = ACTIONS(177), + [anon_sym_return] = ACTIONS(243), + [anon_sym_break] = ACTIONS(245), + [anon_sym_continue] = ACTIONS(247), + [anon_sym_function] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(249), + [anon_sym_typeset] = ACTIONS(249), + [anon_sym_export] = ACTIONS(249), + [anon_sym_readonly] = ACTIONS(249), + [anon_sym_local] = ACTIONS(249), + [anon_sym_eval] = ACTIONS(249), + [anon_sym_alias] = ACTIONS(249), + [anon_sym_let] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_AMP_GT] = ACTIONS(251), + [anon_sym_AMP_GT_GT] = ACTIONS(253), + [anon_sym_LT_AMP] = ACTIONS(253), + [anon_sym_GT_AMP] = ACTIONS(253), + [anon_sym_GT_PIPE] = ACTIONS(253), + [anon_sym_LT_GT] = ACTIONS(253), + [anon_sym_LT_LT_LT] = ACTIONS(253), + [anon_sym_LT_LT] = ACTIONS(255), + [anon_sym_LT_LT_DASH] = ACTIONS(257), + [anon_sym_LBRACK_LBRACK] = ACTIONS(199), + [aux_sym_brace_expression_token1] = ACTIONS(259), + [sym_number] = ACTIONS(261), + [anon_sym_DOLLAR] = ACTIONS(263), + [anon_sym_DQUOTE] = ACTIONS(265), + [sym_raw_string] = ACTIONS(261), + [sym_ansi_c_string] = ACTIONS(261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(267), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(269), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(271), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(273), + [anon_sym_LT_LPAREN] = ACTIONS(275), + [anon_sym_GT_LPAREN] = ACTIONS(275), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(277), + [sym__file_descriptor] = ACTIONS(279), + [sym__backtick_open] = ACTIONS(281), + [sym__dollar_literal] = ACTIONS(283), + [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(259)] = { - [sym__statement] = STATE(3189), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [STATE(256)] = { + [sym__statement] = STATE(3157), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(151), @@ -49489,55 +49129,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(260)] = { - [sym__statement] = STATE(3109), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [STATE(257)] = { + [sym__statement] = STATE(3022), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(151), @@ -49596,269 +49236,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(261)] = { - [sym__statement] = STATE(3327), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_program_repeat1] = STATE(255), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(801), + [STATE(258)] = { + [sym__statement] = STATE(2920), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, - [STATE(262)] = { - [sym__statement] = STATE(3281), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_program_repeat1] = STATE(266), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(803), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), - }, - [STATE(263)] = { - [sym__statement] = STATE(3194), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [STATE(259)] = { + [sym__statement] = STATE(2920), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(11), @@ -49917,58 +49450,1556 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, + [STATE(260)] = { + [sym__statement] = STATE(3264), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_program_repeat1] = STATE(262), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(797), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), + }, + [STATE(261)] = { + [sym__statement] = STATE(3212), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), + [anon_sym_LF] = ACTIONS(745), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(647), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), + }, + [STATE(262)] = { + [sym__statement] = STATE(3281), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(745), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), + }, + [STATE(263)] = { + [sym__statement] = STATE(3256), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(265), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [anon_sym_LF] = ACTIONS(799), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), + }, [STATE(264)] = { - [sym__statement] = STATE(2978), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), - [sym_word] = ACTIONS(7), + [sym__statement] = STATE(3258), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(266), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [anon_sym_LF] = ACTIONS(801), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), + }, + [STATE(265)] = { + [sym__statement] = STATE(3185), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [anon_sym_LF] = ACTIONS(745), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), + }, + [STATE(266)] = { + [sym__statement] = STATE(3187), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [anon_sym_LF] = ACTIONS(745), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), + }, + [STATE(267)] = { + [sym__statement] = STATE(3269), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(745), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), + }, + [STATE(268)] = { + [sym__statement] = STATE(3101), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_program_repeat1] = STATE(247), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), + [sym_word] = ACTIONS(83), + [anon_sym_LF] = ACTIONS(803), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(95), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_typeset] = ACTIONS(103), + [anon_sym_export] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_local] = ACTIONS(103), + [anon_sym_eval] = ACTIONS(103), + [anon_sym_alias] = ACTIONS(103), + [anon_sym_let] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(107), + [anon_sym_AMP_GT] = ACTIONS(105), + [anon_sym_AMP_GT_GT] = ACTIONS(107), + [anon_sym_LT_AMP] = ACTIONS(107), + [anon_sym_GT_AMP] = ACTIONS(107), + [anon_sym_GT_PIPE] = ACTIONS(107), + [anon_sym_LT_GT] = ACTIONS(107), + [anon_sym_LT_LT_LT] = ACTIONS(107), + [anon_sym_LT_LT] = ACTIONS(109), + [anon_sym_LT_LT_DASH] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(113), + [sym_number] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_raw_string] = ACTIONS(115), + [sym_ansi_c_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(125), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(131), + [sym__file_descriptor] = ACTIONS(133), + [sym__backtick_open] = ACTIONS(135), + [sym__dollar_literal] = ACTIONS(137), + [sym__brace_expr_start] = ACTIONS(139), + }, + [STATE(269)] = { + [sym__statement] = STATE(2919), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_program_repeat1] = STATE(248), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), + [sym_word] = ACTIONS(83), + [anon_sym_LF] = ACTIONS(805), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(95), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_typeset] = ACTIONS(103), + [anon_sym_export] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_local] = ACTIONS(103), + [anon_sym_eval] = ACTIONS(103), + [anon_sym_alias] = ACTIONS(103), + [anon_sym_let] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(107), + [anon_sym_AMP_GT] = ACTIONS(105), + [anon_sym_AMP_GT_GT] = ACTIONS(107), + [anon_sym_LT_AMP] = ACTIONS(107), + [anon_sym_GT_AMP] = ACTIONS(107), + [anon_sym_GT_PIPE] = ACTIONS(107), + [anon_sym_LT_GT] = ACTIONS(107), + [anon_sym_LT_LT_LT] = ACTIONS(107), + [anon_sym_LT_LT] = ACTIONS(109), + [anon_sym_LT_LT_DASH] = ACTIONS(111), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(113), + [sym_number] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_raw_string] = ACTIONS(115), + [sym_ansi_c_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(125), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(131), + [sym__file_descriptor] = ACTIONS(133), + [sym__backtick_open] = ACTIONS(135), + [sym__dollar_literal] = ACTIONS(137), + [sym__brace_expr_start] = ACTIONS(139), + }, + [STATE(270)] = { + [sym__statement] = STATE(3219), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_program_repeat1] = STATE(272), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), + [anon_sym_LF] = ACTIONS(807), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(461), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), + }, + [STATE(271)] = { + [sym__statement] = STATE(2919), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_program_repeat1] = STATE(273), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), + [anon_sym_LF] = ACTIONS(809), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(461), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), + }, + [STATE(272)] = { + [sym__statement] = STATE(3253), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(461), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), + }, + [STATE(273)] = { + [sym__statement] = STATE(2920), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), + [anon_sym_LF] = ACTIONS(745), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(461), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), + }, + [STATE(274)] = { + [sym__statement] = STATE(3059), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_program_repeat1] = STATE(245), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), + [sym_word] = ACTIONS(7), + [anon_sym_LF] = ACTIONS(811), + [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), @@ -50024,1341 +51055,1122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(265)] = { - [sym__statement] = STATE(3331), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_program_repeat1] = STATE(267), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(805), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), - }, - [STATE(266)] = { - [sym__statement] = STATE(3295), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(745), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), - }, - [STATE(267)] = { - [sym__statement] = STATE(3366), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [anon_sym_LF] = ACTIONS(745), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), - }, - [STATE(268)] = { - [sym__statement] = STATE(2982), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_program_repeat1] = STATE(256), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [anon_sym_LF] = ACTIONS(807), + [STATE(275)] = { + [sym__statement] = STATE(3276), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_program_repeat1] = STATE(261), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), + [anon_sym_LF] = ACTIONS(813), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(647), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), - }, - [STATE(269)] = { - [sym__statement] = STATE(3307), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(271), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(809), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), - }, - [STATE(270)] = { - [sym__statement] = STATE(3308), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(242), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(811), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), }, - [STATE(271)] = { - [sym__statement] = STATE(3348), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [anon_sym_LF] = ACTIONS(745), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [STATE(276)] = { + [sym__statement] = STATE(2919), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_program_repeat1] = STATE(246), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), + [anon_sym_LF] = ACTIONS(815), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(645), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(647), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), }, - [STATE(272)] = { - [sym__statement] = STATE(2978), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_program_repeat1] = STATE(309), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), - [anon_sym_LF] = ACTIONS(745), + [STATE(277)] = { + [sym__statement] = STATE(3241), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_program_repeat1] = STATE(279), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(817), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, - [STATE(273)] = { - [sym__statement] = STATE(2982), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_program_repeat1] = STATE(244), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), - [anon_sym_LF] = ACTIONS(813), + [STATE(278)] = { + [sym__statement] = STATE(2919), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_program_repeat1] = STATE(258), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(819), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, - [STATE(274)] = { - [sym__statement] = STATE(3277), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_program_repeat1] = STATE(243), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), - [anon_sym_LF] = ACTIONS(815), + [STATE(279)] = { + [sym__statement] = STATE(3267), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_program_repeat1] = STATE(318), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), + [anon_sym_LF] = ACTIONS(745), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, - [STATE(275)] = { - [sym__statement] = STATE(3325), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), + [STATE(280)] = { + [sym__statement] = STATE(3243), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), [sym_command_substitution] = STATE(1588), [sym_arithmetic_expansion] = STATE(1588), [sym_process_substitution] = STATE(1588), - [aux_sym_program_repeat1] = STATE(258), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), - [anon_sym_LF] = ACTIONS(817), + [aux_sym_program_repeat1] = STATE(267), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [anon_sym_LF] = ACTIONS(821), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), + }, + [STATE(281)] = { + [sym__statement] = STATE(3069), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, - [STATE(276)] = { - [sym__statement] = STATE(2982), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), + [STATE(282)] = { + [sym__statement] = STATE(3149), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), [sym_command_substitution] = STATE(1588), [sym_arithmetic_expansion] = STATE(1588), [sym_process_substitution] = STATE(1588), - [aux_sym_program_repeat1] = STATE(272), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), - [anon_sym_LF] = ACTIONS(819), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), + }, + [STATE(283)] = { + [sym__statement] = STATE(2992), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), + [sym_word] = ACTIONS(83), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(95), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_typeset] = ACTIONS(103), + [anon_sym_export] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_local] = ACTIONS(103), + [anon_sym_eval] = ACTIONS(103), + [anon_sym_alias] = ACTIONS(103), + [anon_sym_let] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(107), + [anon_sym_AMP_GT] = ACTIONS(105), + [anon_sym_AMP_GT_GT] = ACTIONS(107), + [anon_sym_LT_AMP] = ACTIONS(107), + [anon_sym_GT_AMP] = ACTIONS(107), + [anon_sym_GT_PIPE] = ACTIONS(107), + [anon_sym_LT_GT] = ACTIONS(107), + [anon_sym_LT_LT_LT] = ACTIONS(107), + [anon_sym_LT_LT] = ACTIONS(109), + [anon_sym_LT_LT_DASH] = ACTIONS(111), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(113), + [sym_number] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_raw_string] = ACTIONS(115), + [sym_ansi_c_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(125), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(131), + [sym__file_descriptor] = ACTIONS(133), + [sym__backtick_open] = ACTIONS(135), + [sym__dollar_literal] = ACTIONS(137), + [sym__brace_expr_start] = ACTIONS(139), + }, + [STATE(284)] = { + [sym__statement] = STATE(3064), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, - [STATE(277)] = { - [sym__statement] = STATE(3082), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_program_repeat1] = STATE(260), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [STATE(285)] = { + [sym__statement] = STATE(2996), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), - [anon_sym_LF] = ACTIONS(821), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(239), [anon_sym_LPAREN] = ACTIONS(155), @@ -51415,161 +52227,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(278)] = { - [sym__statement] = STATE(3163), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [STATE(286)] = { + [sym__statement] = STATE(2948), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), + [sym_word] = ACTIONS(147), + [sym_shebang] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_case] = ACTIONS(161), + [anon_sym_for] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_LPAREN_LPAREN] = ACTIONS(173), + [anon_sym_while] = ACTIONS(175), + [anon_sym_until] = ACTIONS(177), + [anon_sym_return] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_function] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(189), + [anon_sym_typeset] = ACTIONS(189), + [anon_sym_export] = ACTIONS(189), + [anon_sym_readonly] = ACTIONS(189), + [anon_sym_local] = ACTIONS(189), + [anon_sym_eval] = ACTIONS(189), + [anon_sym_alias] = ACTIONS(189), + [anon_sym_let] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_GT_GT] = ACTIONS(193), + [anon_sym_AMP_GT] = ACTIONS(191), + [anon_sym_AMP_GT_GT] = ACTIONS(193), + [anon_sym_LT_AMP] = ACTIONS(193), + [anon_sym_GT_AMP] = ACTIONS(193), + [anon_sym_GT_PIPE] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_LT_LT_DASH] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(199), + [aux_sym_brace_expression_token1] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(207), + [sym_raw_string] = ACTIONS(203), + [sym_ansi_c_string] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(213), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym__assignment_name] = ACTIONS(219), + [sym__file_descriptor] = ACTIONS(221), + [sym__backtick_open] = ACTIONS(223), + [sym__dollar_literal] = ACTIONS(225), + [sym__brace_expr_start] = ACTIONS(227), }, - [STATE(279)] = { - [sym__statement] = STATE(3055), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [STATE(287)] = { + [sym__statement] = STATE(3000), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), @@ -51627,161 +52439,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(280)] = { - [sym__statement] = STATE(3212), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [STATE(288)] = { + [sym__statement] = STATE(3164), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, - [STATE(281)] = { - [sym__statement] = STATE(3293), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [STATE(289)] = { + [sym__statement] = STATE(3177), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(823), [sym_shebang] = ACTIONS(826), [anon_sym_BANG] = ACTIONS(829), @@ -51839,585 +52651,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(928), [sym__brace_expr_start] = ACTIONS(931), }, - [STATE(282)] = { - [sym__statement] = STATE(3051), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), - [sym_word] = ACTIONS(83), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(95), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_eval] = ACTIONS(103), - [anon_sym_alias] = ACTIONS(103), - [anon_sym_let] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(105), - [anon_sym_GT_GT] = ACTIONS(107), - [anon_sym_AMP_GT] = ACTIONS(105), - [anon_sym_AMP_GT_GT] = ACTIONS(107), - [anon_sym_LT_AMP] = ACTIONS(107), - [anon_sym_GT_AMP] = ACTIONS(107), - [anon_sym_GT_PIPE] = ACTIONS(107), - [anon_sym_LT_GT] = ACTIONS(107), - [anon_sym_LT_LT_LT] = ACTIONS(107), - [anon_sym_LT_LT] = ACTIONS(109), - [anon_sym_LT_LT_DASH] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(113), - [sym_number] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_raw_string] = ACTIONS(115), - [sym_ansi_c_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(125), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(131), - [sym__file_descriptor] = ACTIONS(133), - [sym__backtick_open] = ACTIONS(135), - [sym__dollar_literal] = ACTIONS(137), - [sym__brace_expr_start] = ACTIONS(139), - }, - [STATE(283)] = { - [sym__statement] = STATE(3160), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), - }, - [STATE(284)] = { - [sym__statement] = STATE(3161), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), - }, - [STATE(285)] = { - [sym__statement] = STATE(3223), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), + [STATE(290)] = { + [sym__statement] = STATE(3088), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), - }, - [STATE(286)] = { - [sym__statement] = STATE(3048), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), - [sym_word] = ACTIONS(235), - [sym_shebang] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(239), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_for] = ACTIONS(241), - [anon_sym_select] = ACTIONS(171), - [anon_sym_LPAREN_LPAREN] = ACTIONS(173), - [anon_sym_while] = ACTIONS(175), - [anon_sym_until] = ACTIONS(177), - [anon_sym_return] = ACTIONS(243), - [anon_sym_break] = ACTIONS(245), - [anon_sym_continue] = ACTIONS(247), - [anon_sym_function] = ACTIONS(185), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(249), - [anon_sym_typeset] = ACTIONS(249), - [anon_sym_export] = ACTIONS(249), - [anon_sym_readonly] = ACTIONS(249), - [anon_sym_local] = ACTIONS(249), - [anon_sym_eval] = ACTIONS(249), - [anon_sym_alias] = ACTIONS(249), - [anon_sym_let] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(253), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(253), - [anon_sym_LT_AMP] = ACTIONS(253), - [anon_sym_GT_AMP] = ACTIONS(253), - [anon_sym_GT_PIPE] = ACTIONS(253), - [anon_sym_LT_GT] = ACTIONS(253), - [anon_sym_LT_LT_LT] = ACTIONS(253), - [anon_sym_LT_LT] = ACTIONS(255), - [anon_sym_LT_LT_DASH] = ACTIONS(257), - [anon_sym_LBRACK_LBRACK] = ACTIONS(199), - [aux_sym_brace_expression_token1] = ACTIONS(259), - [sym_number] = ACTIONS(261), - [anon_sym_DOLLAR] = ACTIONS(263), - [anon_sym_DQUOTE] = ACTIONS(265), - [sym_raw_string] = ACTIONS(261), - [sym_ansi_c_string] = ACTIONS(261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(267), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(269), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(271), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(273), - [anon_sym_LT_LPAREN] = ACTIONS(275), - [anon_sym_GT_LPAREN] = ACTIONS(275), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(277), - [sym__file_descriptor] = ACTIONS(279), - [sym__backtick_open] = ACTIONS(281), - [sym__dollar_literal] = ACTIONS(283), - [sym__brace_expr_start] = ACTIONS(285), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(287)] = { - [sym__statement] = STATE(3022), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), + [STATE(291)] = { + [sym__statement] = STATE(2963), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), [sym_word] = ACTIONS(147), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(153), @@ -52475,161 +52863,267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(225), [sym__brace_expr_start] = ACTIONS(227), }, - [STATE(288)] = { - [sym__statement] = STATE(3174), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [STATE(292)] = { + [sym__statement] = STATE(3133), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, - [STATE(289)] = { - [sym__statement] = STATE(3054), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [STATE(293)] = { + [sym__statement] = STATE(3172), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(459), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(461), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), + }, + [STATE(294)] = { + [sym__statement] = STATE(2999), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(239), @@ -52687,55 +53181,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(290)] = { - [sym__statement] = STATE(3050), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), + [STATE(295)] = { + [sym__statement] = STATE(2991), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), [sym_word] = ACTIONS(7), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(13), @@ -52793,55 +53287,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(79), [sym__brace_expr_start] = ACTIONS(81), }, - [STATE(291)] = { - [sym__statement] = STATE(3046), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), + [STATE(296)] = { + [sym__statement] = STATE(2997), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), [sym_word] = ACTIONS(83), [sym_shebang] = ACTIONS(11), [anon_sym_BANG] = ACTIONS(87), @@ -52899,899 +53393,792 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(137), [sym__brace_expr_start] = ACTIONS(139), }, - [STATE(292)] = { - [sym__statement] = STATE(3016), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), - [sym_word] = ACTIONS(147), - [sym_shebang] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_for] = ACTIONS(169), - [anon_sym_select] = ACTIONS(171), - [anon_sym_LPAREN_LPAREN] = ACTIONS(173), - [anon_sym_while] = ACTIONS(175), - [anon_sym_until] = ACTIONS(177), - [anon_sym_return] = ACTIONS(179), - [anon_sym_break] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_function] = ACTIONS(185), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(189), - [anon_sym_typeset] = ACTIONS(189), - [anon_sym_export] = ACTIONS(189), - [anon_sym_readonly] = ACTIONS(189), - [anon_sym_local] = ACTIONS(189), - [anon_sym_eval] = ACTIONS(189), - [anon_sym_alias] = ACTIONS(189), - [anon_sym_let] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(193), - [anon_sym_AMP_GT] = ACTIONS(191), - [anon_sym_AMP_GT_GT] = ACTIONS(193), - [anon_sym_LT_AMP] = ACTIONS(193), - [anon_sym_GT_AMP] = ACTIONS(193), - [anon_sym_GT_PIPE] = ACTIONS(193), - [anon_sym_LT_GT] = ACTIONS(193), - [anon_sym_LT_LT_LT] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_LT_LT_DASH] = ACTIONS(197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(199), - [aux_sym_brace_expression_token1] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [sym_raw_string] = ACTIONS(203), - [sym_ansi_c_string] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(219), - [sym__file_descriptor] = ACTIONS(221), - [sym__backtick_open] = ACTIONS(223), - [sym__dollar_literal] = ACTIONS(225), - [sym__brace_expr_start] = ACTIONS(227), - }, - [STATE(293)] = { - [sym__statement] = STATE(3195), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), + [STATE(297)] = { + [sym__statement] = STATE(3168), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(647), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), }, - [STATE(294)] = { - [sym__statement] = STATE(3178), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), + [STATE(298)] = { + [sym__statement] = STATE(3097), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(647), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), }, - [STATE(295)] = { - [sym__statement] = STATE(3220), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), + [STATE(299)] = { + [sym__statement] = STATE(3075), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym__statements_repeat1] = STATE(289), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), + [sym_word] = ACTIONS(287), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(293), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(297), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), }, - [STATE(296)] = { - [sym__statement] = STATE(3222), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym__statements_repeat1] = STATE(281), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), - [sym_word] = ACTIONS(287), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [STATE(300)] = { + [sym__statement] = STATE(3286), + [sym__directive] = STATE(3215), + [sym_list] = STATE(3215), + [sym_pipeline] = STATE(3215), + [sym_negated_command] = STATE(3215), + [sym_subshell] = STATE(3215), + [sym_compound_statement] = STATE(3215), + [sym__control_flow] = STATE(3215), + [sym__branch] = STATE(3182), + [sym_if_statement] = STATE(3239), + [sym_case_statement] = STATE(3239), + [sym__loop] = STATE(3182), + [sym_for_statement] = STATE(3260), + [sym_c_style_for_statement] = STATE(3260), + [sym_while_statement] = STATE(3260), + [sym_until_statement] = STATE(3260), + [sym__jump] = STATE(3182), + [sym_return_statement] = STATE(3261), + [sym_break_statement] = STATE(3261), + [sym_continue_statement] = STATE(3261), + [sym_function_definition] = STATE(3215), + [sym__invocation] = STATE(3215), + [sym_command] = STATE(3268), + [sym__redirect_statement] = STATE(3215), + [sym__assignment] = STATE(3215), + [sym_variable_assignments] = STATE(3215), + [sym_variable_assignment] = STATE(1508), + [sym_declaration_command] = STATE(3296), + [sym_redirect] = STATE(1847), + [sym_heredoc_redirect] = STATE(1851), + [sym_test_command] = STATE(3215), + [sym_arithmetic_command] = STATE(3215), + [sym__word_like] = STATE(685), + [sym_concatenation] = STATE(685), + [sym__word_part] = STATE(3555), + [sym_brace_expression] = STATE(1485), + [sym__literal] = STATE(1603), + [sym_string] = STATE(1599), + [sym__expression] = STATE(1485), + [sym__access] = STATE(1603), + [sym_simple_expansion] = STATE(1487), + [sym_expansion] = STATE(1487), + [sym_command_substitution] = STATE(1603), + [sym_arithmetic_expansion] = STATE(1603), + [sym_process_substitution] = STATE(1603), + [aux_sym_subshell_repeat1] = STATE(2516), + [aux_sym_command_repeat1] = STATE(1188), + [sym_word] = ACTIONS(357), + [sym_shebang] = ACTIONS(363), + [anon_sym_BANG] = ACTIONS(365), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_LBRACE] = ACTIONS(369), + [anon_sym_if] = ACTIONS(373), + [anon_sym_case] = ACTIONS(375), + [anon_sym_for] = ACTIONS(377), + [anon_sym_select] = ACTIONS(379), + [anon_sym_LPAREN_LPAREN] = ACTIONS(381), + [anon_sym_while] = ACTIONS(383), + [anon_sym_until] = ACTIONS(385), + [anon_sym_return] = ACTIONS(387), + [anon_sym_break] = ACTIONS(389), + [anon_sym_continue] = ACTIONS(391), + [anon_sym_function] = ACTIONS(393), + [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_declare] = ACTIONS(397), + [anon_sym_typeset] = ACTIONS(397), + [anon_sym_export] = ACTIONS(397), + [anon_sym_readonly] = ACTIONS(397), + [anon_sym_local] = ACTIONS(397), + [anon_sym_eval] = ACTIONS(397), + [anon_sym_alias] = ACTIONS(397), + [anon_sym_let] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(399), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(399), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [anon_sym_GT_PIPE] = ACTIONS(401), + [anon_sym_LT_GT] = ACTIONS(401), + [anon_sym_LT_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(405), + [anon_sym_LBRACK_LBRACK] = ACTIONS(407), + [aux_sym_brace_expression_token1] = ACTIONS(409), + [sym_number] = ACTIONS(411), + [anon_sym_DOLLAR] = ACTIONS(413), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym_raw_string] = ACTIONS(411), + [sym_ansi_c_string] = ACTIONS(411), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(423), + [anon_sym_LT_LPAREN] = ACTIONS(425), + [anon_sym_GT_LPAREN] = ACTIONS(425), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), + [sym__assignment_name] = ACTIONS(427), + [sym__file_descriptor] = ACTIONS(429), + [sym__backtick_open] = ACTIONS(431), + [sym__dollar_literal] = ACTIONS(433), + [sym__brace_expr_start] = ACTIONS(435), }, - [STATE(297)] = { - [sym__statement] = STATE(3184), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1329), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1549), - [sym_heredoc_redirect] = STATE(1552), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(605), - [sym_concatenation] = STATE(605), - [sym__word_part] = STATE(3594), - [sym_brace_expression] = STATE(1311), - [sym__literal] = STATE(1333), - [sym_string] = STATE(1314), - [sym__expression] = STATE(1311), - [sym__access] = STATE(1333), - [sym_simple_expansion] = STATE(1350), - [sym_expansion] = STATE(1350), - [sym_command_substitution] = STATE(1333), - [sym_arithmetic_expansion] = STATE(1333), - [sym_process_substitution] = STATE(1333), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1159), - [sym_word] = ACTIONS(7), + [STATE(301)] = { + [sym__statement] = STATE(3208), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1556), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1810), + [sym_heredoc_redirect] = STATE(1806), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(693), + [sym_concatenation] = STATE(693), + [sym__word_part] = STATE(3561), + [sym_brace_expression] = STATE(1552), + [sym__literal] = STATE(1557), + [sym_string] = STATE(1555), + [sym__expression] = STATE(1552), + [sym__access] = STATE(1557), + [sym_simple_expansion] = STATE(1558), + [sym_expansion] = STATE(1558), + [sym_command_substitution] = STATE(1557), + [sym_arithmetic_expansion] = STATE(1557), + [sym_process_substitution] = STATE(1557), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1194), + [sym_word] = ACTIONS(453), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(13), + [anon_sym_BANG] = ACTIONS(459), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(23), + [anon_sym_for] = ACTIONS(461), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(33), - [anon_sym_break] = ACTIONS(35), - [anon_sym_continue] = ACTIONS(37), + [anon_sym_return] = ACTIONS(463), + [anon_sym_break] = ACTIONS(465), + [anon_sym_continue] = ACTIONS(467), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(43), - [anon_sym_typeset] = ACTIONS(43), - [anon_sym_export] = ACTIONS(43), - [anon_sym_readonly] = ACTIONS(43), - [anon_sym_local] = ACTIONS(43), - [anon_sym_eval] = ACTIONS(43), - [anon_sym_alias] = ACTIONS(43), - [anon_sym_let] = ACTIONS(43), - [anon_sym_LT] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(45), - [anon_sym_GT_GT] = ACTIONS(47), - [anon_sym_AMP_GT] = ACTIONS(45), - [anon_sym_AMP_GT_GT] = ACTIONS(47), - [anon_sym_LT_AMP] = ACTIONS(47), - [anon_sym_GT_AMP] = ACTIONS(47), - [anon_sym_GT_PIPE] = ACTIONS(47), - [anon_sym_LT_GT] = ACTIONS(47), - [anon_sym_LT_LT_LT] = ACTIONS(47), - [anon_sym_LT_LT] = ACTIONS(49), - [anon_sym_LT_LT_DASH] = ACTIONS(51), + [anon_sym_declare] = ACTIONS(469), + [anon_sym_typeset] = ACTIONS(469), + [anon_sym_export] = ACTIONS(469), + [anon_sym_readonly] = ACTIONS(469), + [anon_sym_local] = ACTIONS(469), + [anon_sym_eval] = ACTIONS(469), + [anon_sym_alias] = ACTIONS(469), + [anon_sym_let] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(471), + [anon_sym_GT] = ACTIONS(471), + [anon_sym_GT_GT] = ACTIONS(473), + [anon_sym_AMP_GT] = ACTIONS(471), + [anon_sym_AMP_GT_GT] = ACTIONS(473), + [anon_sym_LT_AMP] = ACTIONS(473), + [anon_sym_GT_AMP] = ACTIONS(473), + [anon_sym_GT_PIPE] = ACTIONS(473), + [anon_sym_LT_GT] = ACTIONS(473), + [anon_sym_LT_LT_LT] = ACTIONS(473), + [anon_sym_LT_LT] = ACTIONS(475), + [anon_sym_LT_LT_DASH] = ACTIONS(477), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(55), - [sym_number] = ACTIONS(57), - [anon_sym_DOLLAR] = ACTIONS(59), - [anon_sym_DQUOTE] = ACTIONS(61), - [sym_raw_string] = ACTIONS(57), - [sym_ansi_c_string] = ACTIONS(57), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), - [anon_sym_LT_LPAREN] = ACTIONS(71), - [anon_sym_GT_LPAREN] = ACTIONS(71), + [aux_sym_brace_expression_token1] = ACTIONS(479), + [sym_number] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_raw_string] = ACTIONS(481), + [sym_ansi_c_string] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(493), + [anon_sym_LT_LPAREN] = ACTIONS(495), + [anon_sym_GT_LPAREN] = ACTIONS(495), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(73), - [sym__file_descriptor] = ACTIONS(75), - [sym__backtick_open] = ACTIONS(77), - [sym__dollar_literal] = ACTIONS(79), - [sym__brace_expr_start] = ACTIONS(81), + [sym__assignment_name] = ACTIONS(497), + [sym__file_descriptor] = ACTIONS(499), + [sym__backtick_open] = ACTIONS(501), + [sym__dollar_literal] = ACTIONS(503), + [sym__brace_expr_start] = ACTIONS(505), }, - [STATE(298)] = { - [sym__statement] = STATE(3158), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1223), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1516), - [sym_heredoc_redirect] = STATE(1611), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(625), - [sym_concatenation] = STATE(625), - [sym__word_part] = STATE(3574), - [sym_brace_expression] = STATE(1232), - [sym__literal] = STATE(1318), - [sym_string] = STATE(1317), - [sym__expression] = STATE(1232), - [sym__access] = STATE(1318), - [sym_simple_expansion] = STATE(1326), - [sym_expansion] = STATE(1326), - [sym_command_substitution] = STATE(1318), - [sym_arithmetic_expansion] = STATE(1318), - [sym_process_substitution] = STATE(1318), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1163), - [sym_word] = ACTIONS(83), - [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(95), - [anon_sym_select] = ACTIONS(25), - [anon_sym_LPAREN_LPAREN] = ACTIONS(27), - [anon_sym_while] = ACTIONS(29), - [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(97), - [anon_sym_break] = ACTIONS(99), - [anon_sym_continue] = ACTIONS(101), - [anon_sym_function] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(103), - [anon_sym_typeset] = ACTIONS(103), - [anon_sym_export] = ACTIONS(103), - [anon_sym_readonly] = ACTIONS(103), - [anon_sym_local] = ACTIONS(103), - [anon_sym_eval] = ACTIONS(103), - [anon_sym_alias] = ACTIONS(103), - [anon_sym_let] = ACTIONS(103), - [anon_sym_LT] = ACTIONS(105), - [anon_sym_GT] = ACTIONS(105), - [anon_sym_GT_GT] = ACTIONS(107), - [anon_sym_AMP_GT] = ACTIONS(105), - [anon_sym_AMP_GT_GT] = ACTIONS(107), - [anon_sym_LT_AMP] = ACTIONS(107), - [anon_sym_GT_AMP] = ACTIONS(107), - [anon_sym_GT_PIPE] = ACTIONS(107), - [anon_sym_LT_GT] = ACTIONS(107), - [anon_sym_LT_LT_LT] = ACTIONS(107), - [anon_sym_LT_LT] = ACTIONS(109), - [anon_sym_LT_LT_DASH] = ACTIONS(111), - [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(113), - [sym_number] = ACTIONS(115), - [anon_sym_DOLLAR] = ACTIONS(117), - [anon_sym_DQUOTE] = ACTIONS(119), - [sym_raw_string] = ACTIONS(115), - [sym_ansi_c_string] = ACTIONS(115), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(125), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(127), - [anon_sym_LT_LPAREN] = ACTIONS(129), - [anon_sym_GT_LPAREN] = ACTIONS(129), + [STATE(302)] = { + [sym__statement] = STATE(3184), + [sym__directive] = STATE(3229), + [sym_list] = STATE(3229), + [sym_pipeline] = STATE(3229), + [sym_negated_command] = STATE(3229), + [sym_subshell] = STATE(3229), + [sym_compound_statement] = STATE(3229), + [sym__control_flow] = STATE(3229), + [sym__branch] = STATE(3231), + [sym_if_statement] = STATE(3250), + [sym_case_statement] = STATE(3250), + [sym__loop] = STATE(3231), + [sym_for_statement] = STATE(3251), + [sym_c_style_for_statement] = STATE(3251), + [sym_while_statement] = STATE(3251), + [sym_until_statement] = STATE(3251), + [sym__jump] = STATE(3231), + [sym_return_statement] = STATE(3254), + [sym_break_statement] = STATE(3254), + [sym_continue_statement] = STATE(3254), + [sym_function_definition] = STATE(3229), + [sym__invocation] = STATE(3229), + [sym_command] = STATE(3266), + [sym__redirect_statement] = STATE(3229), + [sym__assignment] = STATE(3229), + [sym_variable_assignments] = STATE(3229), + [sym_variable_assignment] = STATE(1623), + [sym_declaration_command] = STATE(3274), + [sym_redirect] = STATE(1853), + [sym_heredoc_redirect] = STATE(1858), + [sym_test_command] = STATE(3229), + [sym_arithmetic_command] = STATE(3229), + [sym__word_like] = STATE(677), + [sym_concatenation] = STATE(677), + [sym__word_part] = STATE(3543), + [sym_brace_expression] = STATE(1617), + [sym__literal] = STATE(1588), + [sym_string] = STATE(1586), + [sym__expression] = STATE(1617), + [sym__access] = STATE(1588), + [sym_simple_expansion] = STATE(1618), + [sym_expansion] = STATE(1618), + [sym_command_substitution] = STATE(1588), + [sym_arithmetic_expansion] = STATE(1588), + [sym_process_substitution] = STATE(1588), + [aux_sym_subshell_repeat1] = STATE(2537), + [aux_sym_command_repeat1] = STATE(1191), + [sym_word] = ACTIONS(547), + [sym_shebang] = ACTIONS(553), + [anon_sym_BANG] = ACTIONS(555), + [anon_sym_LPAREN] = ACTIONS(557), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_if] = ACTIONS(563), + [anon_sym_case] = ACTIONS(565), + [anon_sym_for] = ACTIONS(567), + [anon_sym_select] = ACTIONS(569), + [anon_sym_LPAREN_LPAREN] = ACTIONS(571), + [anon_sym_while] = ACTIONS(573), + [anon_sym_until] = ACTIONS(575), + [anon_sym_return] = ACTIONS(577), + [anon_sym_break] = ACTIONS(579), + [anon_sym_continue] = ACTIONS(581), + [anon_sym_function] = ACTIONS(583), + [anon_sym_LBRACK] = ACTIONS(585), + [anon_sym_declare] = ACTIONS(587), + [anon_sym_typeset] = ACTIONS(587), + [anon_sym_export] = ACTIONS(587), + [anon_sym_readonly] = ACTIONS(587), + [anon_sym_local] = ACTIONS(587), + [anon_sym_eval] = ACTIONS(587), + [anon_sym_alias] = ACTIONS(587), + [anon_sym_let] = ACTIONS(587), + [anon_sym_LT] = ACTIONS(589), + [anon_sym_GT] = ACTIONS(589), + [anon_sym_GT_GT] = ACTIONS(591), + [anon_sym_AMP_GT] = ACTIONS(589), + [anon_sym_AMP_GT_GT] = ACTIONS(591), + [anon_sym_LT_AMP] = ACTIONS(591), + [anon_sym_GT_AMP] = ACTIONS(591), + [anon_sym_GT_PIPE] = ACTIONS(591), + [anon_sym_LT_GT] = ACTIONS(591), + [anon_sym_LT_LT_LT] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(593), + [anon_sym_LT_LT_DASH] = ACTIONS(595), + [anon_sym_LBRACK_LBRACK] = ACTIONS(597), + [aux_sym_brace_expression_token1] = ACTIONS(599), + [sym_number] = ACTIONS(601), + [anon_sym_DOLLAR] = ACTIONS(603), + [anon_sym_DQUOTE] = ACTIONS(605), + [sym_raw_string] = ACTIONS(601), + [sym_ansi_c_string] = ACTIONS(601), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(607), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(609), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(611), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(613), + [anon_sym_LT_LPAREN] = ACTIONS(615), + [anon_sym_GT_LPAREN] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(131), - [sym__file_descriptor] = ACTIONS(133), - [sym__backtick_open] = ACTIONS(135), - [sym__dollar_literal] = ACTIONS(137), - [sym__brace_expr_start] = ACTIONS(139), + [sym__assignment_name] = ACTIONS(617), + [sym__file_descriptor] = ACTIONS(619), + [sym__backtick_open] = ACTIONS(621), + [sym__dollar_literal] = ACTIONS(623), + [sym__brace_expr_start] = ACTIONS(625), }, - [STATE(299)] = { - [sym__statement] = STATE(3354), - [sym__directive] = STATE(3286), - [sym_list] = STATE(3286), - [sym_pipeline] = STATE(3286), - [sym_negated_command] = STATE(3286), - [sym_subshell] = STATE(3286), - [sym_compound_statement] = STATE(3286), - [sym__control_flow] = STATE(3286), - [sym__branch] = STATE(3287), - [sym_if_statement] = STATE(3289), - [sym_case_statement] = STATE(3289), - [sym__loop] = STATE(3287), - [sym_for_statement] = STATE(3294), - [sym_c_style_for_statement] = STATE(3294), - [sym_while_statement] = STATE(3294), - [sym_until_statement] = STATE(3294), - [sym__jump] = STATE(3287), - [sym_return_statement] = STATE(3317), - [sym_break_statement] = STATE(3317), - [sym_continue_statement] = STATE(3317), - [sym_function_definition] = STATE(3286), - [sym__invocation] = STATE(3286), - [sym_command] = STATE(3337), - [sym__redirect_statement] = STATE(3286), - [sym__assignment] = STATE(3286), - [sym_variable_assignments] = STATE(3286), - [sym_variable_assignment] = STATE(1520), - [sym_declaration_command] = STATE(3365), - [sym_redirect] = STATE(1942), - [sym_heredoc_redirect] = STATE(1949), - [sym_test_command] = STATE(3286), - [sym_arithmetic_command] = STATE(3286), - [sym__word_like] = STATE(690), - [sym_concatenation] = STATE(690), - [sym__word_part] = STATE(3560), - [sym_brace_expression] = STATE(1513), - [sym__literal] = STATE(1521), - [sym_string] = STATE(1519), - [sym__expression] = STATE(1513), - [sym__access] = STATE(1521), - [sym_simple_expansion] = STATE(1522), - [sym_expansion] = STATE(1522), - [sym_command_substitution] = STATE(1521), - [sym_arithmetic_expansion] = STATE(1521), - [sym_process_substitution] = STATE(1521), - [aux_sym_subshell_repeat1] = STATE(2471), - [aux_sym_command_repeat1] = STATE(1161), - [sym_word] = ACTIONS(381), - [sym_shebang] = ACTIONS(387), - [anon_sym_BANG] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(393), - [anon_sym_if] = ACTIONS(397), - [anon_sym_case] = ACTIONS(399), - [anon_sym_for] = ACTIONS(401), - [anon_sym_select] = ACTIONS(403), - [anon_sym_LPAREN_LPAREN] = ACTIONS(405), - [anon_sym_while] = ACTIONS(407), - [anon_sym_until] = ACTIONS(409), - [anon_sym_return] = ACTIONS(411), - [anon_sym_break] = ACTIONS(413), - [anon_sym_continue] = ACTIONS(415), - [anon_sym_function] = ACTIONS(417), - [anon_sym_LBRACK] = ACTIONS(419), - [anon_sym_declare] = ACTIONS(421), - [anon_sym_typeset] = ACTIONS(421), - [anon_sym_export] = ACTIONS(421), - [anon_sym_readonly] = ACTIONS(421), - [anon_sym_local] = ACTIONS(421), - [anon_sym_eval] = ACTIONS(421), - [anon_sym_alias] = ACTIONS(421), - [anon_sym_let] = ACTIONS(421), - [anon_sym_LT] = ACTIONS(423), - [anon_sym_GT] = ACTIONS(423), - [anon_sym_GT_GT] = ACTIONS(425), - [anon_sym_AMP_GT] = ACTIONS(423), - [anon_sym_AMP_GT_GT] = ACTIONS(425), - [anon_sym_LT_AMP] = ACTIONS(425), - [anon_sym_GT_AMP] = ACTIONS(425), - [anon_sym_GT_PIPE] = ACTIONS(425), - [anon_sym_LT_GT] = ACTIONS(425), - [anon_sym_LT_LT_LT] = ACTIONS(425), - [anon_sym_LT_LT] = ACTIONS(427), - [anon_sym_LT_LT_DASH] = ACTIONS(429), - [anon_sym_LBRACK_LBRACK] = ACTIONS(431), - [aux_sym_brace_expression_token1] = ACTIONS(433), - [sym_number] = ACTIONS(435), - [anon_sym_DOLLAR] = ACTIONS(437), - [anon_sym_DQUOTE] = ACTIONS(439), - [sym_raw_string] = ACTIONS(435), - [sym_ansi_c_string] = ACTIONS(435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(443), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(445), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(447), - [anon_sym_LT_LPAREN] = ACTIONS(449), - [anon_sym_GT_LPAREN] = ACTIONS(449), + [STATE(303)] = { + [sym__statement] = STATE(3048), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1203), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1414), + [sym_heredoc_redirect] = STATE(1404), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(342), + [sym_concatenation] = STATE(342), + [sym__word_part] = STATE(3506), + [sym_brace_expression] = STATE(1209), + [sym__literal] = STATE(1217), + [sym_string] = STATE(1216), + [sym__expression] = STATE(1209), + [sym__access] = STATE(1217), + [sym_simple_expansion] = STATE(1224), + [sym_expansion] = STATE(1224), + [sym_command_substitution] = STATE(1217), + [sym_arithmetic_expansion] = STATE(1217), + [sym_process_substitution] = STATE(1217), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1192), + [sym_word] = ACTIONS(147), + [sym_shebang] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(155), + [anon_sym_LBRACE] = ACTIONS(157), + [anon_sym_if] = ACTIONS(159), + [anon_sym_case] = ACTIONS(161), + [anon_sym_for] = ACTIONS(169), + [anon_sym_select] = ACTIONS(171), + [anon_sym_LPAREN_LPAREN] = ACTIONS(173), + [anon_sym_while] = ACTIONS(175), + [anon_sym_until] = ACTIONS(177), + [anon_sym_return] = ACTIONS(179), + [anon_sym_break] = ACTIONS(181), + [anon_sym_continue] = ACTIONS(183), + [anon_sym_function] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(189), + [anon_sym_typeset] = ACTIONS(189), + [anon_sym_export] = ACTIONS(189), + [anon_sym_readonly] = ACTIONS(189), + [anon_sym_local] = ACTIONS(189), + [anon_sym_eval] = ACTIONS(189), + [anon_sym_alias] = ACTIONS(189), + [anon_sym_let] = ACTIONS(189), + [anon_sym_LT] = ACTIONS(191), + [anon_sym_GT] = ACTIONS(191), + [anon_sym_GT_GT] = ACTIONS(193), + [anon_sym_AMP_GT] = ACTIONS(191), + [anon_sym_AMP_GT_GT] = ACTIONS(193), + [anon_sym_LT_AMP] = ACTIONS(193), + [anon_sym_GT_AMP] = ACTIONS(193), + [anon_sym_GT_PIPE] = ACTIONS(193), + [anon_sym_LT_GT] = ACTIONS(193), + [anon_sym_LT_LT_LT] = ACTIONS(193), + [anon_sym_LT_LT] = ACTIONS(195), + [anon_sym_LT_LT_DASH] = ACTIONS(197), + [anon_sym_LBRACK_LBRACK] = ACTIONS(199), + [aux_sym_brace_expression_token1] = ACTIONS(201), + [sym_number] = ACTIONS(203), + [anon_sym_DOLLAR] = ACTIONS(205), + [anon_sym_DQUOTE] = ACTIONS(207), + [sym_raw_string] = ACTIONS(203), + [sym_ansi_c_string] = ACTIONS(203), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(209), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(213), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(215), + [anon_sym_LT_LPAREN] = ACTIONS(217), + [anon_sym_GT_LPAREN] = ACTIONS(217), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(451), - [sym__file_descriptor] = ACTIONS(453), - [sym__backtick_open] = ACTIONS(455), - [sym__dollar_literal] = ACTIONS(457), - [sym__brace_expr_start] = ACTIONS(459), + [sym__assignment_name] = ACTIONS(219), + [sym__file_descriptor] = ACTIONS(221), + [sym__backtick_open] = ACTIONS(223), + [sym__dollar_literal] = ACTIONS(225), + [sym__brace_expr_start] = ACTIONS(227), }, - [STATE(300)] = { - [sym__statement] = STATE(3165), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1237), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1591), - [sym_heredoc_redirect] = STATE(1655), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(638), - [sym_concatenation] = STATE(638), - [sym__word_part] = STATE(3557), - [sym_brace_expression] = STATE(1224), - [sym__literal] = STATE(1251), - [sym_string] = STATE(1250), - [sym__expression] = STATE(1224), - [sym__access] = STATE(1251), - [sym_simple_expansion] = STATE(1291), - [sym_expansion] = STATE(1291), - [sym_command_substitution] = STATE(1251), - [sym_arithmetic_expansion] = STATE(1251), - [sym_process_substitution] = STATE(1251), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1156), + [STATE(304)] = { + [sym__statement] = STATE(3121), + [sym__directive] = STATE(3021), + [sym_list] = STATE(3021), + [sym_pipeline] = STATE(3021), + [sym_negated_command] = STATE(3021), + [sym_subshell] = STATE(3021), + [sym_compound_statement] = STATE(3021), + [sym__control_flow] = STATE(3021), + [sym__branch] = STATE(3027), + [sym_if_statement] = STATE(3025), + [sym_case_statement] = STATE(3025), + [sym__loop] = STATE(3027), + [sym_for_statement] = STATE(3031), + [sym_c_style_for_statement] = STATE(3031), + [sym_while_statement] = STATE(3031), + [sym_until_statement] = STATE(3031), + [sym__jump] = STATE(3027), + [sym_return_statement] = STATE(3019), + [sym_break_statement] = STATE(3019), + [sym_continue_statement] = STATE(3019), + [sym_function_definition] = STATE(3021), + [sym__invocation] = STATE(3021), + [sym_command] = STATE(3003), + [sym__redirect_statement] = STATE(3021), + [sym__assignment] = STATE(3021), + [sym_variable_assignments] = STATE(3021), + [sym_variable_assignment] = STATE(1259), + [sym_declaration_command] = STATE(3044), + [sym_redirect] = STATE(1493), + [sym_heredoc_redirect] = STATE(1502), + [sym_test_command] = STATE(3021), + [sym_arithmetic_command] = STATE(3021), + [sym__word_like] = STATE(619), + [sym_concatenation] = STATE(619), + [sym__word_part] = STATE(3548), + [sym_brace_expression] = STATE(1263), + [sym__literal] = STATE(1302), + [sym_string] = STATE(1301), + [sym__expression] = STATE(1263), + [sym__access] = STATE(1302), + [sym_simple_expansion] = STATE(1319), + [sym_expansion] = STATE(1319), + [sym_command_substitution] = STATE(1302), + [sym_arithmetic_expansion] = STATE(1302), + [sym_process_substitution] = STATE(1302), + [aux_sym_subshell_repeat1] = STATE(2192), + [aux_sym_command_repeat1] = STATE(1195), [sym_word] = ACTIONS(235), [sym_shebang] = ACTIONS(151), [anon_sym_BANG] = ACTIONS(239), @@ -53849,556 +54236,856 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__dollar_literal] = ACTIONS(283), [sym__brace_expr_start] = ACTIONS(285), }, - [STATE(301)] = { - [sym__statement] = STATE(3361), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1570), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1938), - [sym_heredoc_redirect] = STATE(1894), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(681), - [sym_concatenation] = STATE(681), - [sym__word_part] = STATE(3600), - [sym_brace_expression] = STATE(1654), - [sym__literal] = STATE(1689), - [sym_string] = STATE(1688), - [sym__expression] = STATE(1654), - [sym__access] = STATE(1689), - [sym_simple_expansion] = STATE(1501), - [sym_expansion] = STATE(1501), - [sym_command_substitution] = STATE(1689), - [sym_arithmetic_expansion] = STATE(1689), - [sym_process_substitution] = STATE(1689), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1164), - [sym_word] = ACTIONS(633), + [STATE(305)] = { + [sym__statement] = STATE(3078), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1350), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1600), + [sym_heredoc_redirect] = STATE(1521), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(641), + [sym_concatenation] = STATE(641), + [sym__word_part] = STATE(3526), + [sym_brace_expression] = STATE(1273), + [sym__literal] = STATE(1334), + [sym_string] = STATE(1292), + [sym__expression] = STATE(1273), + [sym__access] = STATE(1334), + [sym_simple_expansion] = STATE(1242), + [sym_expansion] = STATE(1242), + [sym_command_substitution] = STATE(1334), + [sym_arithmetic_expansion] = STATE(1334), + [sym_process_substitution] = STATE(1334), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1196), + [sym_word] = ACTIONS(83), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(639), + [anon_sym_BANG] = ACTIONS(87), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(641), + [anon_sym_for] = ACTIONS(95), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(643), - [anon_sym_break] = ACTIONS(645), - [anon_sym_continue] = ACTIONS(647), + [anon_sym_return] = ACTIONS(97), + [anon_sym_break] = ACTIONS(99), + [anon_sym_continue] = ACTIONS(101), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(649), - [anon_sym_typeset] = ACTIONS(649), - [anon_sym_export] = ACTIONS(649), - [anon_sym_readonly] = ACTIONS(649), - [anon_sym_local] = ACTIONS(649), - [anon_sym_eval] = ACTIONS(649), - [anon_sym_alias] = ACTIONS(649), - [anon_sym_let] = ACTIONS(649), - [anon_sym_LT] = ACTIONS(651), - [anon_sym_GT] = ACTIONS(651), - [anon_sym_GT_GT] = ACTIONS(653), - [anon_sym_AMP_GT] = ACTIONS(651), - [anon_sym_AMP_GT_GT] = ACTIONS(653), - [anon_sym_LT_AMP] = ACTIONS(653), - [anon_sym_GT_AMP] = ACTIONS(653), - [anon_sym_GT_PIPE] = ACTIONS(653), - [anon_sym_LT_GT] = ACTIONS(653), - [anon_sym_LT_LT_LT] = ACTIONS(653), - [anon_sym_LT_LT] = ACTIONS(655), - [anon_sym_LT_LT_DASH] = ACTIONS(657), + [anon_sym_declare] = ACTIONS(103), + [anon_sym_typeset] = ACTIONS(103), + [anon_sym_export] = ACTIONS(103), + [anon_sym_readonly] = ACTIONS(103), + [anon_sym_local] = ACTIONS(103), + [anon_sym_eval] = ACTIONS(103), + [anon_sym_alias] = ACTIONS(103), + [anon_sym_let] = ACTIONS(103), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(107), + [anon_sym_AMP_GT] = ACTIONS(105), + [anon_sym_AMP_GT_GT] = ACTIONS(107), + [anon_sym_LT_AMP] = ACTIONS(107), + [anon_sym_GT_AMP] = ACTIONS(107), + [anon_sym_GT_PIPE] = ACTIONS(107), + [anon_sym_LT_GT] = ACTIONS(107), + [anon_sym_LT_LT_LT] = ACTIONS(107), + [anon_sym_LT_LT] = ACTIONS(109), + [anon_sym_LT_LT_DASH] = ACTIONS(111), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(659), - [sym_number] = ACTIONS(661), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(665), - [sym_raw_string] = ACTIONS(661), - [sym_ansi_c_string] = ACTIONS(661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(667), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(673), - [anon_sym_LT_LPAREN] = ACTIONS(675), - [anon_sym_GT_LPAREN] = ACTIONS(675), - [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(677), - [sym__file_descriptor] = ACTIONS(679), - [sym__backtick_open] = ACTIONS(681), - [sym__dollar_literal] = ACTIONS(683), - [sym__brace_expr_start] = ACTIONS(685), - }, - [STATE(302)] = { - [sym__statement] = STATE(3085), - [sym__directive] = STATE(3061), - [sym_list] = STATE(3061), - [sym_pipeline] = STATE(3061), - [sym_negated_command] = STATE(3061), - [sym_subshell] = STATE(3061), - [sym_compound_statement] = STATE(3061), - [sym__control_flow] = STATE(3061), - [sym__branch] = STATE(3087), - [sym_if_statement] = STATE(3097), - [sym_case_statement] = STATE(3097), - [sym__loop] = STATE(3087), - [sym_for_statement] = STATE(3115), - [sym_c_style_for_statement] = STATE(3115), - [sym_while_statement] = STATE(3115), - [sym_until_statement] = STATE(3115), - [sym__jump] = STATE(3087), - [sym_return_statement] = STATE(3119), - [sym_break_statement] = STATE(3119), - [sym_continue_statement] = STATE(3119), - [sym_function_definition] = STATE(3061), - [sym__invocation] = STATE(3061), - [sym_command] = STATE(3125), - [sym__redirect_statement] = STATE(3061), - [sym__assignment] = STATE(3061), - [sym_variable_assignments] = STATE(3061), - [sym_variable_assignment] = STATE(1178), - [sym_declaration_command] = STATE(3126), - [sym_redirect] = STATE(1388), - [sym_heredoc_redirect] = STATE(1419), - [sym_test_command] = STATE(3061), - [sym_arithmetic_command] = STATE(3061), - [sym__word_like] = STATE(596), - [sym_concatenation] = STATE(596), - [sym__word_part] = STATE(3585), - [sym_brace_expression] = STATE(1201), - [sym__literal] = STATE(1183), - [sym_string] = STATE(1214), - [sym__expression] = STATE(1201), - [sym__access] = STATE(1183), - [sym_simple_expansion] = STATE(1206), - [sym_expansion] = STATE(1206), - [sym_command_substitution] = STATE(1183), - [sym_arithmetic_expansion] = STATE(1183), - [sym_process_substitution] = STATE(1183), - [aux_sym_subshell_repeat1] = STATE(2379), - [aux_sym_command_repeat1] = STATE(1157), - [sym_word] = ACTIONS(147), - [sym_shebang] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_LBRACE] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_for] = ACTIONS(169), - [anon_sym_select] = ACTIONS(171), - [anon_sym_LPAREN_LPAREN] = ACTIONS(173), - [anon_sym_while] = ACTIONS(175), - [anon_sym_until] = ACTIONS(177), - [anon_sym_return] = ACTIONS(179), - [anon_sym_break] = ACTIONS(181), - [anon_sym_continue] = ACTIONS(183), - [anon_sym_function] = ACTIONS(185), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_declare] = ACTIONS(189), - [anon_sym_typeset] = ACTIONS(189), - [anon_sym_export] = ACTIONS(189), - [anon_sym_readonly] = ACTIONS(189), - [anon_sym_local] = ACTIONS(189), - [anon_sym_eval] = ACTIONS(189), - [anon_sym_alias] = ACTIONS(189), - [anon_sym_let] = ACTIONS(189), - [anon_sym_LT] = ACTIONS(191), - [anon_sym_GT] = ACTIONS(191), - [anon_sym_GT_GT] = ACTIONS(193), - [anon_sym_AMP_GT] = ACTIONS(191), - [anon_sym_AMP_GT_GT] = ACTIONS(193), - [anon_sym_LT_AMP] = ACTIONS(193), - [anon_sym_GT_AMP] = ACTIONS(193), - [anon_sym_GT_PIPE] = ACTIONS(193), - [anon_sym_LT_GT] = ACTIONS(193), - [anon_sym_LT_LT_LT] = ACTIONS(193), - [anon_sym_LT_LT] = ACTIONS(195), - [anon_sym_LT_LT_DASH] = ACTIONS(197), - [anon_sym_LBRACK_LBRACK] = ACTIONS(199), - [aux_sym_brace_expression_token1] = ACTIONS(201), - [sym_number] = ACTIONS(203), - [anon_sym_DOLLAR] = ACTIONS(205), - [anon_sym_DQUOTE] = ACTIONS(207), - [sym_raw_string] = ACTIONS(203), - [sym_ansi_c_string] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(211), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(213), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(215), - [anon_sym_LT_LPAREN] = ACTIONS(217), - [anon_sym_GT_LPAREN] = ACTIONS(217), + [aux_sym_brace_expression_token1] = ACTIONS(113), + [sym_number] = ACTIONS(115), + [anon_sym_DOLLAR] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(119), + [sym_raw_string] = ACTIONS(115), + [sym_ansi_c_string] = ACTIONS(115), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(121), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(123), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(125), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(127), + [anon_sym_LT_LPAREN] = ACTIONS(129), + [anon_sym_GT_LPAREN] = ACTIONS(129), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(219), - [sym__file_descriptor] = ACTIONS(221), - [sym__backtick_open] = ACTIONS(223), - [sym__dollar_literal] = ACTIONS(225), - [sym__brace_expr_start] = ACTIONS(227), + [sym__assignment_name] = ACTIONS(131), + [sym__file_descriptor] = ACTIONS(133), + [sym__backtick_open] = ACTIONS(135), + [sym__dollar_literal] = ACTIONS(137), + [sym__brace_expr_start] = ACTIONS(139), }, - [STATE(303)] = { - [sym__statement] = STATE(3304), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1586), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1893), - [sym_heredoc_redirect] = STATE(1896), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(697), - [sym_concatenation] = STATE(697), - [sym__word_part] = STATE(3569), - [sym_brace_expression] = STATE(1580), - [sym__literal] = STATE(1588), - [sym_string] = STATE(1585), - [sym__expression] = STATE(1580), - [sym__access] = STATE(1588), - [sym_simple_expansion] = STATE(1589), - [sym_expansion] = STATE(1589), - [sym_command_substitution] = STATE(1588), - [sym_arithmetic_expansion] = STATE(1588), - [sym_process_substitution] = STATE(1588), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1162), - [sym_word] = ACTIONS(473), + [STATE(306)] = { + [sym__statement] = STATE(3248), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1649), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1807), + [sym_heredoc_redirect] = STATE(1866), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(692), + [sym_concatenation] = STATE(692), + [sym__word_part] = STATE(3511), + [sym_brace_expression] = STATE(1500), + [sym__literal] = STATE(1518), + [sym_string] = STATE(1517), + [sym__expression] = STATE(1500), + [sym__access] = STATE(1518), + [sym_simple_expansion] = STATE(1607), + [sym_expansion] = STATE(1607), + [sym_command_substitution] = STATE(1518), + [sym_arithmetic_expansion] = STATE(1518), + [sym_process_substitution] = STATE(1518), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1193), + [sym_word] = ACTIONS(639), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(479), + [anon_sym_BANG] = ACTIONS(645), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(481), + [anon_sym_for] = ACTIONS(647), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(483), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(487), + [anon_sym_return] = ACTIONS(649), + [anon_sym_break] = ACTIONS(651), + [anon_sym_continue] = ACTIONS(653), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(489), - [anon_sym_typeset] = ACTIONS(489), - [anon_sym_export] = ACTIONS(489), - [anon_sym_readonly] = ACTIONS(489), - [anon_sym_local] = ACTIONS(489), - [anon_sym_eval] = ACTIONS(489), - [anon_sym_alias] = ACTIONS(489), - [anon_sym_let] = ACTIONS(489), - [anon_sym_LT] = ACTIONS(491), - [anon_sym_GT] = ACTIONS(491), - [anon_sym_GT_GT] = ACTIONS(493), - [anon_sym_AMP_GT] = ACTIONS(491), - [anon_sym_AMP_GT_GT] = ACTIONS(493), - [anon_sym_LT_AMP] = ACTIONS(493), - [anon_sym_GT_AMP] = ACTIONS(493), - [anon_sym_GT_PIPE] = ACTIONS(493), - [anon_sym_LT_GT] = ACTIONS(493), - [anon_sym_LT_LT_LT] = ACTIONS(493), - [anon_sym_LT_LT] = ACTIONS(495), - [anon_sym_LT_LT_DASH] = ACTIONS(497), + [anon_sym_declare] = ACTIONS(655), + [anon_sym_typeset] = ACTIONS(655), + [anon_sym_export] = ACTIONS(655), + [anon_sym_readonly] = ACTIONS(655), + [anon_sym_local] = ACTIONS(655), + [anon_sym_eval] = ACTIONS(655), + [anon_sym_alias] = ACTIONS(655), + [anon_sym_let] = ACTIONS(655), + [anon_sym_LT] = ACTIONS(657), + [anon_sym_GT] = ACTIONS(657), + [anon_sym_GT_GT] = ACTIONS(659), + [anon_sym_AMP_GT] = ACTIONS(657), + [anon_sym_AMP_GT_GT] = ACTIONS(659), + [anon_sym_LT_AMP] = ACTIONS(659), + [anon_sym_GT_AMP] = ACTIONS(659), + [anon_sym_GT_PIPE] = ACTIONS(659), + [anon_sym_LT_GT] = ACTIONS(659), + [anon_sym_LT_LT_LT] = ACTIONS(659), + [anon_sym_LT_LT] = ACTIONS(661), + [anon_sym_LT_LT_DASH] = ACTIONS(663), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(499), - [sym_number] = ACTIONS(501), - [anon_sym_DOLLAR] = ACTIONS(503), - [anon_sym_DQUOTE] = ACTIONS(505), - [sym_raw_string] = ACTIONS(501), - [sym_ansi_c_string] = ACTIONS(501), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(507), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(509), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(511), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(513), - [anon_sym_LT_LPAREN] = ACTIONS(515), - [anon_sym_GT_LPAREN] = ACTIONS(515), + [aux_sym_brace_expression_token1] = ACTIONS(665), + [sym_number] = ACTIONS(667), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(671), + [sym_raw_string] = ACTIONS(667), + [sym_ansi_c_string] = ACTIONS(667), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(673), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(677), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(679), + [anon_sym_LT_LPAREN] = ACTIONS(681), + [anon_sym_GT_LPAREN] = ACTIONS(681), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(517), - [sym__file_descriptor] = ACTIONS(519), - [sym__backtick_open] = ACTIONS(521), - [sym__dollar_literal] = ACTIONS(523), - [sym__brace_expr_start] = ACTIONS(525), - }, - [STATE(304)] = { - [sym__statement] = STATE(3328), - [sym__directive] = STATE(3278), - [sym_list] = STATE(3278), - [sym_pipeline] = STATE(3278), - [sym_negated_command] = STATE(3278), - [sym_subshell] = STATE(3278), - [sym_compound_statement] = STATE(3278), - [sym__control_flow] = STATE(3278), - [sym__branch] = STATE(3279), - [sym_if_statement] = STATE(3280), - [sym_case_statement] = STATE(3280), - [sym__loop] = STATE(3279), - [sym_for_statement] = STATE(3275), - [sym_c_style_for_statement] = STATE(3275), - [sym_while_statement] = STATE(3275), - [sym_until_statement] = STATE(3275), - [sym__jump] = STATE(3279), - [sym_return_statement] = STATE(3282), - [sym_break_statement] = STATE(3282), - [sym_continue_statement] = STATE(3282), - [sym_function_definition] = STATE(3278), - [sym__invocation] = STATE(3278), - [sym_command] = STATE(3285), - [sym__redirect_statement] = STATE(3278), - [sym__assignment] = STATE(3278), - [sym_variable_assignments] = STATE(3278), - [sym_variable_assignment] = STATE(1536), - [sym_declaration_command] = STATE(3290), - [sym_redirect] = STATE(1903), - [sym_heredoc_redirect] = STATE(1950), - [sym_test_command] = STATE(3278), - [sym_arithmetic_command] = STATE(3278), - [sym__word_like] = STATE(680), - [sym_concatenation] = STATE(680), - [sym__word_part] = STATE(3622), - [sym_brace_expression] = STATE(1648), - [sym__literal] = STATE(1665), - [sym_string] = STATE(1664), - [sym__expression] = STATE(1648), - [sym__access] = STATE(1665), - [sym_simple_expansion] = STATE(1674), - [sym_expansion] = STATE(1674), - [sym_command_substitution] = STATE(1665), - [sym_arithmetic_expansion] = STATE(1665), - [sym_process_substitution] = STATE(1665), - [aux_sym_subshell_repeat1] = STATE(2488), - [aux_sym_command_repeat1] = STATE(1158), + [sym__assignment_name] = ACTIONS(683), + [sym__file_descriptor] = ACTIONS(685), + [sym__backtick_open] = ACTIONS(687), + [sym__dollar_literal] = ACTIONS(689), + [sym__brace_expr_start] = ACTIONS(691), + }, + [STATE(307)] = { + [sym__statement] = STATE(3270), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1590), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1836), + [sym_heredoc_redirect] = STATE(1837), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(702), + [sym_concatenation] = STATE(702), + [sym__word_part] = STATE(3529), + [sym_brace_expression] = STATE(1596), + [sym__literal] = STATE(1625), + [sym_string] = STATE(1622), + [sym__expression] = STATE(1596), + [sym__access] = STATE(1625), + [sym_simple_expansion] = STATE(1626), + [sym_expansion] = STATE(1626), + [sym_command_substitution] = STATE(1625), + [sym_arithmetic_expansion] = STATE(1625), + [sym_process_substitution] = STATE(1625), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1190), [sym_word] = ACTIONS(287), - [sym_shebang] = ACTIONS(293), - [anon_sym_BANG] = ACTIONS(295), - [anon_sym_LPAREN] = ACTIONS(297), - [anon_sym_LBRACE] = ACTIONS(299), - [anon_sym_if] = ACTIONS(303), - [anon_sym_case] = ACTIONS(305), - [anon_sym_for] = ACTIONS(307), - [anon_sym_select] = ACTIONS(309), - [anon_sym_LPAREN_LPAREN] = ACTIONS(311), - [anon_sym_while] = ACTIONS(313), - [anon_sym_until] = ACTIONS(315), - [anon_sym_return] = ACTIONS(317), - [anon_sym_break] = ACTIONS(319), - [anon_sym_continue] = ACTIONS(321), - [anon_sym_function] = ACTIONS(323), - [anon_sym_LBRACK] = ACTIONS(325), - [anon_sym_declare] = ACTIONS(327), - [anon_sym_typeset] = ACTIONS(327), - [anon_sym_export] = ACTIONS(327), - [anon_sym_readonly] = ACTIONS(327), - [anon_sym_local] = ACTIONS(327), - [anon_sym_eval] = ACTIONS(327), - [anon_sym_alias] = ACTIONS(327), - [anon_sym_let] = ACTIONS(327), - [anon_sym_LT] = ACTIONS(329), - [anon_sym_GT] = ACTIONS(329), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(329), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [anon_sym_GT_PIPE] = ACTIONS(331), - [anon_sym_LT_GT] = ACTIONS(331), - [anon_sym_LT_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(335), - [anon_sym_LBRACK_LBRACK] = ACTIONS(337), - [aux_sym_brace_expression_token1] = ACTIONS(339), - [sym_number] = ACTIONS(341), - [anon_sym_DOLLAR] = ACTIONS(343), - [anon_sym_DQUOTE] = ACTIONS(345), - [sym_raw_string] = ACTIONS(341), - [sym_ansi_c_string] = ACTIONS(341), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(347), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(349), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(351), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(353), - [anon_sym_LT_LPAREN] = ACTIONS(355), - [anon_sym_GT_LPAREN] = ACTIONS(355), + [sym_shebang] = ACTIONS(11), + [anon_sym_BANG] = ACTIONS(293), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_if] = ACTIONS(19), + [anon_sym_case] = ACTIONS(21), + [anon_sym_for] = ACTIONS(297), + [anon_sym_select] = ACTIONS(25), + [anon_sym_LPAREN_LPAREN] = ACTIONS(27), + [anon_sym_while] = ACTIONS(29), + [anon_sym_until] = ACTIONS(31), + [anon_sym_return] = ACTIONS(299), + [anon_sym_break] = ACTIONS(301), + [anon_sym_continue] = ACTIONS(303), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(41), + [anon_sym_declare] = ACTIONS(305), + [anon_sym_typeset] = ACTIONS(305), + [anon_sym_export] = ACTIONS(305), + [anon_sym_readonly] = ACTIONS(305), + [anon_sym_local] = ACTIONS(305), + [anon_sym_eval] = ACTIONS(305), + [anon_sym_alias] = ACTIONS(305), + [anon_sym_let] = ACTIONS(305), + [anon_sym_LT] = ACTIONS(307), + [anon_sym_GT] = ACTIONS(307), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(307), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_GT_PIPE] = ACTIONS(309), + [anon_sym_LT_GT] = ACTIONS(309), + [anon_sym_LT_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(311), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [anon_sym_LBRACK_LBRACK] = ACTIONS(53), + [aux_sym_brace_expression_token1] = ACTIONS(315), + [sym_number] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(321), + [sym_raw_string] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(323), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(327), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(329), + [anon_sym_LT_LPAREN] = ACTIONS(331), + [anon_sym_GT_LPAREN] = ACTIONS(331), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(357), - [sym__file_descriptor] = ACTIONS(359), - [sym__backtick_open] = ACTIONS(361), - [sym__dollar_literal] = ACTIONS(363), - [sym__brace_expr_start] = ACTIONS(365), - }, - [STATE(305)] = { - [sym__statement] = STATE(3330), - [sym__directive] = STATE(2968), - [sym_list] = STATE(2968), - [sym_pipeline] = STATE(2968), - [sym_negated_command] = STATE(2968), - [sym_subshell] = STATE(2968), - [sym_compound_statement] = STATE(2968), - [sym__control_flow] = STATE(2968), - [sym__branch] = STATE(2973), - [sym_if_statement] = STATE(2975), - [sym_case_statement] = STATE(2975), - [sym__loop] = STATE(2973), - [sym_for_statement] = STATE(2987), - [sym_c_style_for_statement] = STATE(2987), - [sym_while_statement] = STATE(2987), - [sym_until_statement] = STATE(2987), - [sym__jump] = STATE(2973), - [sym_return_statement] = STATE(2961), - [sym_break_statement] = STATE(2961), - [sym_continue_statement] = STATE(2961), - [sym_function_definition] = STATE(2968), - [sym__invocation] = STATE(2968), - [sym_command] = STATE(2986), - [sym__redirect_statement] = STATE(2968), - [sym__assignment] = STATE(2968), - [sym_variable_assignments] = STATE(2968), - [sym_variable_assignment] = STATE(1653), - [sym_declaration_command] = STATE(2971), - [sym_redirect] = STATE(1932), - [sym_heredoc_redirect] = STATE(1933), - [sym_test_command] = STATE(2968), - [sym_arithmetic_command] = STATE(2968), - [sym__word_like] = STATE(678), - [sym_concatenation] = STATE(678), - [sym__word_part] = STATE(3575), - [sym_brace_expression] = STATE(1512), - [sym__literal] = STATE(1537), - [sym_string] = STATE(1535), - [sym__expression] = STATE(1512), - [sym__access] = STATE(1537), - [sym_simple_expansion] = STATE(1538), - [sym_expansion] = STATE(1538), - [sym_command_substitution] = STATE(1537), - [sym_arithmetic_expansion] = STATE(1537), - [sym_process_substitution] = STATE(1537), - [aux_sym_subshell_repeat1] = STATE(2043), - [aux_sym_command_repeat1] = STATE(1160), - [sym_word] = ACTIONS(539), + [sym__assignment_name] = ACTIONS(333), + [sym__file_descriptor] = ACTIONS(335), + [sym__backtick_open] = ACTIONS(337), + [sym__dollar_literal] = ACTIONS(339), + [sym__brace_expr_start] = ACTIONS(341), + }, + [STATE(308)] = { + [sym__statement] = STATE(3083), + [sym__directive] = STATE(2928), + [sym_list] = STATE(2928), + [sym_pipeline] = STATE(2928), + [sym_negated_command] = STATE(2928), + [sym_subshell] = STATE(2928), + [sym_compound_statement] = STATE(2928), + [sym__control_flow] = STATE(2928), + [sym__branch] = STATE(2911), + [sym_if_statement] = STATE(2909), + [sym_case_statement] = STATE(2909), + [sym__loop] = STATE(2911), + [sym_for_statement] = STATE(2914), + [sym_c_style_for_statement] = STATE(2914), + [sym_while_statement] = STATE(2914), + [sym_until_statement] = STATE(2914), + [sym__jump] = STATE(2911), + [sym_return_statement] = STATE(2918), + [sym_break_statement] = STATE(2918), + [sym_continue_statement] = STATE(2918), + [sym_function_definition] = STATE(2928), + [sym__invocation] = STATE(2928), + [sym_command] = STATE(2925), + [sym__redirect_statement] = STATE(2928), + [sym__assignment] = STATE(2928), + [sym_variable_assignments] = STATE(2928), + [sym_variable_assignment] = STATE(1337), + [sym_declaration_command] = STATE(2924), + [sym_redirect] = STATE(1564), + [sym_heredoc_redirect] = STATE(1565), + [sym_test_command] = STATE(2928), + [sym_arithmetic_command] = STATE(2928), + [sym__word_like] = STATE(628), + [sym_concatenation] = STATE(628), + [sym__word_part] = STATE(3512), + [sym_brace_expression] = STATE(1331), + [sym__literal] = STATE(1338), + [sym_string] = STATE(1265), + [sym__expression] = STATE(1331), + [sym__access] = STATE(1338), + [sym_simple_expansion] = STATE(1342), + [sym_expansion] = STATE(1342), + [sym_command_substitution] = STATE(1338), + [sym_arithmetic_expansion] = STATE(1338), + [sym_process_substitution] = STATE(1338), + [aux_sym_subshell_repeat1] = STATE(1958), + [aux_sym_command_repeat1] = STATE(1189), + [sym_word] = ACTIONS(7), [sym_shebang] = ACTIONS(11), - [anon_sym_BANG] = ACTIONS(545), + [anon_sym_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_if] = ACTIONS(19), [anon_sym_case] = ACTIONS(21), - [anon_sym_for] = ACTIONS(547), + [anon_sym_for] = ACTIONS(23), [anon_sym_select] = ACTIONS(25), [anon_sym_LPAREN_LPAREN] = ACTIONS(27), [anon_sym_while] = ACTIONS(29), [anon_sym_until] = ACTIONS(31), - [anon_sym_return] = ACTIONS(549), - [anon_sym_break] = ACTIONS(551), - [anon_sym_continue] = ACTIONS(553), + [anon_sym_return] = ACTIONS(33), + [anon_sym_break] = ACTIONS(35), + [anon_sym_continue] = ACTIONS(37), [anon_sym_function] = ACTIONS(39), [anon_sym_LBRACK] = ACTIONS(41), - [anon_sym_declare] = ACTIONS(555), - [anon_sym_typeset] = ACTIONS(555), - [anon_sym_export] = ACTIONS(555), - [anon_sym_readonly] = ACTIONS(555), - [anon_sym_local] = ACTIONS(555), - [anon_sym_eval] = ACTIONS(555), - [anon_sym_alias] = ACTIONS(555), - [anon_sym_let] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(557), - [anon_sym_GT] = ACTIONS(557), - [anon_sym_GT_GT] = ACTIONS(559), - [anon_sym_AMP_GT] = ACTIONS(557), - [anon_sym_AMP_GT_GT] = ACTIONS(559), - [anon_sym_LT_AMP] = ACTIONS(559), - [anon_sym_GT_AMP] = ACTIONS(559), - [anon_sym_GT_PIPE] = ACTIONS(559), - [anon_sym_LT_GT] = ACTIONS(559), - [anon_sym_LT_LT_LT] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(561), - [anon_sym_LT_LT_DASH] = ACTIONS(563), + [anon_sym_declare] = ACTIONS(43), + [anon_sym_typeset] = ACTIONS(43), + [anon_sym_export] = ACTIONS(43), + [anon_sym_readonly] = ACTIONS(43), + [anon_sym_local] = ACTIONS(43), + [anon_sym_eval] = ACTIONS(43), + [anon_sym_alias] = ACTIONS(43), + [anon_sym_let] = ACTIONS(43), + [anon_sym_LT] = ACTIONS(45), + [anon_sym_GT] = ACTIONS(45), + [anon_sym_GT_GT] = ACTIONS(47), + [anon_sym_AMP_GT] = ACTIONS(45), + [anon_sym_AMP_GT_GT] = ACTIONS(47), + [anon_sym_LT_AMP] = ACTIONS(47), + [anon_sym_GT_AMP] = ACTIONS(47), + [anon_sym_GT_PIPE] = ACTIONS(47), + [anon_sym_LT_GT] = ACTIONS(47), + [anon_sym_LT_LT_LT] = ACTIONS(47), + [anon_sym_LT_LT] = ACTIONS(49), + [anon_sym_LT_LT_DASH] = ACTIONS(51), [anon_sym_LBRACK_LBRACK] = ACTIONS(53), - [aux_sym_brace_expression_token1] = ACTIONS(565), - [sym_number] = ACTIONS(567), - [anon_sym_DOLLAR] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(571), - [sym_raw_string] = ACTIONS(567), - [sym_ansi_c_string] = ACTIONS(567), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(573), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(575), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(577), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(579), - [anon_sym_LT_LPAREN] = ACTIONS(581), - [anon_sym_GT_LPAREN] = ACTIONS(581), + [aux_sym_brace_expression_token1] = ACTIONS(55), + [sym_number] = ACTIONS(57), + [anon_sym_DOLLAR] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [sym_raw_string] = ACTIONS(57), + [sym_ansi_c_string] = ACTIONS(57), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(67), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(69), + [anon_sym_LT_LPAREN] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(71), + [sym_comment] = ACTIONS(3), + [sym__assignment_name] = ACTIONS(73), + [sym__file_descriptor] = ACTIONS(75), + [sym__backtick_open] = ACTIONS(77), + [sym__dollar_literal] = ACTIONS(79), + [sym__brace_expr_start] = ACTIONS(81), + }, + [STATE(309)] = { + [sym__heredoc] = STATE(310), + [aux_sym_program_repeat1] = STATE(316), + [aux_sym__statement_end_repeat1] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(934), + [sym_word] = ACTIONS(936), + [anon_sym_LF] = ACTIONS(938), + [sym_shebang] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_RPAREN] = ACTIONS(934), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_RBRACE] = ACTIONS(934), + [anon_sym_if] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_SEMI_SEMI] = ACTIONS(936), + [anon_sym_SEMI_AMP] = ACTIONS(934), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(934), + [anon_sym_for] = ACTIONS(936), + [anon_sym_select] = ACTIONS(936), + [anon_sym_LPAREN_LPAREN] = ACTIONS(934), + [anon_sym_while] = ACTIONS(936), + [anon_sym_until] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_function] = ACTIONS(936), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_declare] = ACTIONS(936), + [anon_sym_typeset] = ACTIONS(936), + [anon_sym_export] = ACTIONS(936), + [anon_sym_readonly] = ACTIONS(936), + [anon_sym_local] = ACTIONS(936), + [anon_sym_eval] = ACTIONS(936), + [anon_sym_alias] = ACTIONS(936), + [anon_sym_let] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(936), + [anon_sym_GT] = ACTIONS(936), + [anon_sym_GT_GT] = ACTIONS(934), + [anon_sym_AMP_GT] = ACTIONS(936), + [anon_sym_AMP_GT_GT] = ACTIONS(934), + [anon_sym_LT_AMP] = ACTIONS(934), + [anon_sym_GT_AMP] = ACTIONS(934), + [anon_sym_GT_PIPE] = ACTIONS(934), + [anon_sym_LT_GT] = ACTIONS(934), + [anon_sym_LT_LT_LT] = ACTIONS(934), + [anon_sym_LT_LT] = ACTIONS(936), + [anon_sym_LT_LT_DASH] = ACTIONS(934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(936), + [aux_sym_brace_expression_token1] = ACTIONS(934), + [sym_number] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_raw_string] = ACTIONS(934), + [sym_ansi_c_string] = ACTIONS(934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(936), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(934), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(934), + [anon_sym_LT_LPAREN] = ACTIONS(934), + [anon_sym_GT_LPAREN] = ACTIONS(934), + [sym_comment] = ACTIONS(3), + [sym_heredoc_body] = ACTIONS(940), + [sym_heredoc_end] = ACTIONS(942), + [sym__assignment_name] = ACTIONS(934), + [sym__file_descriptor] = ACTIONS(934), + [sym__backtick_open] = ACTIONS(934), + [sym__dollar_literal] = ACTIONS(934), + [sym__brace_expr_start] = ACTIONS(934), + }, + [STATE(310)] = { + [sym__heredoc] = STATE(310), + [aux_sym__statement_end_repeat1] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(944), + [sym_word] = ACTIONS(946), + [anon_sym_LF] = ACTIONS(944), + [sym_shebang] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_RPAREN] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_RBRACE] = ACTIONS(944), + [anon_sym_if] = ACTIONS(946), + [anon_sym_case] = ACTIONS(946), + [anon_sym_SEMI_SEMI] = ACTIONS(946), + [anon_sym_SEMI_AMP] = ACTIONS(944), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(944), + [anon_sym_for] = ACTIONS(946), + [anon_sym_select] = ACTIONS(946), + [anon_sym_LPAREN_LPAREN] = ACTIONS(944), + [anon_sym_while] = ACTIONS(946), + [anon_sym_until] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_function] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_typeset] = ACTIONS(946), + [anon_sym_export] = ACTIONS(946), + [anon_sym_readonly] = ACTIONS(946), + [anon_sym_local] = ACTIONS(946), + [anon_sym_eval] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(946), + [anon_sym_GT_GT] = ACTIONS(944), + [anon_sym_AMP_GT] = ACTIONS(946), + [anon_sym_AMP_GT_GT] = ACTIONS(944), + [anon_sym_LT_AMP] = ACTIONS(944), + [anon_sym_GT_AMP] = ACTIONS(944), + [anon_sym_GT_PIPE] = ACTIONS(944), + [anon_sym_LT_GT] = ACTIONS(944), + [anon_sym_LT_LT_LT] = ACTIONS(944), + [anon_sym_LT_LT] = ACTIONS(946), + [anon_sym_LT_LT_DASH] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [aux_sym_brace_expression_token1] = ACTIONS(944), + [sym_number] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym_raw_string] = ACTIONS(944), + [sym_ansi_c_string] = ACTIONS(944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(946), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(944), + [anon_sym_LT_LPAREN] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + [sym_heredoc_body] = ACTIONS(948), + [sym_heredoc_end] = ACTIONS(951), + [sym__assignment_name] = ACTIONS(944), + [sym__file_descriptor] = ACTIONS(944), + [sym__backtick_open] = ACTIONS(944), + [sym__dollar_literal] = ACTIONS(944), + [sym__brace_expr_start] = ACTIONS(944), + }, + [STATE(311)] = { + [sym__heredoc] = STATE(313), + [aux_sym_program_repeat1] = STATE(333), + [aux_sym__statement_end_repeat1] = STATE(313), + [sym_word] = ACTIONS(936), + [anon_sym_LF] = ACTIONS(954), + [sym_shebang] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_esac] = ACTIONS(936), + [anon_sym_SEMI_SEMI] = ACTIONS(936), + [anon_sym_SEMI_AMP] = ACTIONS(934), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(934), + [anon_sym_for] = ACTIONS(936), + [anon_sym_select] = ACTIONS(936), + [anon_sym_LPAREN_LPAREN] = ACTIONS(934), + [anon_sym_while] = ACTIONS(936), + [anon_sym_until] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_function] = ACTIONS(936), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_declare] = ACTIONS(936), + [anon_sym_typeset] = ACTIONS(936), + [anon_sym_export] = ACTIONS(936), + [anon_sym_readonly] = ACTIONS(936), + [anon_sym_local] = ACTIONS(936), + [anon_sym_eval] = ACTIONS(936), + [anon_sym_alias] = ACTIONS(936), + [anon_sym_let] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(936), + [anon_sym_GT] = ACTIONS(936), + [anon_sym_GT_GT] = ACTIONS(934), + [anon_sym_AMP_GT] = ACTIONS(936), + [anon_sym_AMP_GT_GT] = ACTIONS(934), + [anon_sym_LT_AMP] = ACTIONS(934), + [anon_sym_GT_AMP] = ACTIONS(934), + [anon_sym_GT_PIPE] = ACTIONS(934), + [anon_sym_LT_GT] = ACTIONS(934), + [anon_sym_LT_LT_LT] = ACTIONS(934), + [anon_sym_LT_LT] = ACTIONS(936), + [anon_sym_LT_LT_DASH] = ACTIONS(934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(936), + [aux_sym_brace_expression_token1] = ACTIONS(934), + [sym_number] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_raw_string] = ACTIONS(934), + [sym_ansi_c_string] = ACTIONS(934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(936), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(934), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(934), + [anon_sym_LT_LPAREN] = ACTIONS(934), + [anon_sym_GT_LPAREN] = ACTIONS(934), + [sym_comment] = ACTIONS(3), + [sym_heredoc_body] = ACTIONS(956), + [sym_heredoc_end] = ACTIONS(958), + [sym__assignment_name] = ACTIONS(934), + [sym__file_descriptor] = ACTIONS(934), + [sym__backtick_open] = ACTIONS(934), + [sym__dollar_literal] = ACTIONS(934), + [sym__brace_expr_start] = ACTIONS(934), + }, + [STATE(312)] = { + [ts_builtin_sym_end] = ACTIONS(960), + [sym_word] = ACTIONS(962), + [anon_sym_LF] = ACTIONS(960), + [sym_shebang] = ACTIONS(960), + [anon_sym_BANG] = ACTIONS(962), + [anon_sym_LPAREN] = ACTIONS(962), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_if] = ACTIONS(962), + [anon_sym_case] = ACTIONS(962), + [anon_sym_SEMI_SEMI] = ACTIONS(962), + [anon_sym_SEMI_AMP] = ACTIONS(960), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(960), + [anon_sym_for] = ACTIONS(962), + [anon_sym_select] = ACTIONS(962), + [anon_sym_LPAREN_LPAREN] = ACTIONS(960), + [anon_sym_while] = ACTIONS(962), + [anon_sym_until] = ACTIONS(962), + [anon_sym_return] = ACTIONS(962), + [anon_sym_break] = ACTIONS(962), + [anon_sym_continue] = ACTIONS(962), + [anon_sym_function] = ACTIONS(962), + [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_declare] = ACTIONS(962), + [anon_sym_typeset] = ACTIONS(962), + [anon_sym_export] = ACTIONS(962), + [anon_sym_readonly] = ACTIONS(962), + [anon_sym_local] = ACTIONS(962), + [anon_sym_eval] = ACTIONS(962), + [anon_sym_alias] = ACTIONS(962), + [anon_sym_let] = ACTIONS(962), + [anon_sym_LT] = ACTIONS(962), + [anon_sym_GT] = ACTIONS(962), + [anon_sym_GT_GT] = ACTIONS(960), + [anon_sym_AMP_GT] = ACTIONS(962), + [anon_sym_AMP_GT_GT] = ACTIONS(960), + [anon_sym_LT_AMP] = ACTIONS(960), + [anon_sym_GT_AMP] = ACTIONS(960), + [anon_sym_GT_PIPE] = ACTIONS(960), + [anon_sym_LT_GT] = ACTIONS(960), + [anon_sym_LT_LT_LT] = ACTIONS(960), + [anon_sym_LT_LT] = ACTIONS(962), + [anon_sym_LT_LT_DASH] = ACTIONS(960), + [anon_sym_LBRACK_LBRACK] = ACTIONS(962), + [aux_sym_brace_expression_token1] = ACTIONS(960), + [sym_number] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(962), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym_raw_string] = ACTIONS(960), + [sym_ansi_c_string] = ACTIONS(960), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(960), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(962), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(960), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(960), + [anon_sym_LT_LPAREN] = ACTIONS(960), + [anon_sym_GT_LPAREN] = ACTIONS(960), + [sym_comment] = ACTIONS(3), + [sym_heredoc_body] = ACTIONS(960), + [sym_heredoc_end] = ACTIONS(960), + [sym__assignment_name] = ACTIONS(960), + [sym__file_descriptor] = ACTIONS(960), + [sym__backtick_open] = ACTIONS(960), + [sym__dollar_literal] = ACTIONS(960), + [sym__brace_expr_start] = ACTIONS(960), + }, + [STATE(313)] = { + [sym__heredoc] = STATE(313), + [aux_sym__statement_end_repeat1] = STATE(313), + [sym_word] = ACTIONS(946), + [anon_sym_LF] = ACTIONS(944), + [sym_shebang] = ACTIONS(944), + [anon_sym_BANG] = ACTIONS(946), + [anon_sym_LPAREN] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_if] = ACTIONS(946), + [anon_sym_case] = ACTIONS(946), + [anon_sym_esac] = ACTIONS(946), + [anon_sym_SEMI_SEMI] = ACTIONS(946), + [anon_sym_SEMI_AMP] = ACTIONS(944), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(944), + [anon_sym_for] = ACTIONS(946), + [anon_sym_select] = ACTIONS(946), + [anon_sym_LPAREN_LPAREN] = ACTIONS(944), + [anon_sym_while] = ACTIONS(946), + [anon_sym_until] = ACTIONS(946), + [anon_sym_return] = ACTIONS(946), + [anon_sym_break] = ACTIONS(946), + [anon_sym_continue] = ACTIONS(946), + [anon_sym_function] = ACTIONS(946), + [anon_sym_LBRACK] = ACTIONS(946), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_typeset] = ACTIONS(946), + [anon_sym_export] = ACTIONS(946), + [anon_sym_readonly] = ACTIONS(946), + [anon_sym_local] = ACTIONS(946), + [anon_sym_eval] = ACTIONS(946), + [anon_sym_alias] = ACTIONS(946), + [anon_sym_let] = ACTIONS(946), + [anon_sym_LT] = ACTIONS(946), + [anon_sym_GT] = ACTIONS(946), + [anon_sym_GT_GT] = ACTIONS(944), + [anon_sym_AMP_GT] = ACTIONS(946), + [anon_sym_AMP_GT_GT] = ACTIONS(944), + [anon_sym_LT_AMP] = ACTIONS(944), + [anon_sym_GT_AMP] = ACTIONS(944), + [anon_sym_GT_PIPE] = ACTIONS(944), + [anon_sym_LT_GT] = ACTIONS(944), + [anon_sym_LT_LT_LT] = ACTIONS(944), + [anon_sym_LT_LT] = ACTIONS(946), + [anon_sym_LT_LT_DASH] = ACTIONS(944), + [anon_sym_LBRACK_LBRACK] = ACTIONS(946), + [aux_sym_brace_expression_token1] = ACTIONS(944), + [sym_number] = ACTIONS(944), + [anon_sym_DOLLAR] = ACTIONS(946), + [anon_sym_DQUOTE] = ACTIONS(944), + [sym_raw_string] = ACTIONS(944), + [sym_ansi_c_string] = ACTIONS(944), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(946), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(944), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(944), + [anon_sym_LT_LPAREN] = ACTIONS(944), + [anon_sym_GT_LPAREN] = ACTIONS(944), + [sym_comment] = ACTIONS(3), + [sym_heredoc_body] = ACTIONS(964), + [sym_heredoc_end] = ACTIONS(967), + [sym__assignment_name] = ACTIONS(944), + [sym__file_descriptor] = ACTIONS(944), + [sym__backtick_open] = ACTIONS(944), + [sym__dollar_literal] = ACTIONS(944), + [sym__brace_expr_start] = ACTIONS(944), + }, + [STATE(314)] = { + [sym__heredoc] = STATE(317), + [aux_sym_program_repeat1] = STATE(340), + [aux_sym__statement_end_repeat1] = STATE(317), + [sym_word] = ACTIONS(936), + [anon_sym_LF] = ACTIONS(970), + [sym_shebang] = ACTIONS(934), + [anon_sym_BANG] = ACTIONS(936), + [anon_sym_LPAREN] = ACTIONS(936), + [anon_sym_LBRACE] = ACTIONS(936), + [anon_sym_if] = ACTIONS(936), + [anon_sym_fi] = ACTIONS(936), + [anon_sym_elif] = ACTIONS(936), + [anon_sym_else] = ACTIONS(936), + [anon_sym_case] = ACTIONS(936), + [anon_sym_for] = ACTIONS(936), + [anon_sym_select] = ACTIONS(936), + [anon_sym_LPAREN_LPAREN] = ACTIONS(934), + [anon_sym_while] = ACTIONS(936), + [anon_sym_until] = ACTIONS(936), + [anon_sym_return] = ACTIONS(936), + [anon_sym_break] = ACTIONS(936), + [anon_sym_continue] = ACTIONS(936), + [anon_sym_function] = ACTIONS(936), + [anon_sym_LBRACK] = ACTIONS(936), + [anon_sym_declare] = ACTIONS(936), + [anon_sym_typeset] = ACTIONS(936), + [anon_sym_export] = ACTIONS(936), + [anon_sym_readonly] = ACTIONS(936), + [anon_sym_local] = ACTIONS(936), + [anon_sym_eval] = ACTIONS(936), + [anon_sym_alias] = ACTIONS(936), + [anon_sym_let] = ACTIONS(936), + [anon_sym_LT] = ACTIONS(936), + [anon_sym_GT] = ACTIONS(936), + [anon_sym_GT_GT] = ACTIONS(934), + [anon_sym_AMP_GT] = ACTIONS(936), + [anon_sym_AMP_GT_GT] = ACTIONS(934), + [anon_sym_LT_AMP] = ACTIONS(934), + [anon_sym_GT_AMP] = ACTIONS(934), + [anon_sym_GT_PIPE] = ACTIONS(934), + [anon_sym_LT_GT] = ACTIONS(934), + [anon_sym_LT_LT_LT] = ACTIONS(934), + [anon_sym_LT_LT] = ACTIONS(936), + [anon_sym_LT_LT_DASH] = ACTIONS(934), + [anon_sym_LBRACK_LBRACK] = ACTIONS(936), + [aux_sym_brace_expression_token1] = ACTIONS(934), + [sym_number] = ACTIONS(934), + [anon_sym_DOLLAR] = ACTIONS(936), + [anon_sym_DQUOTE] = ACTIONS(934), + [sym_raw_string] = ACTIONS(934), + [sym_ansi_c_string] = ACTIONS(934), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(934), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(936), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(934), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(934), + [anon_sym_LT_LPAREN] = ACTIONS(934), + [anon_sym_GT_LPAREN] = ACTIONS(934), [sym_comment] = ACTIONS(3), - [sym__assignment_name] = ACTIONS(583), - [sym__file_descriptor] = ACTIONS(585), - [sym__backtick_open] = ACTIONS(587), - [sym__dollar_literal] = ACTIONS(589), - [sym__brace_expr_start] = ACTIONS(591), + [sym_heredoc_body] = ACTIONS(972), + [sym_heredoc_end] = ACTIONS(974), + [sym__assignment_name] = ACTIONS(934), + [sym__file_descriptor] = ACTIONS(934), + [sym__backtick_open] = ACTIONS(934), + [sym__dollar_literal] = ACTIONS(934), + [sym__brace_expr_start] = ACTIONS(934), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 7, + [0] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(938), 1, + ACTIONS(980), 1, anon_sym_LF, - ACTIONS(942), 1, - anon_sym_SEMI_SEMI, - STATE(307), 1, + STATE(319), 1, aux_sym_program_repeat1, - ACTIONS(934), 5, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(940), 25, + ACTIONS(976), 30, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, sym_shebang, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, @@ -54418,12 +55105,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(978), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, anon_sym_case, + anon_sym_SEMI_SEMI, anon_sym_for, anon_sym_select, anon_sym_while, @@ -54449,27 +55137,93 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [79] = 7, + [75] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(745), 1, anon_sym_LF, - ACTIONS(950), 1, - anon_sym_SEMI_SEMI, - STATE(309), 1, + STATE(318), 1, aux_sym_program_repeat1, - ACTIONS(944), 5, + ACTIONS(982), 30, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, ts_builtin_sym_end, + sym_shebang, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(948), 25, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(984), 31, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_SEMI_SEMI, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [150] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(986), 1, + sym_heredoc_body, + ACTIONS(989), 1, + sym_heredoc_end, + STATE(317), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + ACTIONS(944), 26, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, sym_shebang, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -54490,11 +55244,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(946), 33, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_case, anon_sym_for, anon_sym_select, @@ -54521,28 +55278,25 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [158] = 7, + [227] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(745), 1, + ACTIONS(996), 1, anon_sym_LF, - ACTIONS(954), 1, - anon_sym_SEMI_SEMI, - STATE(309), 1, + STATE(318), 1, aux_sym_program_repeat1, - ACTIONS(952), 5, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(948), 25, + ACTIONS(992), 30, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, sym_shebang, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, @@ -54562,12 +55316,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(994), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, anon_sym_case, + anon_sym_SEMI_SEMI, anon_sym_for, anon_sym_select, anon_sym_while, @@ -54593,14 +55348,14 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [237] = 5, + [302] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(960), 1, + ACTIONS(745), 1, anon_sym_LF, - STATE(309), 1, + STATE(318), 1, aux_sym_program_repeat1, - ACTIONS(956), 30, + ACTIONS(934), 30, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -54631,7 +55386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(958), 31, + ACTIONS(936), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -54663,22 +55418,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [312] = 7, + [377] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, - anon_sym_SEMI_SEMI, - ACTIONS(963), 1, + ACTIONS(999), 1, anon_sym_LF, - STATE(308), 1, + ACTIONS(1001), 1, + sym_heredoc_body, + ACTIONS(1003), 1, + sym_heredoc_end, + STATE(650), 1, aux_sym_program_repeat1, - ACTIONS(944), 5, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(940), 25, + STATE(338), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + ACTIONS(934), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -54704,11 +55458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(936), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, + anon_sym_then, anon_sym_case, anon_sym_for, anon_sym_select, @@ -54735,28 +55490,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [391] = 7, + [457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(745), 1, - anon_sym_LF, - ACTIONS(967), 1, - anon_sym_SEMI_SEMI, - STATE(309), 1, - aux_sym_program_repeat1, - ACTIONS(965), 5, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(948), 25, + ACTIONS(960), 30, + sym_heredoc_body, + sym_heredoc_end, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, sym_shebang, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, @@ -54776,12 +55524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(962), 32, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, anon_sym_case, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_for, anon_sym_select, anon_sym_while, @@ -54807,22 +55557,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [470] = 7, + [527] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 1, - anon_sym_SEMI_SEMI, - ACTIONS(969), 1, + ACTIONS(1005), 1, anon_sym_LF, - STATE(311), 1, + ACTIONS(1007), 1, + sym_heredoc_body, + ACTIONS(1009), 1, + sym_heredoc_end, + STATE(671), 1, aux_sym_program_repeat1, - ACTIONS(952), 5, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(940), 25, + STATE(327), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + ACTIONS(934), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -54848,10 +55597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(936), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_do, anon_sym_if, anon_sym_case, anon_sym_for, @@ -54879,53 +55629,53 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [549] = 19, + [607] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(979), 1, + ACTIONS(1019), 1, anon_sym_LPAREN, - ACTIONS(982), 1, + ACTIONS(1022), 1, sym_number, - ACTIONS(985), 1, + ACTIONS(1025), 1, anon_sym_DOLLAR, - ACTIONS(988), 1, + ACTIONS(1028), 1, anon_sym_DQUOTE, - ACTIONS(994), 1, + ACTIONS(1034), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(997), 1, + ACTIONS(1037), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1000), 1, + ACTIONS(1040), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1003), 1, + ACTIONS(1043), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1009), 1, + ACTIONS(1049), 1, sym__backtick_open, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(991), 2, + ACTIONS(1031), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1006), 2, + ACTIONS(1046), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - ACTIONS(971), 3, + ACTIONS(1011), 3, anon_sym_SEMI, anon_sym_RPAREN_RPAREN, anon_sym_RBRACK, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(973), 11, + ACTIONS(1013), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -54937,7 +55687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(976), 24, + ACTIONS(1016), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -54962,19 +55712,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [651] = 5, + [709] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1019), 1, - anon_sym_SEMI_SEMI, - ACTIONS(1012), 6, - ts_builtin_sym_end, + ACTIONS(1052), 1, anon_sym_LF, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(1017), 25, + ACTIONS(1054), 1, + sym_heredoc_body, + ACTIONS(1056), 1, + sym_heredoc_end, + STATE(655), 1, + aux_sym_program_repeat1, + STATE(328), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + ACTIONS(934), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -55000,11 +55752,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1015), 30, + ACTIONS(936), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, + anon_sym_fi, anon_sym_case, anon_sym_for, anon_sym_select, @@ -55031,22 +55784,27 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [725] = 5, + [789] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1022), 1, + ACTIONS(1058), 1, anon_sym_LF, - STATE(315), 1, + ACTIONS(1060), 1, + sym_heredoc_body, + ACTIONS(1062), 1, + sym_heredoc_end, + STATE(660), 1, aux_sym_program_repeat1, - ACTIONS(956), 27, + STATE(331), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + ACTIONS(934), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, sym_shebang, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, @@ -55066,14 +55824,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(958), 32, + ACTIONS(936), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_done, anon_sym_if, anon_sym_case, - anon_sym_esac, - anon_sym_SEMI_SEMI, anon_sym_for, anon_sym_select, anon_sym_while, @@ -55099,23 +55856,25 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [798] = 7, + [869] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(1064), 1, anon_sym_LF, - STATE(315), 1, + ACTIONS(1066), 1, + sym_heredoc_body, + ACTIONS(1068), 1, + sym_heredoc_end, + STATE(666), 1, aux_sym_program_repeat1, - ACTIONS(952), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(954), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(948), 25, + STATE(334), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + ACTIONS(934), 26, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, sym_shebang, @@ -55138,7 +55897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(936), 30, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -55169,25 +55928,23 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [875] = 7, + [949] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1025), 1, - anon_sym_LF, - STATE(316), 1, - aux_sym_program_repeat1, - ACTIONS(944), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(950), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(940), 25, + ACTIONS(1070), 1, + sym_heredoc_body, + ACTIONS(1073), 1, + sym_heredoc_end, + STATE(327), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + ACTIONS(944), 26, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, sym_shebang, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -55208,10 +55965,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(946), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_do, anon_sym_if, anon_sym_case, anon_sym_for, @@ -55239,25 +55997,23 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [952] = 7, + [1024] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1027), 1, - anon_sym_LF, - STATE(320), 1, - aux_sym_program_repeat1, - ACTIONS(934), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(942), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(940), 25, + ACTIONS(1076), 1, + sym_heredoc_body, + ACTIONS(1079), 1, + sym_heredoc_end, + STATE(328), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + ACTIONS(944), 26, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, sym_shebang, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -55278,11 +56034,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(946), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, + anon_sym_fi, anon_sym_case, anon_sym_for, anon_sym_select, @@ -55309,20 +56066,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [1029] = 7, + [1099] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, - anon_sym_LF, - STATE(315), 1, - aux_sym_program_repeat1, - ACTIONS(965), 2, + ACTIONS(1088), 1, + anon_sym_SEMI_SEMI, + ACTIONS(1082), 5, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(967), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(948), 25, + ACTIONS(1086), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -55348,7 +56103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(1084), 30, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -55379,26 +56134,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [1106] = 7, + [1172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(733), 1, + ACTIONS(343), 1, anon_sym_LF, - STATE(315), 1, + STATE(339), 1, aux_sym_program_repeat1, - ACTIONS(944), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(950), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(948), 25, + ACTIONS(934), 27, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, sym_shebang, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, @@ -55418,12 +56169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(936), 32, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, anon_sym_case, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_for, anon_sym_select, anon_sym_while, @@ -55449,25 +56202,23 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [1183] = 7, + [1245] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1029), 1, - anon_sym_LF, - STATE(319), 1, - aux_sym_program_repeat1, - ACTIONS(952), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(954), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(940), 25, + ACTIONS(1090), 1, + sym_heredoc_body, + ACTIONS(1093), 1, + sym_heredoc_end, + STATE(331), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + ACTIONS(944), 26, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, sym_shebang, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -55488,10 +56239,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(946), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_done, anon_sym_if, anon_sym_case, anon_sym_for, @@ -55519,185 +56271,160 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [1260] = 19, + [1320] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_LPAREN, - ACTIONS(1037), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1039), 1, + ACTIONS(1098), 1, + anon_sym_SEMI_SEMI, + ACTIONS(1096), 5, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, - ACTIONS(1041), 1, - anon_sym_DOLLAR, - ACTIONS(1043), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, - sym__backtick_open, - STATE(918), 1, - sym_string, - ACTIONS(1045), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1055), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, - sym_simple_expansion, - sym_expansion, - STATE(313), 3, - aux_sym__arithmetic, - sym__arith_group, - sym__expression, - STATE(947), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(1031), 11, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1084), 30, anon_sym_BANG, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1033), 24, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - [1360] = 19, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [1393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, - anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(343), 1, + anon_sym_LF, + STATE(339), 1, + aux_sym_program_repeat1, + ACTIONS(982), 27, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, - ACTIONS(1041), 1, - anon_sym_DOLLAR, - ACTIONS(1043), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, - sym__backtick_open, - ACTIONS(1059), 1, - anon_sym_RBRACK, - STATE(918), 1, - sym_string, - ACTIONS(1045), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1055), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, - sym_simple_expansion, - sym_expansion, - STATE(313), 3, - aux_sym__arithmetic, - sym__arith_group, - sym__expression, - STATE(947), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(1031), 11, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(984), 32, anon_sym_BANG, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1033), 24, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - [1460] = 6, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [1466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LF, - STATE(326), 1, - aux_sym_program_repeat1, - ACTIONS(950), 3, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - ACTIONS(948), 25, + ACTIONS(1100), 1, + sym_heredoc_body, + ACTIONS(1103), 1, + sym_heredoc_end, + STATE(334), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + ACTIONS(944), 27, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, sym_shebang, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -55749,18 +56476,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [1534] = 6, + [1541] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1063), 1, - anon_sym_LF, - STATE(341), 1, - aux_sym_program_repeat1, - ACTIONS(950), 3, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - ACTIONS(940), 25, + ACTIONS(1108), 1, + anon_sym_SEMI_SEMI, + ACTIONS(1106), 5, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1086), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -55786,7 +56513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(1084), 30, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -55817,20 +56544,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [1608] = 5, + [1614] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1065), 1, + ACTIONS(1110), 1, anon_sym_LF, - STATE(326), 1, + STATE(330), 1, aux_sym_program_repeat1, - ACTIONS(956), 25, + ACTIONS(976), 27, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, sym_shebang, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, @@ -55850,7 +56579,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(958), 33, + ACTIONS(978), 32, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [1687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(960), 28, + sym_heredoc_body, + sym_heredoc_end, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(962), 33, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -55884,51 +56678,255 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [1680] = 19, + [1756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1112), 1, + sym_heredoc_body, + ACTIONS(1115), 1, + sym_heredoc_end, + STATE(338), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + ACTIONS(944), 26, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(946), 31, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(1039), 1, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_then, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [1831] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1118), 1, + anon_sym_LF, + STATE(339), 1, + aux_sym_program_repeat1, + ACTIONS(992), 27, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, - ACTIONS(1041), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(994), 32, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, anon_sym_DOLLAR, - ACTIONS(1043), 1, + anon_sym_DOLLAR_LPAREN, + [1904] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LF, + STATE(344), 1, + aux_sym_program_repeat1, + ACTIONS(982), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, anon_sym_DQUOTE, - ACTIONS(1047), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(984), 33, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + [1976] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1123), 1, + anon_sym_SEMI, + ACTIONS(1129), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_number, + ACTIONS(1133), 1, + anon_sym_DOLLAR, + ACTIONS(1135), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1072), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(331), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1068), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -55940,7 +56938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1070), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -55965,51 +56963,583 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [1780] = 19, + [2076] = 31, + ACTIONS(201), 1, + aux_sym_brace_expression_token1, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_DQUOTE, + ACTIONS(209), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(213), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(215), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(223), 1, + sym__backtick_open, + ACTIONS(225), 1, + sym__dollar_literal, + ACTIONS(227), 1, + sym__brace_expr_start, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1163), 1, + anon_sym_LT_LT, + ACTIONS(1165), 1, + anon_sym_LT_LT_DASH, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(1169), 1, + sym__file_descriptor, + STATE(343), 1, + aux_sym_command_repeat2, + STATE(1216), 1, + sym_string, + STATE(1274), 1, + sym__argument, + STATE(1287), 1, + sym_heredoc_redirect, + STATE(3506), 1, + sym__word_part, + ACTIONS(217), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1209), 2, + sym_brace_expression, + sym__expression, + STATE(1224), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(203), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1275), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + ACTIONS(1155), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + STATE(1217), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1153), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1161), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [2200] = 31, + ACTIONS(201), 1, + aux_sym_brace_expression_token1, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_DQUOTE, + ACTIONS(209), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(213), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(215), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(223), 1, + sym__backtick_open, + ACTIONS(225), 1, + sym__dollar_literal, + ACTIONS(227), 1, + sym__brace_expr_start, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1163), 1, + anon_sym_LT_LT, + ACTIONS(1165), 1, + anon_sym_LT_LT_DASH, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(1169), 1, + sym__file_descriptor, + STATE(346), 1, + aux_sym_command_repeat2, + STATE(1216), 1, + sym_string, + STATE(1274), 1, + sym__argument, + STATE(1287), 1, + sym_heredoc_redirect, + STATE(3506), 1, + sym__word_part, + ACTIONS(217), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1209), 2, + sym_brace_expression, + sym__expression, + STATE(1224), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(203), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1275), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + ACTIONS(1173), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + STATE(1217), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1161), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(1171), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [2324] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1175), 1, + anon_sym_LF, + STATE(344), 1, + aux_sym_program_repeat1, + ACTIONS(992), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(994), 33, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [2396] = 31, + ACTIONS(201), 1, + aux_sym_brace_expression_token1, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_DQUOTE, + ACTIONS(209), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(213), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(215), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(223), 1, + sym__backtick_open, + ACTIONS(225), 1, + sym__dollar_literal, + ACTIONS(227), 1, + sym__brace_expr_start, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1163), 1, + anon_sym_LT_LT, + ACTIONS(1165), 1, + anon_sym_LT_LT_DASH, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(1169), 1, + sym__file_descriptor, + STATE(347), 1, + aux_sym_command_repeat2, + STATE(1216), 1, + sym_string, + STATE(1274), 1, + sym__argument, + STATE(1287), 1, + sym_heredoc_redirect, + STATE(3506), 1, + sym__word_part, + ACTIONS(217), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1209), 2, + sym_brace_expression, + sym__expression, + STATE(1224), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(203), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1275), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + ACTIONS(1180), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + STATE(1217), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1161), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(1178), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [2520] = 31, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(1182), 1, + sym_word, + ACTIONS(1198), 1, + anon_sym_LT_LT, + ACTIONS(1201), 1, + anon_sym_LT_LT_DASH, + ACTIONS(1204), 1, + aux_sym_brace_expression_token1, + ACTIONS(1210), 1, + anon_sym_DOLLAR, + ACTIONS(1213), 1, + anon_sym_DQUOTE, + ACTIONS(1216), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1219), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1222), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1225), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1231), 1, + sym__file_descriptor, + ACTIONS(1234), 1, + sym__backtick_open, + ACTIONS(1237), 1, + sym__dollar_literal, + ACTIONS(1240), 1, + sym__brace_expr_start, + STATE(346), 1, + aux_sym_command_repeat2, + STATE(1216), 1, + sym_string, + STATE(1274), 1, + sym__argument, + STATE(1287), 1, + sym_heredoc_redirect, + STATE(3506), 1, + sym__word_part, + ACTIONS(1189), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + ACTIONS(1228), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1209), 2, + sym_brace_expression, + sym__expression, + STATE(1224), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(1192), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(1207), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1275), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + ACTIONS(1187), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + STATE(1217), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1185), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1195), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [2644] = 31, + ACTIONS(201), 1, + aux_sym_brace_expression_token1, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_DQUOTE, + ACTIONS(209), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(213), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(215), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(223), 1, + sym__backtick_open, + ACTIONS(225), 1, + sym__dollar_literal, + ACTIONS(227), 1, + sym__brace_expr_start, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1163), 1, + anon_sym_LT_LT, + ACTIONS(1165), 1, + anon_sym_LT_LT_DASH, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(1169), 1, + sym__file_descriptor, + STATE(346), 1, + aux_sym_command_repeat2, + STATE(1216), 1, + sym_string, + STATE(1274), 1, + sym__argument, + STATE(1287), 1, + sym_heredoc_redirect, + STATE(3506), 1, + sym__word_part, + ACTIONS(217), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1157), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1209), 2, + sym_brace_expression, + sym__expression, + STATE(1224), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(203), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1275), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + ACTIONS(1245), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + STATE(1217), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1161), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(1243), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [2768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1078), 1, + ACTIONS(1251), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(332), 3, + STATE(352), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1074), 11, + ACTIONS(1247), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -56021,7 +57551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1076), 24, + ACTIONS(1249), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56046,51 +57576,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [1880] = 19, + [2868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1078), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1257), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(333), 3, + STATE(353), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1080), 11, + ACTIONS(1253), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -56102,7 +57632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1082), 24, + ACTIONS(1255), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56127,51 +57657,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [1980] = 19, + [2968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1088), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1090), 1, - anon_sym_RPAREN, - ACTIONS(1092), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1094), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1096), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1100), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1102), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1104), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1149), 1, sym__backtick_open, + ACTIONS(1257), 1, + anon_sym_RBRACK, STATE(1152), 1, sym_string, - ACTIONS(1098), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1108), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1139), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(334), 3, + STATE(354), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(1153), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1084), 11, + ACTIONS(1259), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -56183,7 +57713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1086), 24, + ACTIONS(1261), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56208,51 +57738,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [2080] = 19, + [3068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1269), 1, + anon_sym_RPAREN, + ACTIONS(1271), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1273), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1279), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1281), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1283), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1285), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1289), 1, sym__backtick_open, - ACTIONS(1112), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1175), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1277), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1287), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(1184), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(355), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1176), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1263), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -56264,7 +57794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1265), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56289,51 +57819,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [2180] = 19, + [3168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1114), 1, + ACTIONS(1291), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -56345,7 +57875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56370,51 +57900,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [2280] = 19, + [3268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1114), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1293), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -56426,7 +57956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56451,51 +57981,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [2380] = 19, + [3368] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1088), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1092), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1094), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1096), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1100), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1102), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1104), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1120), 1, - anon_sym_RPAREN, + ACTIONS(1293), 1, + anon_sym_RBRACK, STATE(1152), 1, sym_string, - ACTIONS(1098), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1108), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1139), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(577), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(1153), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1116), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -56507,7 +58037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1118), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56532,51 +58062,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [2480] = 19, + [3468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1271), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1273), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1279), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1281), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1283), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1285), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1289), 1, sym__backtick_open, - ACTIONS(1126), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1299), 1, + anon_sym_RPAREN, + STATE(1175), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1277), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1287), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(1184), 2, sym_simple_expansion, sym_expansion, - STATE(336), 3, + STATE(596), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1176), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1122), 11, + ACTIONS(1295), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -56588,7 +58118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1124), 24, + ACTIONS(1297), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56613,51 +58143,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [2580] = 19, + [3568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1128), 1, + ACTIONS(1305), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(357), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1301), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -56669,7 +58199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1303), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56694,51 +58224,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [2680] = 19, + [3668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1128), 1, + ACTIONS(1307), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(338), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1130), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -56750,7 +58280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1132), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56775,51 +58305,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [2780] = 19, + [3768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1134), 1, + ACTIONS(1307), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(359), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1309), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -56831,7 +58361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1311), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56856,51 +58386,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [2880] = 19, + [3868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1134), 1, + ACTIONS(1313), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(340), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1136), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -56912,7 +58442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1138), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -56937,51 +58467,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [2980] = 19, + [3968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1140), 1, + ACTIONS(1313), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(361), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1315), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -56993,7 +58523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1317), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -57018,119 +58548,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [3080] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1061), 1, - anon_sym_LF, - STATE(326), 1, - aux_sym_program_repeat1, - ACTIONS(954), 3, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - ACTIONS(948), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(946), 30, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [3154] = 19, + [4068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1146), 1, + ACTIONS(1319), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(345), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1142), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -57142,7 +58604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1144), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -57167,51 +58629,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [3254] = 19, + [4168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1152), 1, + ACTIONS(1325), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(346), 3, + STATE(365), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1148), 11, + ACTIONS(1321), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -57223,7 +58685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1150), 24, + ACTIONS(1323), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -57248,51 +58710,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [3354] = 19, + [4268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1152), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1331), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(347), 3, + STATE(366), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1154), 11, + ACTIONS(1327), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -57304,7 +58766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1156), 24, + ACTIONS(1329), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -57329,51 +58791,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [3454] = 19, + [4368] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1158), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1331), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(367), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1333), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -57385,7 +58847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1335), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -57410,51 +58872,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [3554] = 19, + [4468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1160), 1, + ACTIONS(1337), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -57466,7 +58928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -57491,51 +58953,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [3654] = 19, + [4568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1160), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1339), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -57547,7 +59009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -57572,51 +59034,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [3754] = 19, + [4668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1162), 1, - anon_sym_SEMI, - STATE(918), 1, + ACTIONS(1339), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(544), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1164), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -57628,7 +59090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1166), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -57653,51 +59115,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [3854] = 19, + [4768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1168), 1, - anon_sym_SEMI, - STATE(918), 1, + ACTIONS(1345), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(369), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1341), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -57709,7 +59171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1343), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -57734,51 +59196,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [3954] = 19, + [4868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1174), 1, + ACTIONS(1347), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(351), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1170), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -57790,7 +59252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1172), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -57815,51 +59277,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [4054] = 19, + [4968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1176), 1, + ACTIONS(1347), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(371), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1349), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -57871,7 +59333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1351), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -57896,51 +59358,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [4154] = 19, + [5068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1176), 1, + ACTIONS(1353), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(353), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1178), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -57952,7 +59414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1180), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -57977,51 +59439,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [4254] = 19, + [5168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1182), 1, + ACTIONS(1353), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(373), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1355), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -58033,7 +59495,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1357), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -58058,51 +59520,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [4354] = 19, + [5268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1182), 1, + ACTIONS(1359), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(355), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1184), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -58114,7 +59576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1186), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -58139,51 +59601,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [4454] = 19, + [5368] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1188), 1, + ACTIONS(1365), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(377), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1361), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -58195,7 +59657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1363), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -58220,119 +59682,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [4554] = 6, + [5468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1190), 1, - anon_sym_LF, - STATE(364), 1, - aux_sym_program_repeat1, - ACTIONS(954), 3, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - ACTIONS(940), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(936), 30, - anon_sym_BANG, + ACTIONS(1129), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [4628] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1196), 1, + ACTIONS(1371), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(360), 3, + STATE(378), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1192), 11, + ACTIONS(1367), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -58344,7 +59738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1194), 24, + ACTIONS(1369), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -58369,51 +59763,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [4728] = 19, + [5568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1202), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1371), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(361), 3, + STATE(379), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1198), 11, + ACTIONS(1373), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -58425,7 +59819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1200), 24, + ACTIONS(1375), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -58450,51 +59844,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [4828] = 19, + [5668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1202), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1377), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(362), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1204), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -58506,7 +59900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1206), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -58531,51 +59925,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [4928] = 19, + [5768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1208), 1, + ACTIONS(1379), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -58587,7 +59981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -58612,51 +60006,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [5028] = 19, + [5868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1210), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1379), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -58668,7 +60062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -58693,51 +60087,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [5128] = 19, + [5968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1210), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1385), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(598), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1381), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -58749,7 +60143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1383), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -58774,51 +60168,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [5228] = 19, + [6068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1088), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1092), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1094), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1096), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1100), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1102), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1104), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1106), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1110), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1212), 1, - anon_sym_RPAREN, + ACTIONS(1391), 1, + anon_sym_RPAREN_RPAREN, STATE(1152), 1, sym_string, - ACTIONS(1098), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1108), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1139), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(577), 3, + STATE(559), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(1153), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1116), 11, + ACTIONS(1387), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -58830,7 +60224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1118), 24, + ACTIONS(1389), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -58855,119 +60249,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [5328] = 6, + [6168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1061), 1, - anon_sym_LF, - STATE(326), 1, - aux_sym_program_repeat1, - ACTIONS(967), 3, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - ACTIONS(948), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(1129), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, sym_number, + ACTIONS(1133), 1, + anon_sym_DOLLAR, + ACTIONS(1135), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + sym__backtick_open, + ACTIONS(1397), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, + sym_string, + ACTIONS(1137), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + STATE(955), 2, + sym_simple_expansion, + sym_expansion, + STATE(383), 3, + aux_sym__arithmetic, + sym__arith_group, + sym__expression, + STATE(1061), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1393), 11, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1395), 24, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [5402] = 19, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + [6268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1218), 1, + ACTIONS(1399), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(366), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1214), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -58979,7 +60386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1216), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -59004,51 +60411,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [5502] = 19, + [6368] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1220), 1, + ACTIONS(1399), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(385), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1401), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -59060,7 +60467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1403), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -59085,51 +60492,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [5602] = 19, + [6468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1220), 1, + ACTIONS(1405), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(368), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1222), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -59141,7 +60548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1224), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -59166,51 +60573,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [5702] = 19, + [6568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1226), 1, + ACTIONS(1405), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(387), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1407), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -59222,7 +60629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1409), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -59247,51 +60654,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [5802] = 19, + [6668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1226), 1, + ACTIONS(1411), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(370), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1228), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -59303,7 +60710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1230), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -59328,51 +60735,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [5902] = 19, + [6768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1232), 1, + ACTIONS(1417), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(390), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1413), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -59384,7 +60791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1415), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -59409,51 +60816,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [6002] = 19, + [6868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1238), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1417), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(373), 3, + STATE(391), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1234), 11, + ACTIONS(1419), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -59465,7 +60872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1236), 24, + ACTIONS(1421), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -59490,51 +60897,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [6102] = 19, + [6968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1238), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1423), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(374), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1240), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -59546,7 +60953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1242), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -59571,51 +60978,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [6202] = 19, + [7068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1244), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1423), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -59627,7 +61034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -59652,51 +61059,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [6302] = 19, + [7168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1244), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1425), 1, + anon_sym_SEMI, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -59708,7 +61115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -59733,51 +61140,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [6402] = 19, + [7268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1250), 1, + ACTIONS(1431), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(376), 3, + STATE(394), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1246), 11, + ACTIONS(1427), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -59789,7 +61196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1248), 24, + ACTIONS(1429), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -59814,51 +61221,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [6502] = 19, + [7368] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1252), 1, + ACTIONS(1433), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -59870,7 +61277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -59895,51 +61302,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [6602] = 19, + [7468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1252), 1, + ACTIONS(1433), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(378), 3, + STATE(396), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1254), 11, + ACTIONS(1435), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -59951,7 +61358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1256), 24, + ACTIONS(1437), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -59976,51 +61383,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [6702] = 19, + [7568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1258), 1, + ACTIONS(1439), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -60032,7 +61439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -60057,51 +61464,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [6802] = 19, + [7668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1258), 1, + ACTIONS(1439), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(380), 3, + STATE(398), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1260), 11, + ACTIONS(1441), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -60113,7 +61520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1262), 24, + ACTIONS(1443), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -60138,51 +61545,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [6902] = 19, + [7768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1264), 1, + ACTIONS(1445), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -60194,7 +61601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -60219,51 +61626,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [7002] = 19, + [7868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1270), 1, + ACTIONS(1451), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(383), 3, + STATE(401), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1266), 11, + ACTIONS(1447), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -60275,7 +61682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1268), 24, + ACTIONS(1449), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -60300,51 +61707,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [7102] = 19, + [7968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1270), 1, + ACTIONS(1451), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(384), 3, + STATE(402), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1272), 11, + ACTIONS(1453), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -60356,7 +61763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1274), 24, + ACTIONS(1455), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -60381,51 +61788,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [7202] = 19, + [8068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1276), 1, + ACTIONS(1457), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -60437,7 +61844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -60462,51 +61869,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [7302] = 19, + [8168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1276), 1, + ACTIONS(1457), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -60518,7 +61925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -60543,51 +61950,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [7402] = 19, + [8268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1282), 1, + ACTIONS(1425), 1, + anon_sym_SEMI, + STATE(1152), 1, + sym_string, + ACTIONS(1137), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1147), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(955), 2, + sym_simple_expansion, + sym_expansion, + STATE(561), 3, + aux_sym__arithmetic, + sym__arith_group, + sym__expression, + STATE(1061), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1459), 11, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1461), 24, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + [8368] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_number, + ACTIONS(1133), 1, + anon_sym_DOLLAR, + ACTIONS(1135), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1143), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1145), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + sym__backtick_open, + ACTIONS(1467), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(386), 3, + STATE(405), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1278), 11, + ACTIONS(1463), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -60599,7 +62087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1280), 24, + ACTIONS(1465), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -60624,51 +62112,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [7502] = 19, + [8468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1284), 1, + ACTIONS(1469), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -60680,7 +62168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -60705,51 +62193,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [7602] = 19, + [8568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1284), 1, + ACTIONS(1469), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(388), 3, + STATE(407), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1286), 11, + ACTIONS(1471), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -60761,7 +62249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1288), 24, + ACTIONS(1473), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -60786,51 +62274,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [7702] = 19, + [8668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1290), 1, + ACTIONS(1475), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -60842,7 +62330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -60867,51 +62355,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [7802] = 19, + [8768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1290), 1, + ACTIONS(1475), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(390), 3, + STATE(409), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1292), 11, + ACTIONS(1477), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -60923,7 +62411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1294), 24, + ACTIONS(1479), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -60948,51 +62436,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [7902] = 19, + [8868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1296), 1, + ACTIONS(1481), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -61004,7 +62492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -61029,51 +62517,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [8002] = 19, + [8968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1302), 1, + ACTIONS(1487), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(393), 3, + STATE(412), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1298), 11, + ACTIONS(1483), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -61085,7 +62573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1300), 24, + ACTIONS(1485), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -61110,51 +62598,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [8102] = 19, + [9068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1302), 1, + ACTIONS(1487), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(394), 3, + STATE(413), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1304), 11, + ACTIONS(1489), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -61166,7 +62654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1306), 24, + ACTIONS(1491), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -61191,51 +62679,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [8202] = 19, + [9168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1308), 1, + ACTIONS(1493), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -61247,7 +62735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -61272,51 +62760,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [8302] = 19, + [9268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1308), 1, + ACTIONS(1493), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -61328,7 +62816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -61353,51 +62841,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [8402] = 19, + [9368] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1314), 1, + ACTIONS(1499), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(396), 3, + STATE(415), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1310), 11, + ACTIONS(1495), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -61409,7 +62897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1312), 24, + ACTIONS(1497), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -61434,51 +62922,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [8502] = 19, + [9468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1316), 1, + ACTIONS(1501), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -61490,7 +62978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -61515,51 +63003,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [8602] = 19, + [9568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1316), 1, + ACTIONS(1501), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(398), 3, + STATE(417), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1318), 11, + ACTIONS(1503), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -61571,7 +63059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1320), 24, + ACTIONS(1505), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -61596,51 +63084,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [8702] = 19, + [9668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1322), 1, + ACTIONS(1507), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -61652,7 +63140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -61677,51 +63165,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [8802] = 19, + [9768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1322), 1, + ACTIONS(1507), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(400), 3, + STATE(419), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1324), 11, + ACTIONS(1509), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -61733,7 +63221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1326), 24, + ACTIONS(1511), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -61758,51 +63246,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [8902] = 19, + [9868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1328), 1, + ACTIONS(1513), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -61814,7 +63302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -61839,51 +63327,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [9002] = 19, + [9968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1334), 1, + ACTIONS(1519), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(403), 3, + STATE(422), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1330), 11, + ACTIONS(1515), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -61895,7 +63383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1332), 24, + ACTIONS(1517), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -61920,51 +63408,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [9102] = 19, + [10068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1334), 1, + ACTIONS(1519), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(404), 3, + STATE(423), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1336), 11, + ACTIONS(1521), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -61976,7 +63464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1338), 24, + ACTIONS(1523), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -62001,51 +63489,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [9202] = 19, + [10168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1340), 1, + ACTIONS(1525), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -62057,7 +63545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -62082,51 +63570,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [9302] = 19, + [10268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1340), 1, + ACTIONS(1525), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -62138,7 +63626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -62163,51 +63651,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [9402] = 19, + [10368] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1346), 1, + ACTIONS(1531), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(406), 3, + STATE(425), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1342), 11, + ACTIONS(1527), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -62219,7 +63707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1344), 24, + ACTIONS(1529), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -62244,51 +63732,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [9502] = 19, + [10468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1348), 1, + ACTIONS(1533), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -62300,7 +63788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -62325,51 +63813,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [9602] = 19, + [10568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1348), 1, + ACTIONS(1533), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(408), 3, + STATE(427), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1350), 11, + ACTIONS(1535), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -62381,7 +63869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1352), 24, + ACTIONS(1537), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -62406,51 +63894,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [9702] = 19, + [10668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1354), 1, + ACTIONS(1539), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -62462,7 +63950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -62487,51 +63975,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [9802] = 19, + [10768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1354), 1, + ACTIONS(1539), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(410), 3, + STATE(429), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1356), 11, + ACTIONS(1541), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -62543,7 +64031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1358), 24, + ACTIONS(1543), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -62568,51 +64056,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [9902] = 19, + [10868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1360), 1, + ACTIONS(1545), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -62624,7 +64112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -62649,51 +64137,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [10002] = 19, + [10968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1366), 1, + ACTIONS(1551), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(413), 3, + STATE(432), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1362), 11, + ACTIONS(1547), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -62705,7 +64193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1364), 24, + ACTIONS(1549), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -62730,51 +64218,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [10102] = 19, + [11068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1366), 1, + ACTIONS(1551), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(414), 3, + STATE(433), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1368), 11, + ACTIONS(1553), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -62786,7 +64274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1370), 24, + ACTIONS(1555), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -62811,51 +64299,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [10202] = 19, + [11168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1372), 1, + ACTIONS(1557), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -62867,7 +64355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -62892,51 +64380,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [10302] = 19, + [11268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1372), 1, + ACTIONS(1557), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -62948,7 +64436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -62973,51 +64461,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [10402] = 19, + [11368] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1378), 1, + ACTIONS(1563), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(416), 3, + STATE(435), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1374), 11, + ACTIONS(1559), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -63029,7 +64517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1376), 24, + ACTIONS(1561), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -63054,51 +64542,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [10502] = 19, + [11468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1380), 1, + ACTIONS(1565), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -63110,7 +64598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -63135,51 +64623,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [10602] = 19, + [11568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1380), 1, + ACTIONS(1565), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(418), 3, + STATE(437), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1382), 11, + ACTIONS(1567), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -63191,7 +64679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1384), 24, + ACTIONS(1569), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -63216,51 +64704,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [10702] = 19, + [11668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1386), 1, + ACTIONS(1571), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -63272,7 +64760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -63297,51 +64785,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [10802] = 19, + [11768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1386), 1, + ACTIONS(1571), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(420), 3, + STATE(439), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1388), 11, + ACTIONS(1573), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -63353,7 +64841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1390), 24, + ACTIONS(1575), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -63378,51 +64866,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [10902] = 19, + [11868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1392), 1, + ACTIONS(1577), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -63434,7 +64922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -63459,51 +64947,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [11002] = 19, + [11968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1398), 1, + ACTIONS(1583), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(423), 3, + STATE(442), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1394), 11, + ACTIONS(1579), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -63515,7 +65003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1396), 24, + ACTIONS(1581), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -63540,51 +65028,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [11102] = 19, + [12068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1398), 1, + ACTIONS(1583), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(424), 3, + STATE(443), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1400), 11, + ACTIONS(1585), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -63596,7 +65084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1402), 24, + ACTIONS(1587), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -63621,51 +65109,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [11202] = 19, + [12168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1404), 1, + ACTIONS(1589), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -63677,7 +65165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -63702,51 +65190,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [11302] = 19, + [12268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1404), 1, + ACTIONS(1589), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -63758,7 +65246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -63783,51 +65271,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [11402] = 19, + [12368] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1410), 1, + ACTIONS(1595), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(427), 3, + STATE(446), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1406), 11, + ACTIONS(1591), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -63839,7 +65327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1408), 24, + ACTIONS(1593), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -63864,51 +65352,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [11502] = 19, + [12468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1410), 1, + ACTIONS(1595), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(428), 3, + STATE(447), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1412), 11, + ACTIONS(1597), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -63920,7 +65408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1414), 24, + ACTIONS(1599), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -63945,51 +65433,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [11602] = 19, + [12568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1416), 1, + ACTIONS(1601), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -64001,7 +65489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -64026,51 +65514,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [11702] = 19, + [12668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1416), 1, + ACTIONS(1601), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -64082,7 +65570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -64107,51 +65595,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [11802] = 19, + [12768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1422), 1, + ACTIONS(1607), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(322), 3, + STATE(450), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1418), 11, + ACTIONS(1603), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -64163,7 +65651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1420), 24, + ACTIONS(1605), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -64188,51 +65676,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [11902] = 19, + [12868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1422), 1, + ACTIONS(1607), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(432), 3, + STATE(451), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1424), 11, + ACTIONS(1609), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -64244,7 +65732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1426), 24, + ACTIONS(1611), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -64269,51 +65757,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [12002] = 19, + [12968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1428), 1, - anon_sym_SEMI, - STATE(918), 1, + ACTIONS(1613), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -64325,7 +65813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -64350,51 +65838,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [12102] = 19, + [13068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1037), 1, + ACTIONS(1131), 1, + sym_number, + ACTIONS(1133), 1, + anon_sym_DOLLAR, + ACTIONS(1135), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1143), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1145), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + sym__backtick_open, + ACTIONS(1613), 1, anon_sym_RBRACK, - ACTIONS(1039), 1, + STATE(1152), 1, + sym_string, + ACTIONS(1137), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1147), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(955), 2, + sym_simple_expansion, + sym_expansion, + STATE(323), 3, + aux_sym__arithmetic, + sym__arith_group, + sym__expression, + STATE(1061), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1125), 11, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1127), 24, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + [13168] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - STATE(918), 1, + ACTIONS(1619), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(454), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1615), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -64406,7 +65975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1617), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -64431,51 +66000,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [12202] = 19, + [13268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1434), 1, + ACTIONS(1619), 1, + anon_sym_RBRACK, + STATE(1152), 1, + sym_string, + ACTIONS(1137), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1147), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(955), 2, + sym_simple_expansion, + sym_expansion, + STATE(455), 3, + aux_sym__arithmetic, + sym__arith_group, + sym__expression, + STATE(1061), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1621), 11, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1623), 24, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + [13368] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_number, + ACTIONS(1133), 1, + anon_sym_DOLLAR, + ACTIONS(1135), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1143), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1145), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + sym__backtick_open, + ACTIONS(1625), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(435), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1430), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -64487,7 +66137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1432), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -64512,51 +66162,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [12302] = 19, + [13468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1434), 1, + ACTIONS(1625), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(436), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1436), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -64568,7 +66218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1438), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -64593,51 +66243,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [12402] = 19, + [13568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1440), 1, + ACTIONS(1631), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(458), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1627), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -64649,7 +66299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1629), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -64674,51 +66324,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [12502] = 19, + [13668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1440), 1, + ACTIONS(1631), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(459), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1633), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -64730,7 +66380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1635), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -64755,51 +66405,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [12602] = 19, + [13768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1446), 1, + ACTIONS(1637), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(439), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1442), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -64811,7 +66461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1444), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -64836,51 +66486,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [12702] = 19, + [13868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1446), 1, + ACTIONS(1637), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(440), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1448), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -64892,7 +66542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1450), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -64917,51 +66567,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [12802] = 19, + [13968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1452), 1, + ACTIONS(1643), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(462), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1639), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -64973,7 +66623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1641), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -64998,51 +66648,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [12902] = 19, + [14068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1452), 1, + ACTIONS(1643), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(463), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1645), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -65054,7 +66704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1647), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -65079,51 +66729,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [13002] = 19, + [14168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1458), 1, + ACTIONS(1649), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(443), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1454), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -65135,7 +66785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1456), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -65160,51 +66810,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [13102] = 19, + [14268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1458), 1, + ACTIONS(1649), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(444), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1460), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -65216,7 +66866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1462), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -65241,51 +66891,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [13202] = 19, + [14368] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1464), 1, + ACTIONS(1655), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(466), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1651), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -65297,7 +66947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1653), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -65322,51 +66972,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [13302] = 19, + [14468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1464), 1, + ACTIONS(1655), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(467), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1657), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -65378,7 +67028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1659), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -65403,51 +67053,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [13402] = 19, + [14568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1470), 1, + ACTIONS(1661), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(447), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1466), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -65459,7 +67109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1468), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -65484,51 +67134,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [13502] = 19, + [14668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1470), 1, + ACTIONS(1661), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(448), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1472), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -65540,7 +67190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1474), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -65565,51 +67215,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [13602] = 19, + [14768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1476), 1, + ACTIONS(1667), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(470), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1663), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -65621,7 +67271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1665), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -65646,51 +67296,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [13702] = 19, + [14868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1476), 1, + ACTIONS(1667), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(471), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1669), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -65702,7 +67352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1671), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -65727,51 +67377,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [13802] = 19, + [14968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1482), 1, + ACTIONS(1673), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(451), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1478), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -65783,7 +67433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1480), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -65808,51 +67458,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [13902] = 19, + [15068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1482), 1, + ACTIONS(1673), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(452), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1484), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -65864,7 +67514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1486), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -65889,51 +67539,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [14002] = 19, + [15168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1488), 1, + ACTIONS(1679), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(474), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1675), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -65945,7 +67595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1677), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -65970,51 +67620,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [14102] = 19, + [15268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1488), 1, + ACTIONS(1679), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(475), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1681), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -66026,7 +67676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1683), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -66051,51 +67701,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [14202] = 19, + [15368] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1494), 1, + ACTIONS(1685), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(455), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1490), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -66107,7 +67757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1492), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -66132,51 +67782,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [14302] = 19, + [15468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1494), 1, + ACTIONS(1685), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(456), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1496), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -66188,7 +67838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1498), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -66213,51 +67863,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [14402] = 19, + [15568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1500), 1, + ACTIONS(1691), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(478), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1687), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -66269,7 +67919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1689), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -66294,51 +67944,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [14502] = 19, + [15668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1500), 1, + ACTIONS(1691), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(479), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1693), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -66350,7 +68000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1695), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -66375,51 +68025,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [14602] = 19, + [15768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1506), 1, + ACTIONS(1697), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(459), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1502), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -66431,7 +68081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1504), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -66456,51 +68106,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [14702] = 19, + [15868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1506), 1, + ACTIONS(1697), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(460), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1508), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -66512,7 +68162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1510), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -66537,51 +68187,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [14802] = 19, + [15968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1512), 1, + ACTIONS(1703), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(482), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1699), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -66593,7 +68243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1701), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -66618,51 +68268,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [14902] = 19, + [16068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1512), 1, + ACTIONS(1703), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(483), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1705), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -66674,7 +68324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1707), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -66699,51 +68349,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [15002] = 19, + [16168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1518), 1, + ACTIONS(1709), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(463), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1514), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -66755,7 +68405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1516), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -66780,51 +68430,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [15102] = 19, + [16268] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1518), 1, + ACTIONS(1709), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(464), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1520), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -66836,7 +68486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1522), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -66861,51 +68511,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [15202] = 19, + [16368] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1524), 1, + ACTIONS(1715), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(486), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1711), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -66917,7 +68567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1713), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -66942,51 +68592,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [15302] = 19, + [16468] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1524), 1, + ACTIONS(1715), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(487), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1717), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -66998,7 +68648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1719), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -67023,51 +68673,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [15402] = 19, + [16568] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1530), 1, + ACTIONS(1721), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(467), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1526), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -67079,7 +68729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1528), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -67104,51 +68754,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [15502] = 19, + [16668] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1530), 1, + ACTIONS(1721), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(468), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1532), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -67160,7 +68810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1534), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -67185,51 +68835,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [15602] = 19, + [16768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1536), 1, + ACTIONS(1727), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(490), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1723), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -67241,7 +68891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1725), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -67266,51 +68916,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [15702] = 19, + [16868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1536), 1, + ACTIONS(1727), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(491), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1729), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -67322,7 +68972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1731), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -67347,51 +68997,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [15802] = 19, + [16968] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1542), 1, + ACTIONS(1733), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(471), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1538), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -67403,7 +69053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1540), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -67428,51 +69078,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [15902] = 19, + [17068] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1542), 1, + ACTIONS(1733), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(472), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1544), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -67484,7 +69134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1546), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -67509,51 +69159,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [16002] = 19, + [17168] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1548), 1, + ACTIONS(1739), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(494), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1735), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -67565,7 +69215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1737), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -67590,51 +69240,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [16102] = 19, + [17268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1121), 1, + anon_sym_LF, + STATE(344), 1, + aux_sym_program_repeat1, + ACTIONS(934), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(936), 33, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [17340] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1548), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1741), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -67646,7 +69363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -67671,51 +69388,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [16202] = 19, + [17440] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1554), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1741), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(475), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1550), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -67727,7 +69444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1552), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -67752,51 +69469,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [16302] = 19, + [17540] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1059), 1, + ACTIONS(1747), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(498), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1743), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -67808,7 +69525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1745), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -67833,51 +69550,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [16402] = 19, + [17640] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1556), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1747), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(499), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1749), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -67889,7 +69606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1751), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -67914,51 +69631,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [16502] = 19, + [17740] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1556), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1753), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -67970,7 +69687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -67995,51 +69712,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [16602] = 19, + [17840] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1562), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1753), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(479), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1558), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -68051,7 +69768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1560), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -68076,51 +69793,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [16702] = 19, + [17940] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1562), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1759), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(480), 3, + STATE(502), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1564), 11, + ACTIONS(1755), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -68132,7 +69849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1566), 24, + ACTIONS(1757), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -68157,51 +69874,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [16802] = 19, + [18040] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1568), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1759), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(503), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1761), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -68213,7 +69930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1763), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -68238,51 +69955,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [16902] = 19, + [18140] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1568), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1765), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -68294,7 +70011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -68319,51 +70036,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [17002] = 19, + [18240] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1574), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1765), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(483), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1570), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -68375,7 +70092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1572), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -68400,51 +70117,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [17102] = 19, + [18340] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1574), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1771), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(484), 3, + STATE(506), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1576), 11, + ACTIONS(1767), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -68456,7 +70173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1578), 24, + ACTIONS(1769), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -68481,51 +70198,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [17202] = 19, + [18440] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1580), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1771), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(507), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1773), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -68537,7 +70254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1775), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -68562,51 +70279,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [17302] = 19, + [18540] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1580), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1777), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -68618,7 +70335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -68643,51 +70360,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [17402] = 19, + [18640] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1586), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1777), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(487), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1582), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -68699,7 +70416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1584), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -68724,51 +70441,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [17502] = 19, + [18740] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1586), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1783), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(488), 3, + STATE(510), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1588), 11, + ACTIONS(1779), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -68780,7 +70497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1590), 24, + ACTIONS(1781), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -68805,51 +70522,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [17602] = 19, + [18840] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1592), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1783), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(511), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1785), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -68861,7 +70578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1787), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -68886,51 +70603,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [17702] = 19, + [18940] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1592), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1789), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -68942,7 +70659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -68967,51 +70684,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [17802] = 19, + [19040] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1598), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1789), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(491), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1594), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -69023,7 +70740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1596), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -69048,51 +70765,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [17902] = 19, + [19140] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1598), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1795), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(492), 3, + STATE(514), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1600), 11, + ACTIONS(1791), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -69104,7 +70821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1602), 24, + ACTIONS(1793), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -69129,51 +70846,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [18002] = 19, + [19240] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1604), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1795), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(515), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1797), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -69185,7 +70902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1799), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -69210,51 +70927,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [18102] = 19, + [19340] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1604), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(1801), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -69266,7 +70983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -69291,51 +71008,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [18202] = 19, + [19440] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1610), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1801), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(495), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1606), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -69347,7 +71064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1608), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -69372,51 +71089,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [18302] = 19, + [19540] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1143), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1145), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + sym__backtick_open, + ACTIONS(1807), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, + sym_string, + ACTIONS(1137), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1147), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(955), 2, + sym_simple_expansion, + sym_expansion, + STATE(518), 3, + aux_sym__arithmetic, + sym__arith_group, + sym__expression, + STATE(1061), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1803), 11, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1805), 24, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + [19640] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_number, + ACTIONS(1133), 1, + anon_sym_DOLLAR, + ACTIONS(1135), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1610), 1, + ACTIONS(1807), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(496), 3, + STATE(519), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1612), 11, + ACTIONS(1809), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -69428,7 +71226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1614), 24, + ACTIONS(1811), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -69453,51 +71251,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [18402] = 19, + [19740] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1616), 1, + ACTIONS(1813), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -69509,7 +71307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -69534,51 +71332,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [18502] = 19, + [19840] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1616), 1, + ACTIONS(1813), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -69590,7 +71388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -69615,51 +71413,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [18602] = 19, + [19940] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1622), 1, + ACTIONS(1819), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(499), 3, + STATE(522), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1618), 11, + ACTIONS(1815), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -69671,7 +71469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1620), 24, + ACTIONS(1817), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -69696,51 +71494,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [18702] = 19, + [20040] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1622), 1, + ACTIONS(1819), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(500), 3, + STATE(523), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1624), 11, + ACTIONS(1821), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -69752,7 +71550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1626), 24, + ACTIONS(1823), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -69777,51 +71575,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [18802] = 19, + [20140] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1628), 1, + ACTIONS(1825), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -69833,7 +71631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -69858,51 +71656,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [18902] = 19, + [20240] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1628), 1, + ACTIONS(1825), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -69914,7 +71712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -69939,51 +71737,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [19002] = 19, + [20340] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1634), 1, + ACTIONS(1831), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(503), 3, + STATE(526), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1630), 11, + ACTIONS(1827), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -69995,7 +71793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1632), 24, + ACTIONS(1829), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -70020,51 +71818,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [19102] = 19, + [20440] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1634), 1, + ACTIONS(1831), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(504), 3, + STATE(527), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1636), 11, + ACTIONS(1833), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -70076,7 +71874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1638), 24, + ACTIONS(1835), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -70101,51 +71899,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [19202] = 19, + [20540] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1640), 1, + ACTIONS(1837), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -70157,7 +71955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -70182,51 +71980,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [19302] = 19, + [20640] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1640), 1, + ACTIONS(1837), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -70238,7 +72036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -70263,51 +72061,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [19402] = 19, + [20740] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1646), 1, + ACTIONS(1843), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(507), 3, + STATE(530), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1642), 11, + ACTIONS(1839), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -70319,7 +72117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1644), 24, + ACTIONS(1841), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -70344,51 +72142,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [19502] = 19, + [20840] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1646), 1, + ACTIONS(1843), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(508), 3, + STATE(531), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1648), 11, + ACTIONS(1845), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -70400,7 +72198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1650), 24, + ACTIONS(1847), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -70425,51 +72223,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [19602] = 19, + [20940] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1652), 1, + ACTIONS(1849), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -70481,7 +72279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -70506,51 +72304,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [19702] = 19, + [21040] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1652), 1, + ACTIONS(1849), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -70562,7 +72360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -70587,51 +72385,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [19802] = 19, + [21140] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1658), 1, + ACTIONS(1855), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(511), 3, + STATE(534), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1654), 11, + ACTIONS(1851), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -70643,7 +72441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1656), 24, + ACTIONS(1853), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -70668,51 +72466,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [19902] = 19, + [21240] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1658), 1, + ACTIONS(1855), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(512), 3, + STATE(535), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1660), 11, + ACTIONS(1857), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -70724,7 +72522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1662), 24, + ACTIONS(1859), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -70749,51 +72547,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [20002] = 19, + [21340] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1664), 1, + ACTIONS(1861), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -70805,7 +72603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -70830,51 +72628,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [20102] = 19, + [21440] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1664), 1, + ACTIONS(1861), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -70886,7 +72684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -70911,51 +72709,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [20202] = 19, + [21540] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1670), 1, + ACTIONS(1867), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(515), 3, + STATE(538), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1666), 11, + ACTIONS(1863), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -70967,7 +72765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1668), 24, + ACTIONS(1865), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -70992,51 +72790,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [20302] = 19, + [21640] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1670), 1, + ACTIONS(1867), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(516), 3, + STATE(539), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1672), 11, + ACTIONS(1869), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -71048,7 +72846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1674), 24, + ACTIONS(1871), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -71073,51 +72871,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [20402] = 19, + [21740] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1676), 1, + ACTIONS(1873), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -71129,7 +72927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -71154,51 +72952,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [20502] = 19, + [21840] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1676), 1, + ACTIONS(1873), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -71210,7 +73008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -71235,51 +73033,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [20602] = 19, + [21940] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1682), 1, + ACTIONS(1879), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(519), 3, + STATE(542), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1678), 11, + ACTIONS(1875), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -71291,7 +73089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1680), 24, + ACTIONS(1877), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -71316,51 +73114,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [20702] = 19, + [22040] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1682), 1, + ACTIONS(1879), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(520), 3, + STATE(543), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1684), 11, + ACTIONS(1881), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -71372,7 +73170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1686), 24, + ACTIONS(1883), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -71397,51 +73195,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [20802] = 19, + [22140] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1688), 1, + ACTIONS(1885), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -71453,7 +73251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -71478,51 +73276,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [20902] = 19, + [22240] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1688), 1, + ACTIONS(1885), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -71534,7 +73332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -71559,51 +73357,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [21002] = 19, + [22340] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1694), 1, + ACTIONS(1891), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(523), 3, + STATE(546), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1690), 11, + ACTIONS(1887), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -71615,7 +73413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1692), 24, + ACTIONS(1889), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -71640,51 +73438,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [21102] = 19, + [22440] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1694), 1, + ACTIONS(1891), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(524), 3, + STATE(547), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1696), 11, + ACTIONS(1893), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -71696,7 +73494,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1698), 24, + ACTIONS(1895), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -71721,51 +73519,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [21202] = 19, + [22540] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1700), 1, + ACTIONS(1897), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -71777,7 +73575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -71802,51 +73600,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [21302] = 19, + [22640] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1700), 1, + ACTIONS(1897), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -71858,7 +73656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -71883,51 +73681,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [21402] = 19, + [22740] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1706), 1, + ACTIONS(1903), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(527), 3, + STATE(550), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1702), 11, + ACTIONS(1899), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -71939,7 +73737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1704), 24, + ACTIONS(1901), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -71964,51 +73762,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [21502] = 19, + [22840] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1706), 1, + ACTIONS(1903), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(528), 3, + STATE(551), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1708), 11, + ACTIONS(1905), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -72020,7 +73818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1710), 24, + ACTIONS(1907), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -72045,51 +73843,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [21602] = 19, + [22940] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1712), 1, + ACTIONS(1909), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -72101,7 +73899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -72126,51 +73924,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [21702] = 19, + [23040] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1712), 1, + ACTIONS(1909), 1, anon_sym_RBRACK, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -72182,7 +73980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -72207,51 +74005,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [21802] = 19, + [23140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1911), 1, + anon_sym_LF, + STATE(493), 1, + aux_sym_program_repeat1, + ACTIONS(976), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(978), 33, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(1039), 1, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [23212] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1714), 1, - anon_sym_SEMI, - STATE(918), 1, + ACTIONS(1917), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(530), 3, + STATE(599), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1716), 11, + ACTIONS(1913), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -72263,7 +74128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1718), 24, + ACTIONS(1915), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -72288,51 +74153,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [21902] = 19, + [23312] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1720), 1, + ACTIONS(1919), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(555), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1921), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -72344,7 +74209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1923), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -72369,51 +74234,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [22002] = 19, + [23412] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1720), 1, + ACTIONS(1925), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(532), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1722), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -72425,7 +74290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1724), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -72450,51 +74315,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [22102] = 19, + [23512] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1726), 1, + ACTIONS(1925), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(557), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1927), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -72506,7 +74371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1929), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -72531,51 +74396,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [22202] = 19, + [23612] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1728), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(1931), 1, + anon_sym_SEMI, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -72587,7 +74452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -72612,51 +74477,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [22302] = 19, + [23712] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1730), 1, - anon_sym_SEMI, - STATE(918), 1, + ACTIONS(1917), 1, + anon_sym_RBRACK, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(349), 3, + STATE(600), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1732), 11, + ACTIONS(1933), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -72668,7 +74533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1734), 24, + ACTIONS(1935), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -72693,51 +74558,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [22402] = 19, + [23812] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1736), 1, - anon_sym_SEMI, - STATE(918), 1, + ACTIONS(1937), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(536), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1738), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -72749,7 +74614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1740), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -72774,51 +74639,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [22502] = 19, + [23912] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1742), 1, - anon_sym_SEMI, - STATE(918), 1, + ACTIONS(1937), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(566), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1939), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -72830,7 +74695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1941), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -72855,51 +74720,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [22602] = 19, + [24012] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1742), 1, + ACTIONS(1943), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(538), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1744), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -72911,7 +74776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1746), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -72936,51 +74801,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [22702] = 19, + [24112] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1748), 1, + ACTIONS(1945), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(563), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1947), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -72992,7 +74857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1949), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -73017,51 +74882,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [22802] = 19, + [24212] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1750), 1, + ACTIONS(1951), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(540), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1752), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -73073,7 +74938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1754), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -73098,51 +74963,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [22902] = 19, + [24312] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1756), 1, + ACTIONS(1951), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(565), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1953), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -73154,7 +75019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1955), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -73179,51 +75044,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [23002] = 19, + [24412] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1756), 1, + ACTIONS(1957), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(542), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1758), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -73235,7 +75100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1760), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -73260,51 +75125,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [23102] = 19, + [24512] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1762), 1, - anon_sym_SEMI, - STATE(918), 1, + ACTIONS(1959), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -73316,7 +75181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -73341,51 +75206,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [23202] = 19, + [24612] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1768), 1, + ACTIONS(1959), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(558), 3, + STATE(568), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1764), 11, + ACTIONS(1961), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -73397,7 +75262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1766), 24, + ACTIONS(1963), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -73422,51 +75287,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [23302] = 19, + [24712] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1770), 1, + ACTIONS(1965), 1, + anon_sym_RPAREN_RPAREN, + STATE(1152), 1, + sym_string, + ACTIONS(1137), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1147), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(955), 2, + sym_simple_expansion, + sym_expansion, + STATE(323), 3, + aux_sym__arithmetic, + sym__arith_group, + sym__expression, + STATE(1061), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1125), 11, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(1127), 24, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + [24812] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_number, + ACTIONS(1133), 1, + anon_sym_DOLLAR, + ACTIONS(1135), 1, + anon_sym_DQUOTE, + ACTIONS(1139), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1141), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1143), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1145), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1149), 1, + sym__backtick_open, + ACTIONS(1967), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(570), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1969), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -73478,7 +75424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1971), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -73503,51 +75449,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [23402] = 19, + [24912] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1770), 1, + ACTIONS(1973), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(560), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1772), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -73559,7 +75505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1774), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -73584,51 +75530,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [23502] = 19, + [25012] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1776), 1, + ACTIONS(1973), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(547), 3, + STATE(572), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1778), 11, + ACTIONS(1975), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -73640,7 +75586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1780), 24, + ACTIONS(1977), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -73665,51 +75611,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [23602] = 19, + [25112] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1782), 1, + ACTIONS(1979), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -73721,7 +75667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -73746,51 +75692,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [23702] = 19, + [25212] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1782), 1, + ACTIONS(1981), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(549), 3, + STATE(587), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1784), 11, + ACTIONS(1983), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -73802,7 +75748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1786), 24, + ACTIONS(1985), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -73827,51 +75773,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [23802] = 19, + [25312] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1788), 1, + ACTIONS(1987), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(575), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1989), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -73883,7 +75829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1991), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -73908,51 +75854,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [23902] = 19, + [25412] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1790), 1, + ACTIONS(1993), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(551), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1792), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -73964,7 +75910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1794), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -73989,51 +75935,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [24002] = 19, + [25512] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1796), 1, + ACTIONS(1993), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(577), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1995), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -74045,7 +75991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1997), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -74070,51 +76016,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [24102] = 19, + [25612] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1796), 1, + ACTIONS(1999), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(553), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1798), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -74126,7 +76072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1800), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -74151,51 +76097,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [24202] = 19, + [25712] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1802), 1, + ACTIONS(2001), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(579), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(2003), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -74207,7 +76153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(2005), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -74232,51 +76178,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [24302] = 19, + [25812] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1804), 1, + ACTIONS(2007), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(555), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1806), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -74288,7 +76234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1808), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -74313,51 +76259,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [24402] = 19, + [25912] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1810), 1, + ACTIONS(2007), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(581), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(2009), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -74369,7 +76315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(2011), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -74394,51 +76340,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [24502] = 19, + [26012] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1810), 1, + ACTIONS(2013), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(557), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1812), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -74450,7 +76396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1814), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -74475,51 +76421,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [24602] = 19, + [26112] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1816), 1, + ACTIONS(2015), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(392), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(2017), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -74531,7 +76477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(2019), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -74556,51 +76502,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [24702] = 19, + [26212] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1818), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(2021), 1, + anon_sym_SEMI, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(584), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(2023), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -74612,7 +76558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(2025), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -74637,51 +76583,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [24802] = 19, + [26312] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1818), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(2027), 1, + anon_sym_SEMI, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(571), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1820), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -74693,7 +76639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1822), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -74718,51 +76664,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [24902] = 19, + [26412] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1824), 1, + ACTIONS(2027), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(586), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(2029), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -74774,7 +76720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(2031), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -74799,51 +76745,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [25002] = 19, + [26512] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1826), 1, + ACTIONS(2033), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(562), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1828), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -74855,7 +76801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1830), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -74880,51 +76826,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [25102] = 19, + [26612] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1832), 1, + ACTIONS(2035), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -74936,7 +76882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -74961,51 +76907,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [25202] = 19, + [26712] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1832), 1, + ACTIONS(2037), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(564), 3, + STATE(589), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1834), 11, + ACTIONS(2039), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -75017,7 +76963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1836), 24, + ACTIONS(2041), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -75042,51 +76988,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [25302] = 19, + [26812] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1838), 1, + ACTIONS(2043), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -75098,7 +77044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -75123,51 +77069,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [25402] = 19, + [26912] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1840), 1, + ACTIONS(2043), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(566), 3, + STATE(591), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1842), 11, + ACTIONS(2045), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -75179,7 +77125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1844), 24, + ACTIONS(2047), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -75204,51 +77150,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [25502] = 19, + [27012] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1846), 1, + ACTIONS(2049), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -75260,7 +77206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -75285,51 +77231,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [25602] = 19, + [27112] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1846), 1, + ACTIONS(2051), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(568), 3, + STATE(593), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1848), 11, + ACTIONS(2053), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -75341,7 +77287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1850), 24, + ACTIONS(2055), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -75366,51 +77312,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [25702] = 19, + [27212] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1852), 1, + ACTIONS(2057), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -75422,7 +77368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -75447,51 +77393,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [25802] = 19, + [27312] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1858), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(2057), 1, + anon_sym_SEMI, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(474), 3, + STATE(595), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1854), 11, + ACTIONS(2059), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -75503,7 +77449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1856), 24, + ACTIONS(2061), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -75528,51 +77474,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [25902] = 19, + [27412] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1858), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(2063), 1, + anon_sym_SEMI, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1860), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -75584,7 +77530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1862), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -75609,51 +77555,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [26002] = 19, + [27512] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1011), 1, + anon_sym_RPAREN, + ACTIONS(2071), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(2074), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(2077), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(2080), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(2086), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(2089), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(2092), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(2095), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(2101), 1, sym__backtick_open, - ACTIONS(1864), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1175), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(2083), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(2098), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(1184), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(596), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1176), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(2065), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -75665,7 +77611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(2068), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -75690,51 +77636,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [26102] = 19, + [27612] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1271), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1273), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1279), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1281), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1283), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1285), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1289), 1, sym__backtick_open, - ACTIONS(1864), 1, - anon_sym_RPAREN_RPAREN, - STATE(918), 1, + ACTIONS(2108), 1, + anon_sym_RPAREN, + STATE(1175), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1277), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1287), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(1184), 2, sym_simple_expansion, sym_expansion, - STATE(575), 3, + STATE(603), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1176), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1866), 11, + ACTIONS(2104), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -75746,7 +77692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1868), 24, + ACTIONS(2106), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -75771,51 +77717,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [26202] = 19, + [27712] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1874), 1, + ACTIONS(2110), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(533), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1870), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -75827,7 +77773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1872), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -75852,199 +77798,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [26302] = 5, + [27812] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1019), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(1012), 3, - anon_sym_LF, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(1017), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1015), 30, - anon_sym_BANG, + ACTIONS(1129), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [26374] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1876), 1, + ACTIONS(2112), 1, anon_sym_RPAREN_RPAREN, - STATE(918), 1, - sym_string, - ACTIONS(1045), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1055), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(969), 2, - sym_simple_expansion, - sym_expansion, - STATE(313), 3, - aux_sym__arithmetic, - sym__arith_group, - sym__expression, - STATE(947), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(1031), 11, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(1033), 24, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - [26474] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1088), 1, - anon_sym_LPAREN, - ACTIONS(1092), 1, - sym_number, - ACTIONS(1094), 1, - anon_sym_DOLLAR, - ACTIONS(1096), 1, - anon_sym_DQUOTE, - ACTIONS(1100), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1102), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1104), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1106), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1110), 1, - sym__backtick_open, - ACTIONS(1882), 1, - anon_sym_RPAREN, STATE(1152), 1, sym_string, - ACTIONS(1098), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1108), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1139), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(363), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(1153), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1878), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -76056,7 +77854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1880), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -76081,51 +77879,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [26574] = 19, + [27912] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(971), 1, - anon_sym_RPAREN, - ACTIONS(1890), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1893), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1896), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1899), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1905), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1908), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1911), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1914), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1920), 1, + ACTIONS(1149), 1, sym__backtick_open, + ACTIONS(2112), 1, + anon_sym_RBRACK, STATE(1152), 1, sym_string, - ACTIONS(1902), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1917), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1139), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(577), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(1153), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1884), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -76137,7 +77935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1887), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -76162,119 +77960,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [26674] = 6, + [28012] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1923), 1, - anon_sym_LF, - STATE(324), 1, - aux_sym_program_repeat1, - ACTIONS(942), 3, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - ACTIONS(940), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(936), 30, - anon_sym_BANG, + ACTIONS(1129), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [26748] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1035), 1, - anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1925), 1, + ACTIONS(2114), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(580), 3, + STATE(602), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1927), 11, + ACTIONS(2116), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -76286,7 +78016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1929), 24, + ACTIONS(2118), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -76311,51 +78041,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [26848] = 19, + [28112] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1931), 1, + ACTIONS(2120), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -76367,7 +78097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -76392,51 +78122,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [26948] = 19, + [28212] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1267), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1271), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1273), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1275), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1279), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1281), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1283), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1285), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1289), 1, sym__backtick_open, - ACTIONS(1933), 1, - anon_sym_SEMI, - STATE(918), 1, + ACTIONS(2122), 1, + anon_sym_RPAREN, + STATE(1175), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1277), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1287), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(1184), 2, sym_simple_expansion, sym_expansion, - STATE(582), 3, + STATE(596), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1176), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1935), 11, + ACTIONS(1295), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -76448,7 +78178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1937), 24, + ACTIONS(1297), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -76473,51 +78203,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [27048] = 19, + [28312] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1939), 1, + ACTIONS(2124), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(605), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(2126), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -76529,7 +78259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(2128), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -76554,51 +78284,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [27148] = 19, + [28412] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1941), 1, + ACTIONS(2130), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(584), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1943), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -76610,7 +78340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1945), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -76635,51 +78365,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [27248] = 19, + [28512] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1947), 1, + ACTIONS(2132), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(607), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(2134), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -76691,7 +78421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(2136), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -76716,51 +78446,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [27348] = 19, + [28612] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1949), 1, + ACTIONS(2138), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(586), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1951), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -76772,7 +78502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1953), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -76797,51 +78527,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [27448] = 19, + [28712] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1955), 1, + ACTIONS(2140), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(609), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(2142), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -76853,7 +78583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(2144), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -76878,51 +78608,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [27548] = 19, + [28812] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1957), 1, + ACTIONS(2146), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(588), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1959), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -76934,7 +78664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1961), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -76959,51 +78689,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [27648] = 19, + [28912] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1963), 1, + ACTIONS(2148), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(611), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(2150), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -77015,7 +78745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(2152), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -77040,51 +78770,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [27748] = 19, + [29012] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1965), 1, + ACTIONS(2154), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(590), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1967), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -77096,7 +78826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1969), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -77121,51 +78851,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [27848] = 19, + [29112] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1971), 1, + ACTIONS(2156), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(613), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(2158), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -77177,7 +78907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(2160), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -77202,51 +78932,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [27948] = 19, + [29212] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1973), 1, + ACTIONS(2162), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(592), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1975), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -77258,7 +78988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1977), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -77283,51 +79013,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [28048] = 19, + [29312] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1979), 1, + ACTIONS(2164), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(313), 3, + STATE(615), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1031), 11, + ACTIONS(2166), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -77339,7 +79069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1033), 24, + ACTIONS(2168), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -77364,51 +79094,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [28148] = 19, + [29412] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1981), 1, + ACTIONS(2170), 1, anon_sym_SEMI, - STATE(918), 1, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(431), 3, + STATE(323), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1983), 11, + ACTIONS(1125), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -77420,7 +79150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1985), 24, + ACTIONS(1127), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -77445,51 +79175,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [28248] = 19, + [29512] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1035), 1, + ACTIONS(1129), 1, anon_sym_LPAREN, - ACTIONS(1039), 1, + ACTIONS(1131), 1, sym_number, - ACTIONS(1041), 1, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(1043), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(1047), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1049), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1053), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1057), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(1554), 1, - anon_sym_RBRACK, - STATE(918), 1, + ACTIONS(2172), 1, + anon_sym_SEMI, + STATE(1152), 1, sym_string, - ACTIONS(1045), 2, + ACTIONS(1137), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(1055), 2, + ACTIONS(1147), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(969), 2, + STATE(955), 2, sym_simple_expansion, sym_expansion, - STATE(476), 3, + STATE(341), 3, aux_sym__arithmetic, sym__arith_group, sym__expression, - STATE(947), 5, + STATE(1061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1987), 11, + ACTIONS(2174), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -77501,7 +79231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(1989), 24, + ACTIONS(2176), 24, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -77526,91 +79256,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, sym_variable_name, - [28348] = 31, - ACTIONS(201), 1, - aux_sym_brace_expression_token1, - ACTIONS(205), 1, + [29612] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1129), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + sym_number, + ACTIONS(1133), 1, anon_sym_DOLLAR, - ACTIONS(207), 1, + ACTIONS(1135), 1, anon_sym_DQUOTE, - ACTIONS(209), 1, + ACTIONS(1139), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(211), 1, + ACTIONS(1141), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(213), 1, + ACTIONS(1143), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(215), 1, + ACTIONS(1145), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(223), 1, + ACTIONS(1149), 1, sym__backtick_open, - ACTIONS(225), 1, - sym__dollar_literal, - ACTIONS(227), 1, - sym__brace_expr_start, - ACTIONS(1991), 1, + ACTIONS(1739), 1, + anon_sym_RBRACK, + STATE(1152), 1, + sym_string, + ACTIONS(1137), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1147), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(955), 2, + sym_simple_expansion, + sym_expansion, + STATE(495), 3, + aux_sym__arithmetic, + sym__arith_group, + sym__expression, + STATE(1061), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2178), 11, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(2180), 24, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + [29712] = 31, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2182), 1, sym_word, - ACTIONS(2003), 1, + ACTIONS(2194), 1, anon_sym_LT_LT, - ACTIONS(2005), 1, + ACTIONS(2197), 1, anon_sym_LT_LT_DASH, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2009), 1, + ACTIONS(2200), 1, + aux_sym_brace_expression_token1, + ACTIONS(2206), 1, + anon_sym_DOLLAR, + ACTIONS(2209), 1, + anon_sym_DQUOTE, + ACTIONS(2212), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2215), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2218), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2221), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2227), 1, sym__file_descriptor, - STATE(599), 1, + ACTIONS(2230), 1, + sym__backtick_open, + ACTIONS(2233), 1, + sym__dollar_literal, + ACTIONS(2236), 1, + sym__brace_expr_start, + STATE(618), 1, aux_sym_command_repeat2, - STATE(1214), 1, + STATE(1292), 1, sym_string, - STATE(1261), 1, - sym__argument, - STATE(1303), 1, + STATE(1393), 1, sym_heredoc_redirect, - STATE(3585), 1, + STATE(1460), 1, + sym__argument, + STATE(3526), 1, sym__word_part, - ACTIONS(217), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1997), 2, + ACTIONS(2185), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1201), 2, - sym_brace_expression, - sym__expression, - STATE(1206), 2, + ACTIONS(2224), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1242), 2, sym_simple_expansion, sym_expansion, - ACTIONS(203), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1999), 3, + STATE(1273), 2, + sym_brace_expression, + sym__expression, + ACTIONS(2188), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1266), 3, + ACTIONS(2203), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1461), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(1995), 5, - anon_sym_SEMI, + ACTIONS(1187), 5, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, - STATE(1183), 5, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + STATE(1334), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1993), 6, + ACTIONS(1185), 6, + sym__heredoc_newline, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2001), 7, + ACTIONS(2191), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -77618,91 +79429,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [28471] = 31, - ACTIONS(201), 1, + [29835] = 31, + ACTIONS(259), 1, aux_sym_brace_expression_token1, - ACTIONS(205), 1, + ACTIONS(263), 1, anon_sym_DOLLAR, - ACTIONS(207), 1, + ACTIONS(265), 1, anon_sym_DQUOTE, - ACTIONS(209), 1, + ACTIONS(267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(211), 1, + ACTIONS(269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(213), 1, + ACTIONS(271), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(215), 1, + ACTIONS(273), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(223), 1, + ACTIONS(281), 1, sym__backtick_open, - ACTIONS(225), 1, + ACTIONS(283), 1, sym__dollar_literal, - ACTIONS(227), 1, + ACTIONS(285), 1, sym__brace_expr_start, - ACTIONS(1991), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2239), 1, sym_word, - ACTIONS(2003), 1, + ACTIONS(2247), 1, anon_sym_LT_LT, - ACTIONS(2005), 1, + ACTIONS(2249), 1, anon_sym_LT_LT_DASH, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2009), 1, + ACTIONS(2251), 1, sym__file_descriptor, - STATE(595), 1, + STATE(621), 1, aux_sym_command_repeat2, - STATE(1214), 1, + STATE(1301), 1, sym_string, - STATE(1261), 1, - sym__argument, - STATE(1303), 1, + STATE(1452), 1, sym_heredoc_redirect, - STATE(3585), 1, + STATE(1454), 1, + sym__argument, + STATE(3548), 1, sym__word_part, - ACTIONS(217), 2, + ACTIONS(275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1997), 2, + ACTIONS(2241), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1201), 2, + STATE(1263), 2, sym_brace_expression, sym__expression, - STATE(1206), 2, + STATE(1319), 2, sym_simple_expansion, sym_expansion, - ACTIONS(203), 3, + ACTIONS(261), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(1999), 3, + ACTIONS(2243), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1266), 3, + STATE(1457), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2013), 5, + ACTIONS(1155), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, anon_sym_SEMI_SEMI, - STATE(1183), 5, + STATE(1302), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2011), 6, + ACTIONS(1153), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2001), 7, + ACTIONS(2245), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -77710,23 +79521,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [28594] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 1, - anon_sym_LF, - ACTIONS(1019), 3, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - ACTIONS(1017), 25, - sym__assignment_name, - sym__file_descriptor, + [29958] = 31, + ACTIONS(55), 1, + aux_sym_brace_expression_token1, + ACTIONS(59), 1, + anon_sym_DOLLAR, + ACTIONS(61), 1, + anon_sym_DQUOTE, + ACTIONS(63), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(65), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(67), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(69), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(77), 1, sym__backtick_open, + ACTIONS(79), 1, sym__dollar_literal, + ACTIONS(81), 1, sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2253), 1, + sym_word, + ACTIONS(2261), 1, + anon_sym_LT_LT, + ACTIONS(2263), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2265), 1, + sym__file_descriptor, + STATE(637), 1, + aux_sym_command_repeat2, + STATE(1265), 1, + sym_string, + STATE(1442), 1, + sym__argument, + STATE(1474), 1, + sym_heredoc_redirect, + STATE(3512), 1, + sym__word_part, + ACTIONS(71), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1245), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2255), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1331), 2, + sym_brace_expression, + sym__expression, + STATE(1342), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(57), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2257), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1443), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + STATE(1338), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2259), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -77734,133 +79603,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(1243), 9, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + [30081] = 31, + ACTIONS(259), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(263), 1, + anon_sym_DOLLAR, + ACTIONS(265), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(267), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(271), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(273), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(281), 1, + sym__backtick_open, + ACTIONS(283), 1, + sym__dollar_literal, + ACTIONS(285), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2239), 1, + sym_word, + ACTIONS(2247), 1, + anon_sym_LT_LT, + ACTIONS(2249), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2251), 1, + sym__file_descriptor, + STATE(624), 1, + aux_sym_command_repeat2, + STATE(1301), 1, + sym_string, + STATE(1452), 1, + sym_heredoc_redirect, + STATE(1454), 1, + sym__argument, + STATE(3548), 1, + sym__word_part, + ACTIONS(275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1015), 30, + ACTIONS(2241), 2, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, + anon_sym_LBRACE_RBRACE, + STATE(1263), 2, + sym_brace_expression, + sym__expression, + STATE(1319), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(261), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2243), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [28665] = 31, - ACTIONS(201), 1, + STATE(1457), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + ACTIONS(1173), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + STATE(1302), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1171), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2245), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [30204] = 31, + ACTIONS(259), 1, aux_sym_brace_expression_token1, - ACTIONS(205), 1, + ACTIONS(263), 1, anon_sym_DOLLAR, - ACTIONS(207), 1, + ACTIONS(265), 1, anon_sym_DQUOTE, - ACTIONS(209), 1, + ACTIONS(267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(211), 1, + ACTIONS(269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(213), 1, + ACTIONS(271), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(215), 1, + ACTIONS(273), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(223), 1, + ACTIONS(281), 1, sym__backtick_open, - ACTIONS(225), 1, + ACTIONS(283), 1, sym__dollar_literal, - ACTIONS(227), 1, + ACTIONS(285), 1, sym__brace_expr_start, - ACTIONS(1991), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2239), 1, sym_word, - ACTIONS(2003), 1, + ACTIONS(2247), 1, anon_sym_LT_LT, - ACTIONS(2005), 1, + ACTIONS(2249), 1, anon_sym_LT_LT_DASH, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2009), 1, + ACTIONS(2251), 1, sym__file_descriptor, - STATE(600), 1, + STATE(625), 1, aux_sym_command_repeat2, - STATE(1214), 1, + STATE(1301), 1, sym_string, - STATE(1261), 1, - sym__argument, - STATE(1303), 1, + STATE(1452), 1, sym_heredoc_redirect, - STATE(3585), 1, + STATE(1454), 1, + sym__argument, + STATE(3548), 1, sym__word_part, - ACTIONS(217), 2, + ACTIONS(275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1997), 2, + ACTIONS(2241), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1201), 2, + STATE(1263), 2, sym_brace_expression, sym__expression, - STATE(1206), 2, + STATE(1319), 2, sym_simple_expansion, sym_expansion, - ACTIONS(203), 3, + ACTIONS(261), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(1999), 3, + ACTIONS(2243), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1266), 3, + STATE(1457), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2017), 5, + ACTIONS(1180), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, anon_sym_SEMI_SEMI, - STATE(1183), 5, + STATE(1302), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2015), 6, + ACTIONS(1178), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2001), 7, + ACTIONS(2245), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -77868,91 +79797,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [28788] = 31, - ACTIONS(2007), 1, + [30327] = 31, + ACTIONS(55), 1, + aux_sym_brace_expression_token1, + ACTIONS(59), 1, + anon_sym_DOLLAR, + ACTIONS(61), 1, + anon_sym_DQUOTE, + ACTIONS(63), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(65), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(67), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(69), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(77), 1, + sym__backtick_open, + ACTIONS(79), 1, + sym__dollar_literal, + ACTIONS(81), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2019), 1, + ACTIONS(2253), 1, sym_word, - ACTIONS(2035), 1, + ACTIONS(2261), 1, + anon_sym_LT_LT, + ACTIONS(2263), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2265), 1, + sym__file_descriptor, + STATE(637), 1, + aux_sym_command_repeat2, + STATE(1265), 1, + sym_string, + STATE(1442), 1, + sym__argument, + STATE(1474), 1, + sym_heredoc_redirect, + STATE(3512), 1, + sym__word_part, + ACTIONS(71), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1173), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2255), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1331), 2, + sym_brace_expression, + sym__expression, + STATE(1342), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(57), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2257), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1443), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + STATE(1338), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2259), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(1171), 9, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + [30450] = 31, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2267), 1, + sym_word, + ACTIONS(2279), 1, anon_sym_LT_LT, - ACTIONS(2038), 1, + ACTIONS(2282), 1, anon_sym_LT_LT_DASH, - ACTIONS(2041), 1, + ACTIONS(2285), 1, aux_sym_brace_expression_token1, - ACTIONS(2047), 1, + ACTIONS(2291), 1, anon_sym_DOLLAR, - ACTIONS(2050), 1, + ACTIONS(2294), 1, anon_sym_DQUOTE, - ACTIONS(2053), 1, + ACTIONS(2297), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2056), 1, + ACTIONS(2300), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2059), 1, + ACTIONS(2303), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2062), 1, + ACTIONS(2306), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2068), 1, + ACTIONS(2312), 1, sym__file_descriptor, - ACTIONS(2071), 1, + ACTIONS(2315), 1, sym__backtick_open, - ACTIONS(2074), 1, + ACTIONS(2318), 1, sym__dollar_literal, - ACTIONS(2077), 1, + ACTIONS(2321), 1, sym__brace_expr_start, - STATE(599), 1, + STATE(624), 1, aux_sym_command_repeat2, - STATE(1214), 1, + STATE(1301), 1, sym_string, - STATE(1261), 1, - sym__argument, - STATE(1303), 1, + STATE(1452), 1, sym_heredoc_redirect, - STATE(3585), 1, + STATE(1454), 1, + sym__argument, + STATE(3548), 1, sym__word_part, - ACTIONS(2026), 2, + ACTIONS(2270), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - ACTIONS(2065), 2, + ACTIONS(2309), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1201), 2, + STATE(1263), 2, sym_brace_expression, sym__expression, - STATE(1206), 2, + STATE(1319), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2029), 3, + ACTIONS(2273), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2044), 3, + ACTIONS(2288), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1266), 3, + STATE(1457), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2024), 5, + ACTIONS(1187), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, anon_sym_SEMI_SEMI, - STATE(1183), 5, + STATE(1302), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2022), 6, + ACTIONS(1185), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2032), 7, + ACTIONS(2276), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -77960,115 +79981,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [28911] = 31, - ACTIONS(201), 1, + [30573] = 31, + ACTIONS(259), 1, aux_sym_brace_expression_token1, - ACTIONS(205), 1, + ACTIONS(263), 1, anon_sym_DOLLAR, - ACTIONS(207), 1, + ACTIONS(265), 1, anon_sym_DQUOTE, - ACTIONS(209), 1, + ACTIONS(267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(211), 1, + ACTIONS(269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(213), 1, + ACTIONS(271), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(215), 1, + ACTIONS(273), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(223), 1, + ACTIONS(281), 1, sym__backtick_open, - ACTIONS(225), 1, + ACTIONS(283), 1, sym__dollar_literal, - ACTIONS(227), 1, + ACTIONS(285), 1, sym__brace_expr_start, - ACTIONS(1991), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2239), 1, sym_word, - ACTIONS(2003), 1, + ACTIONS(2247), 1, anon_sym_LT_LT, - ACTIONS(2005), 1, + ACTIONS(2249), 1, anon_sym_LT_LT_DASH, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2009), 1, + ACTIONS(2251), 1, sym__file_descriptor, - STATE(599), 1, + STATE(624), 1, aux_sym_command_repeat2, - STATE(1214), 1, + STATE(1301), 1, sym_string, - STATE(1261), 1, - sym__argument, - STATE(1303), 1, + STATE(1452), 1, sym_heredoc_redirect, - STATE(3585), 1, + STATE(1454), 1, + sym__argument, + STATE(3548), 1, sym__word_part, - ACTIONS(217), 2, + ACTIONS(275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1997), 2, + ACTIONS(2241), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1201), 2, + STATE(1263), 2, sym_brace_expression, sym__expression, - STATE(1206), 2, + STATE(1319), 2, sym_simple_expansion, sym_expansion, - ACTIONS(203), 3, + ACTIONS(261), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(1999), 3, + ACTIONS(2243), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1266), 3, + STATE(1457), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2082), 5, + ACTIONS(1245), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, anon_sym_SEMI_SEMI, - STATE(1183), 5, + STATE(1302), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2080), 6, + ACTIONS(1243), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2001), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [29034] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(950), 1, - anon_sym_do, - ACTIONS(2084), 1, - anon_sym_LF, - STATE(647), 1, - aux_sym_program_repeat1, - ACTIONS(940), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, + ACTIONS(2245), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -78076,129 +80073,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + [30696] = 31, + ACTIONS(113), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(121), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(127), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(936), 30, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [29106] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(967), 1, - anon_sym_fi, - ACTIONS(2086), 1, - anon_sym_LF, - STATE(603), 1, - aux_sym_program_repeat1, - ACTIONS(948), 25, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(135), 1, sym__backtick_open, + ACTIONS(137), 1, sym__dollar_literal, + ACTIONS(139), 1, sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2324), 1, + sym_word, + ACTIONS(2332), 1, + anon_sym_LT_LT, + ACTIONS(2334), 1, anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(2336), 1, + sym__file_descriptor, + STATE(629), 1, + aux_sym_command_repeat2, + STATE(1292), 1, + sym_string, + STATE(1393), 1, + sym_heredoc_redirect, + STATE(1460), 1, + sym__argument, + STATE(3526), 1, + sym__word_part, + ACTIONS(129), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(2326), 2, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, + anon_sym_LBRACE_RBRACE, + STATE(1242), 2, + sym_simple_expansion, + sym_expansion, + STATE(1273), 2, + sym_brace_expression, + sym__expression, + ACTIONS(115), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2328), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [29178] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2088), 1, + STATE(1461), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + ACTIONS(1180), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + STATE(1334), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1178), 6, + sym__heredoc_newline, anon_sym_LF, - STATE(603), 1, - aux_sym_program_repeat1, - ACTIONS(956), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2330), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -78206,59 +80165,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(958), 31, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_fi, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [29248] = 6, + [30819] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 1, - anon_sym_then, - ACTIONS(2091), 1, - anon_sym_LF, - STATE(615), 1, - aux_sym_program_repeat1, - ACTIONS(940), 25, + ACTIONS(1106), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1108), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(1086), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -78284,7 +80200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(1084), 30, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -78315,7 +80231,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [29320] = 31, + [30890] = 31, ACTIONS(55), 1, aux_sym_brace_expression_token1, ACTIONS(59), 1, @@ -78336,60 +80252,60 @@ static const uint16_t ts_small_parse_table[] = { sym__dollar_literal, ACTIONS(81), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2253), 1, sym_word, - ACTIONS(2101), 1, + ACTIONS(2261), 1, anon_sym_LT_LT, - ACTIONS(2103), 1, + ACTIONS(2263), 1, anon_sym_LT_LT_DASH, - ACTIONS(2105), 1, + ACTIONS(2265), 1, sym__file_descriptor, - STATE(634), 1, + STATE(623), 1, aux_sym_command_repeat2, - STATE(1314), 1, + STATE(1265), 1, sym_string, - STATE(1379), 1, - sym_heredoc_redirect, - STATE(1482), 1, + STATE(1442), 1, sym__argument, - STATE(3594), 1, + STATE(1474), 1, + sym_heredoc_redirect, + STATE(3512), 1, sym__word_part, ACTIONS(71), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2013), 2, + ACTIONS(1155), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2095), 2, + ACTIONS(2255), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1311), 2, + STATE(1331), 2, sym_brace_expression, sym__expression, - STATE(1350), 2, + STATE(1342), 2, sym_simple_expansion, sym_expansion, ACTIONS(57), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2097), 3, + ACTIONS(2257), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1386), 3, + STATE(1443), 3, sym_redirect, sym__word_like, sym_concatenation, - STATE(1333), 5, + STATE(1338), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2099), 7, + ACTIONS(2259), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -78397,7 +80313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(2011), 8, + ACTIONS(1153), 9, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -78406,180 +80323,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_RPAREN, anon_sym_RBRACE, - [29442] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_then, - ACTIONS(2107), 1, - anon_sym_LF, - STATE(616), 1, - aux_sym_program_repeat1, - ACTIONS(948), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(946), 30, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [29514] = 31, - ACTIONS(55), 1, + [31013] = 31, + ACTIONS(113), 1, aux_sym_brace_expression_token1, - ACTIONS(59), 1, + ACTIONS(117), 1, anon_sym_DOLLAR, - ACTIONS(61), 1, + ACTIONS(119), 1, anon_sym_DQUOTE, - ACTIONS(63), 1, + ACTIONS(121), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(65), 1, + ACTIONS(123), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(67), 1, + ACTIONS(125), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 1, + ACTIONS(127), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(77), 1, + ACTIONS(135), 1, sym__backtick_open, - ACTIONS(79), 1, + ACTIONS(137), 1, sym__dollar_literal, - ACTIONS(81), 1, + ACTIONS(139), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2093), 1, + ACTIONS(2324), 1, sym_word, - ACTIONS(2101), 1, + ACTIONS(2332), 1, anon_sym_LT_LT, - ACTIONS(2103), 1, + ACTIONS(2334), 1, anon_sym_LT_LT_DASH, - ACTIONS(2105), 1, + ACTIONS(2336), 1, sym__file_descriptor, - STATE(645), 1, + STATE(618), 1, aux_sym_command_repeat2, - STATE(1314), 1, + STATE(1292), 1, sym_string, - STATE(1379), 1, + STATE(1393), 1, sym_heredoc_redirect, - STATE(1482), 1, + STATE(1460), 1, sym__argument, - STATE(3594), 1, + STATE(3526), 1, sym__word_part, - ACTIONS(71), 2, + ACTIONS(129), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2017), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2095), 2, + ACTIONS(2326), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1311), 2, - sym_brace_expression, - sym__expression, - STATE(1350), 2, + STATE(1242), 2, sym_simple_expansion, sym_expansion, - ACTIONS(57), 3, + STATE(1273), 2, + sym_brace_expression, + sym__expression, + ACTIONS(115), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2097), 3, + ACTIONS(2328), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1386), 3, + STATE(1461), 3, sym_redirect, sym__word_like, sym_concatenation, - STATE(1333), 5, + ACTIONS(1245), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + STATE(1334), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2099), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(2015), 8, - ts_builtin_sym_end, + ACTIONS(1243), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - [29636] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(950), 1, - anon_sym_fi, - ACTIONS(2109), 1, - anon_sym_LF, - STATE(626), 1, - aux_sym_program_repeat1, - ACTIONS(940), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, + ACTIONS(2330), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -78587,63 +80415,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(936), 30, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [29708] = 6, + [31136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, - anon_sym_then, - ACTIONS(2111), 1, - anon_sym_LF, - STATE(606), 1, - aux_sym_program_repeat1, - ACTIONS(940), 25, + ACTIONS(960), 29, + sym_heredoc_body, + sym_heredoc_end, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, sym_shebang, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -78664,7 +80448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(962), 30, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -78695,19 +80479,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [29780] = 5, + [31203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2113), 1, - anon_sym_LF, - STATE(610), 1, - aux_sym_program_repeat1, - ACTIONS(956), 25, + ACTIONS(960), 28, + sym_heredoc_body, + sym_heredoc_end, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, sym_shebang, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -78728,12 +80511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(958), 31, + ACTIONS(962), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_do, anon_sym_if, + anon_sym_then, anon_sym_case, anon_sym_for, anon_sym_select, @@ -78760,21 +80543,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [29850] = 6, + [31270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, - anon_sym_done, - ACTIONS(2116), 1, - anon_sym_LF, - STATE(627), 1, - aux_sym_program_repeat1, - ACTIONS(940), 25, + ACTIONS(960), 28, + sym_heredoc_body, + sym_heredoc_end, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, sym_shebang, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -78795,10 +80575,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(962), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_done, anon_sym_if, anon_sym_case, anon_sym_for, @@ -78826,7 +80607,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [29922] = 29, + [31337] = 29, ACTIONS(195), 1, anon_sym_LT_LT, ACTIONS(197), 1, @@ -78835,78 +80616,71 @@ static const uint16_t ts_small_parse_table[] = { sym__assignment_name, ACTIONS(221), 1, sym__file_descriptor, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2118), 1, + ACTIONS(2338), 1, sym_word, - ACTIONS(2124), 1, + ACTIONS(2344), 1, aux_sym_brace_expression_token1, - ACTIONS(2128), 1, + ACTIONS(2348), 1, anon_sym_DOLLAR, - ACTIONS(2130), 1, + ACTIONS(2350), 1, anon_sym_DQUOTE, - ACTIONS(2132), 1, + ACTIONS(2352), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2134), 1, + ACTIONS(2354), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2136), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2358), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2142), 1, + ACTIONS(2362), 1, sym__backtick_open, - ACTIONS(2144), 1, + ACTIONS(2364), 1, sym__dollar_literal, - ACTIONS(2146), 1, + ACTIONS(2366), 1, sym__brace_expr_start, - STATE(1239), 1, + STATE(1293), 1, sym_string, - STATE(1419), 1, + STATE(1404), 1, sym_heredoc_redirect, - STATE(3608), 1, + STATE(3560), 1, sym__word_part, - ACTIONS(2140), 2, + ACTIONS(2360), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1252), 2, - sym_simple_expansion, - sym_expansion, - STATE(1355), 2, + STATE(1261), 2, sym_brace_expression, sym__expression, + STATE(1303), 2, + sym_simple_expansion, + sym_expansion, ACTIONS(191), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2126), 3, + ACTIONS(2346), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2122), 5, + ACTIONS(2342), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_esac, anon_sym_SEMI_SEMI, - STATE(614), 5, + STATE(640), 5, sym_variable_assignment, sym_redirect, sym__word_like, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1240), 5, + STATE(1294), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2120), 6, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, ACTIONS(193), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, @@ -78915,21 +80689,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [30040] = 6, + ACTIONS(2340), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [31456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(934), 1, - sym__backtick_close, - ACTIONS(2148), 1, - anon_sym_LF, - STATE(618), 1, - aux_sym_program_repeat1, - ACTIONS(940), 25, + ACTIONS(960), 28, + sym_heredoc_body, + sym_heredoc_end, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, sym_shebang, anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, @@ -78950,11 +80729,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(962), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, + anon_sym_fi, anon_sym_case, anon_sym_for, anon_sym_select, @@ -78981,88 +80761,153 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [30112] = 29, - ACTIONS(2007), 1, + [31523] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2150), 1, - sym_word, - ACTIONS(2163), 1, - anon_sym_LT_LT, - ACTIONS(2166), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2169), 1, - aux_sym_brace_expression_token1, - ACTIONS(2175), 1, - anon_sym_DOLLAR, - ACTIONS(2178), 1, - anon_sym_DQUOTE, - ACTIONS(2181), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2184), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2187), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2190), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2196), 1, + ACTIONS(960), 28, + sym_heredoc_body, + sym_heredoc_end, sym__assignment_name, - ACTIONS(2199), 1, sym__file_descriptor, - ACTIONS(2202), 1, sym__backtick_open, - ACTIONS(2205), 1, sym__dollar_literal, - ACTIONS(2208), 1, sym__brace_expr_start, - STATE(1239), 1, - sym_string, - STATE(1419), 1, - sym_heredoc_redirect, - STATE(3608), 1, - sym__word_part, - ACTIONS(2193), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1252), 2, - sym_simple_expansion, - sym_expansion, - STATE(1355), 2, - sym_brace_expression, - sym__expression, - ACTIONS(2157), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2172), 3, + anon_sym_LF, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(2155), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, - STATE(614), 5, - sym_variable_assignment, - sym_redirect, - sym__word_like, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1240), 5, - sym__literal, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(962), 31, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_do, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [31590] = 29, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2368), 1, + sym_word, + ACTIONS(2381), 1, + anon_sym_LT_LT, + ACTIONS(2384), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2387), 1, + aux_sym_brace_expression_token1, + ACTIONS(2393), 1, + anon_sym_DOLLAR, + ACTIONS(2396), 1, + anon_sym_DQUOTE, + ACTIONS(2399), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2402), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2405), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2408), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2414), 1, + sym__assignment_name, + ACTIONS(2417), 1, + sym__file_descriptor, + ACTIONS(2420), 1, + sym__backtick_open, + ACTIONS(2423), 1, + sym__dollar_literal, + ACTIONS(2426), 1, + sym__brace_expr_start, + STATE(1293), 1, + sym_string, + STATE(1404), 1, + sym_heredoc_redirect, + STATE(3560), 1, + sym__word_part, + ACTIONS(2411), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1261), 2, + sym_brace_expression, + sym__expression, + STATE(1303), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2375), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(2390), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2373), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + STATE(636), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1294), 5, + sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2153), 6, + ACTIONS(2371), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2160), 7, + ACTIONS(2378), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79070,16 +80915,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [30230] = 6, - ACTIONS(3), 1, + [31709] = 31, + ACTIONS(1167), 1, sym_comment, - ACTIONS(967), 1, - anon_sym_then, - ACTIONS(2107), 1, + ACTIONS(2429), 1, + sym_word, + ACTIONS(2441), 1, + anon_sym_LT_LT, + ACTIONS(2444), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2447), 1, + aux_sym_brace_expression_token1, + ACTIONS(2453), 1, + anon_sym_DOLLAR, + ACTIONS(2456), 1, + anon_sym_DQUOTE, + ACTIONS(2459), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2462), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2465), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2468), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2474), 1, + sym__file_descriptor, + ACTIONS(2477), 1, + sym__backtick_open, + ACTIONS(2480), 1, + sym__dollar_literal, + ACTIONS(2483), 1, + sym__brace_expr_start, + STATE(637), 1, + aux_sym_command_repeat2, + STATE(1265), 1, + sym_string, + STATE(1442), 1, + sym__argument, + STATE(1474), 1, + sym_heredoc_redirect, + STATE(3512), 1, + sym__word_part, + ACTIONS(1187), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2432), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + ACTIONS(2471), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1331), 2, + sym_brace_expression, + sym__expression, + STATE(1342), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2435), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(2450), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1443), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + STATE(1338), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2438), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(1185), 9, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, - STATE(616), 1, - aux_sym_program_repeat1, - ACTIONS(948), 25, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + [31832] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1096), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1098), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(1086), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -79105,7 +81042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(1084), 30, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -79136,14 +81073,290 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [30302] = 5, - ACTIONS(3), 1, + [31903] = 31, + ACTIONS(113), 1, + aux_sym_brace_expression_token1, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(119), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(127), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(135), 1, + sym__backtick_open, + ACTIONS(137), 1, + sym__dollar_literal, + ACTIONS(139), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2211), 1, + ACTIONS(2324), 1, + sym_word, + ACTIONS(2332), 1, + anon_sym_LT_LT, + ACTIONS(2334), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2336), 1, + sym__file_descriptor, + STATE(618), 1, + aux_sym_command_repeat2, + STATE(1292), 1, + sym_string, + STATE(1393), 1, + sym_heredoc_redirect, + STATE(1460), 1, + sym__argument, + STATE(3526), 1, + sym__word_part, + ACTIONS(129), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2326), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1242), 2, + sym_simple_expansion, + sym_expansion, + STATE(1273), 2, + sym_brace_expression, + sym__expression, + ACTIONS(115), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2328), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1461), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + ACTIONS(1173), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + STATE(1334), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1171), 6, + sym__heredoc_newline, anon_sym_LF, - STATE(616), 1, - aux_sym_program_repeat1, - ACTIONS(956), 25, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2330), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [32026] = 29, + ACTIONS(195), 1, + anon_sym_LT_LT, + ACTIONS(197), 1, + anon_sym_LT_LT_DASH, + ACTIONS(219), 1, + sym__assignment_name, + ACTIONS(221), 1, + sym__file_descriptor, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2338), 1, + sym_word, + ACTIONS(2344), 1, + aux_sym_brace_expression_token1, + ACTIONS(2348), 1, + anon_sym_DOLLAR, + ACTIONS(2350), 1, + anon_sym_DQUOTE, + ACTIONS(2352), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2354), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2356), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2358), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2362), 1, + sym__backtick_open, + ACTIONS(2364), 1, + sym__dollar_literal, + ACTIONS(2366), 1, + sym__brace_expr_start, + STATE(1293), 1, + sym_string, + STATE(1404), 1, + sym_heredoc_redirect, + STATE(3560), 1, + sym__word_part, + ACTIONS(2360), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1261), 2, + sym_brace_expression, + sym__expression, + STATE(1303), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(191), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(2346), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2488), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + STATE(636), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1294), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(193), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(2486), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [32145] = 31, + ACTIONS(113), 1, + aux_sym_brace_expression_token1, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(119), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(127), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(135), 1, + sym__backtick_open, + ACTIONS(137), 1, + sym__dollar_literal, + ACTIONS(139), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2324), 1, + sym_word, + ACTIONS(2332), 1, + anon_sym_LT_LT, + ACTIONS(2334), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2336), 1, + sym__file_descriptor, + STATE(639), 1, + aux_sym_command_repeat2, + STATE(1292), 1, + sym_string, + STATE(1393), 1, + sym_heredoc_redirect, + STATE(1460), 1, + sym__argument, + STATE(3526), 1, + sym__word_part, + ACTIONS(129), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2326), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1242), 2, + sym_simple_expansion, + sym_expansion, + STATE(1273), 2, + sym_brace_expression, + sym__expression, + ACTIONS(115), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2328), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1461), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + ACTIONS(1155), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + STATE(1334), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(1153), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2330), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [32268] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1082), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(1088), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(1086), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -79169,12 +81382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(958), 31, + ACTIONS(1084), 30, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, - anon_sym_then, anon_sym_case, anon_sym_for, anon_sym_select, @@ -79201,16 +81413,106 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [30372] = 6, + [32339] = 31, + ACTIONS(55), 1, + aux_sym_brace_expression_token1, + ACTIONS(59), 1, + anon_sym_DOLLAR, + ACTIONS(61), 1, + anon_sym_DQUOTE, + ACTIONS(63), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(65), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(67), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(69), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(77), 1, + sym__backtick_open, + ACTIONS(79), 1, + sym__dollar_literal, + ACTIONS(81), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2253), 1, + sym_word, + ACTIONS(2261), 1, + anon_sym_LT_LT, + ACTIONS(2263), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2265), 1, + sym__file_descriptor, + STATE(620), 1, + aux_sym_command_repeat2, + STATE(1265), 1, + sym_string, + STATE(1442), 1, + sym__argument, + STATE(1474), 1, + sym_heredoc_redirect, + STATE(3512), 1, + sym__word_part, + ACTIONS(71), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1180), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2255), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1331), 2, + sym_brace_expression, + sym__expression, + STATE(1342), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(57), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2257), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1443), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + STATE(1338), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2259), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(1178), 9, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + [32462] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, - anon_sym_do, - ACTIONS(2214), 1, + ACTIONS(2490), 1, anon_sym_LF, - STATE(610), 1, + STATE(644), 1, aux_sym_program_repeat1, - ACTIONS(948), 25, + ACTIONS(992), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -79236,10 +81538,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(994), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_do, anon_sym_if, anon_sym_case, anon_sym_for, @@ -79267,16 +81570,103 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [30444] = 6, + [32532] = 29, + ACTIONS(255), 1, + anon_sym_LT_LT, + ACTIONS(257), 1, + anon_sym_LT_LT_DASH, + ACTIONS(277), 1, + sym__assignment_name, + ACTIONS(279), 1, + sym__file_descriptor, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2493), 1, + sym_word, + ACTIONS(2495), 1, + aux_sym_brace_expression_token1, + ACTIONS(2499), 1, + anon_sym_DOLLAR, + ACTIONS(2501), 1, + anon_sym_DQUOTE, + ACTIONS(2503), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2505), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2507), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2509), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2513), 1, + sym__backtick_open, + ACTIONS(2515), 1, + sym__dollar_literal, + ACTIONS(2517), 1, + sym__brace_expr_start, + STATE(1420), 1, + sym_string, + STATE(1502), 1, + sym_heredoc_redirect, + STATE(3522), 1, + sym__word_part, + ACTIONS(2511), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1392), 2, + sym_brace_expression, + sym__expression, + STATE(1426), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(251), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(2497), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2488), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + STATE(654), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1421), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(253), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(2486), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [32650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(944), 1, - sym__backtick_close, - ACTIONS(2216), 1, + ACTIONS(2519), 1, anon_sym_LF, - STATE(635), 1, + STATE(653), 1, aux_sym_program_repeat1, - ACTIONS(948), 25, + ACTIONS(976), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -79302,11 +81692,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(978), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, + anon_sym_fi, anon_sym_case, anon_sym_for, anon_sym_select, @@ -79333,16 +81724,14 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [30516] = 6, + [32720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(944), 1, - sym__backtick_close, - ACTIONS(2218), 1, + ACTIONS(2521), 1, anon_sym_LF, - STATE(620), 1, + STATE(647), 1, aux_sym_program_repeat1, - ACTIONS(940), 25, + ACTIONS(992), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -79368,11 +81757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(994), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, + anon_sym_then, anon_sym_case, anon_sym_for, anon_sym_select, @@ -79399,16 +81789,14 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [30588] = 6, + [32790] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(952), 1, - sym__backtick_close, - ACTIONS(2216), 1, + ACTIONS(2524), 1, anon_sym_LF, - STATE(635), 1, + STATE(647), 1, aux_sym_program_repeat1, - ACTIONS(948), 25, + ACTIONS(934), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -79434,11 +81822,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(936), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, + anon_sym_then, anon_sym_case, anon_sym_for, anon_sym_select, @@ -79465,19 +81854,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [30660] = 6, + [32860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(952), 1, - sym__backtick_close, - ACTIONS(2220), 1, + ACTIONS(2526), 1, anon_sym_LF, - STATE(622), 1, + STATE(663), 1, aux_sym_program_repeat1, - ACTIONS(940), 25, + ACTIONS(976), 26, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, sym_shebang, @@ -79500,7 +81888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(978), 30, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -79531,16 +81919,14 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [30732] = 6, + [32930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(965), 1, - sym__backtick_close, - ACTIONS(2216), 1, + ACTIONS(2524), 1, anon_sym_LF, - STATE(635), 1, + STATE(647), 1, aux_sym_program_repeat1, - ACTIONS(948), 25, + ACTIONS(982), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -79566,11 +81952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(984), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, + anon_sym_then, anon_sym_case, anon_sym_for, anon_sym_select, @@ -79597,16 +81984,14 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [30804] = 6, + [33000] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, - anon_sym_fi, - ACTIONS(2086), 1, + ACTIONS(2528), 1, anon_sym_LF, - STATE(603), 1, + STATE(651), 1, aux_sym_program_repeat1, - ACTIONS(948), 25, + ACTIONS(992), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -79632,11 +82017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(994), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, + anon_sym_fi, anon_sym_case, anon_sym_for, anon_sym_select, @@ -79663,90 +82049,86 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [30876] = 31, - ACTIONS(113), 1, + [33070] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2531), 1, + anon_sym_LF, + STATE(659), 1, + aux_sym_program_repeat1, + ACTIONS(934), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, - ACTIONS(117), 1, - anon_sym_DOLLAR, - ACTIONS(119), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(121), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(127), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(135), 1, - sym__backtick_open, - ACTIONS(137), 1, - sym__dollar_literal, - ACTIONS(139), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2222), 1, - sym_word, - ACTIONS(2230), 1, - anon_sym_LT_LT, - ACTIONS(2232), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2234), 1, - sym__file_descriptor, - STATE(652), 1, - aux_sym_command_repeat2, - STATE(1317), 1, - sym_string, - STATE(1435), 1, - sym_heredoc_redirect, - STATE(1452), 1, - sym__argument, - STATE(3574), 1, - sym__word_part, - ACTIONS(129), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2224), 2, + ACTIONS(936), 31, anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1232), 2, - sym_brace_expression, - sym__expression, - STATE(1326), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(115), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2226), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_done, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1360), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - ACTIONS(2015), 5, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [33140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2533), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2017), 5, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - STATE(1318), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2228), 7, + STATE(651), 1, + aux_sym_program_repeat1, + ACTIONS(934), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79754,90 +82136,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [30998] = 31, - ACTIONS(113), 1, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, - ACTIONS(117), 1, - anon_sym_DOLLAR, - ACTIONS(119), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(121), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(127), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(135), 1, - sym__backtick_open, - ACTIONS(137), 1, - sym__dollar_literal, - ACTIONS(139), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(936), 31, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_fi, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [33210] = 29, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2222), 1, + ACTIONS(2535), 1, sym_word, - ACTIONS(2230), 1, + ACTIONS(2544), 1, anon_sym_LT_LT, - ACTIONS(2232), 1, + ACTIONS(2547), 1, anon_sym_LT_LT_DASH, - ACTIONS(2234), 1, + ACTIONS(2550), 1, + aux_sym_brace_expression_token1, + ACTIONS(2556), 1, + anon_sym_DOLLAR, + ACTIONS(2559), 1, + anon_sym_DQUOTE, + ACTIONS(2562), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2565), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2568), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2571), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2577), 1, + sym__assignment_name, + ACTIONS(2580), 1, sym__file_descriptor, - STATE(632), 1, - aux_sym_command_repeat2, - STATE(1317), 1, + ACTIONS(2583), 1, + sym__backtick_open, + ACTIONS(2586), 1, + sym__dollar_literal, + ACTIONS(2589), 1, + sym__brace_expr_start, + STATE(1420), 1, sym_string, - STATE(1435), 1, + STATE(1502), 1, sym_heredoc_redirect, - STATE(1452), 1, - sym__argument, - STATE(3574), 1, + STATE(3522), 1, sym__word_part, - ACTIONS(129), 2, + ACTIONS(2574), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2224), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1232), 2, + STATE(1392), 2, sym_brace_expression, sym__expression, - STATE(1326), 2, + STATE(1426), 2, sym_simple_expansion, sym_expansion, - ACTIONS(115), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2226), 3, + ACTIONS(2538), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1360), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - ACTIONS(2011), 5, - anon_sym_LF, + ACTIONS(2553), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2373), 4, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2013), 5, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - STATE(1318), 5, + anon_sym_SEMI_SEMI, + STATE(654), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1421), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2228), 7, + ACTIONS(2371), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2541), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79845,16 +82268,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [31120] = 6, + [33328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 1, - anon_sym_fi, - ACTIONS(2086), 1, + ACTIONS(2533), 1, anon_sym_LF, - STATE(603), 1, + STATE(651), 1, aux_sym_program_repeat1, - ACTIONS(948), 25, + ACTIONS(982), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -79880,11 +82301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(984), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, + anon_sym_fi, anon_sym_case, anon_sym_for, anon_sym_select, @@ -79911,16 +82333,14 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [31192] = 6, + [33398] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, - anon_sym_done, - ACTIONS(2236), 1, + ACTIONS(2592), 1, anon_sym_LF, - STATE(649), 1, + STATE(668), 1, aux_sym_program_repeat1, - ACTIONS(948), 25, + ACTIONS(976), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -79946,10 +82366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(978), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_do, anon_sym_if, anon_sym_case, anon_sym_for, @@ -79977,19 +82398,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [31264] = 6, + [33468] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, - anon_sym_done, - ACTIONS(2238), 1, + ACTIONS(2594), 1, anon_sym_LF, - STATE(629), 1, + STATE(657), 1, aux_sym_program_repeat1, - ACTIONS(940), 25, + ACTIONS(992), 26, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, sym_shebang, @@ -80012,7 +82432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(994), 30, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -80043,16 +82463,14 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [31336] = 6, + [33538] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 1, - anon_sym_done, - ACTIONS(2236), 1, - anon_sym_LF, - STATE(649), 1, - aux_sym_program_repeat1, - ACTIONS(948), 25, + ACTIONS(1098), 3, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + ACTIONS(1086), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -80078,7 +82496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(1084), 30, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -80109,16 +82527,14 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [31408] = 6, + [33606] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(954), 1, - anon_sym_done, - ACTIONS(2240), 1, + ACTIONS(2597), 1, anon_sym_LF, - STATE(631), 1, + STATE(659), 1, aux_sym_program_repeat1, - ACTIONS(940), 25, + ACTIONS(992), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -80144,10 +82560,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(994), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_done, anon_sym_if, anon_sym_case, anon_sym_for, @@ -80175,16 +82592,14 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [31480] = 6, + [33676] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 1, - anon_sym_done, - ACTIONS(2236), 1, + ACTIONS(2531), 1, anon_sym_LF, - STATE(649), 1, + STATE(659), 1, aux_sym_program_repeat1, - ACTIONS(948), 25, + ACTIONS(982), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -80210,10 +82625,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(984), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_done, anon_sym_if, anon_sym_case, anon_sym_for, @@ -80241,90 +82657,152 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [31552] = 31, - ACTIONS(113), 1, + [33746] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1088), 3, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, - ACTIONS(117), 1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1084), 30, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, anon_sym_DOLLAR, - ACTIONS(119), 1, + anon_sym_DOLLAR_LPAREN, + [33814] = 29, + ACTIONS(109), 1, + anon_sym_LT_LT, + ACTIONS(111), 1, + anon_sym_LT_LT_DASH, + ACTIONS(131), 1, + sym__assignment_name, + ACTIONS(133), 1, + sym__file_descriptor, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2600), 1, + sym_word, + ACTIONS(2602), 1, + aux_sym_brace_expression_token1, + ACTIONS(2606), 1, + anon_sym_DOLLAR, + ACTIONS(2608), 1, anon_sym_DQUOTE, - ACTIONS(121), 1, + ACTIONS(2610), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(123), 1, + ACTIONS(2612), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, + ACTIONS(2614), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(127), 1, + ACTIONS(2616), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(135), 1, + ACTIONS(2620), 1, sym__backtick_open, - ACTIONS(137), 1, + ACTIONS(2622), 1, sym__dollar_literal, - ACTIONS(139), 1, + ACTIONS(2624), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2222), 1, - sym_word, - ACTIONS(2230), 1, - anon_sym_LT_LT, - ACTIONS(2232), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2234), 1, - sym__file_descriptor, - STATE(650), 1, - aux_sym_command_repeat2, - STATE(1317), 1, + STATE(1369), 1, sym_string, - STATE(1435), 1, + STATE(1521), 1, sym_heredoc_redirect, - STATE(1452), 1, - sym__argument, - STATE(3574), 1, + STATE(3535), 1, sym__word_part, - ACTIONS(129), 2, + ACTIONS(2618), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2224), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1232), 2, - sym_brace_expression, - sym__expression, - STATE(1326), 2, + STATE(1376), 2, sym_simple_expansion, sym_expansion, - ACTIONS(115), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2226), 3, + STATE(1451), 2, + sym_brace_expression, + sym__expression, + ACTIONS(105), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1360), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - ACTIONS(1993), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1995), 5, + ACTIONS(2604), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2342), 5, anon_sym_AMP, anon_sym_PIPE, anon_sym_fi, anon_sym_elif, anon_sym_else, - STATE(1318), 5, + STATE(675), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1370), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2228), 7, + ACTIONS(2340), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(107), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80332,19 +82810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [31674] = 6, + [33932] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, - anon_sym_then, - ACTIONS(2242), 1, + ACTIONS(2626), 1, anon_sym_LF, - STATE(641), 1, + STATE(657), 1, aux_sym_program_repeat1, - ACTIONS(940), 25, + ACTIONS(934), 26, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, sym_shebang, @@ -80398,81 +82875,78 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [31746] = 31, - ACTIONS(55), 1, + [34002] = 29, + ACTIONS(49), 1, + anon_sym_LT_LT, + ACTIONS(51), 1, + anon_sym_LT_LT_DASH, + ACTIONS(73), 1, + sym__assignment_name, + ACTIONS(75), 1, + sym__file_descriptor, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2628), 1, + sym_word, + ACTIONS(2630), 1, aux_sym_brace_expression_token1, - ACTIONS(59), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR, - ACTIONS(61), 1, + ACTIONS(2636), 1, anon_sym_DQUOTE, - ACTIONS(63), 1, + ACTIONS(2638), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(65), 1, + ACTIONS(2640), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(67), 1, + ACTIONS(2642), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 1, + ACTIONS(2644), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(77), 1, + ACTIONS(2648), 1, sym__backtick_open, - ACTIONS(79), 1, + ACTIONS(2650), 1, sym__dollar_literal, - ACTIONS(81), 1, + ACTIONS(2652), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2093), 1, - sym_word, - ACTIONS(2101), 1, - anon_sym_LT_LT, - ACTIONS(2103), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2105), 1, - sym__file_descriptor, - STATE(637), 1, - aux_sym_command_repeat2, - STATE(1314), 1, + STATE(1413), 1, sym_string, - STATE(1379), 1, + STATE(1565), 1, sym_heredoc_redirect, - STATE(1482), 1, - sym__argument, - STATE(3594), 1, + STATE(3510), 1, sym__word_part, - ACTIONS(71), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1995), 2, + ACTIONS(2342), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2095), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1311), 2, + ACTIONS(2646), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1412), 2, sym_brace_expression, sym__expression, - STATE(1350), 2, + STATE(1416), 2, sym_simple_expansion, sym_expansion, - ACTIONS(57), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2097), 3, + ACTIONS(45), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1386), 3, + ACTIONS(2632), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(669), 5, + sym_variable_assignment, sym_redirect, sym__word_like, sym_concatenation, - STATE(1333), 5, + aux_sym_declaration_command_repeat1, + STATE(1415), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2099), 7, + ACTIONS(47), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80480,7 +82954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(1993), 8, + ACTIONS(2340), 9, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -80489,18 +82964,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_RPAREN, anon_sym_RBRACE, - [31868] = 5, + [34120] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2244), 1, - anon_sym_LF, - STATE(635), 1, - aux_sym_program_repeat1, - ACTIONS(956), 26, + ACTIONS(1108), 3, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + ACTIONS(1086), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, sym_shebang, @@ -80523,7 +82997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(958), 30, + ACTIONS(1084), 30, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -80554,292 +83028,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [31938] = 31, - ACTIONS(259), 1, - aux_sym_brace_expression_token1, - ACTIONS(263), 1, - anon_sym_DOLLAR, - ACTIONS(265), 1, - anon_sym_DQUOTE, - ACTIONS(267), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(269), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(271), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(273), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(281), 1, - sym__backtick_open, - ACTIONS(283), 1, - sym__dollar_literal, - ACTIONS(285), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2247), 1, - sym_word, - ACTIONS(2255), 1, - anon_sym_LT_LT, - ACTIONS(2257), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2259), 1, - sym__file_descriptor, - STATE(646), 1, - aux_sym_command_repeat2, - STATE(1250), 1, - sym_string, - STATE(1402), 1, - sym_heredoc_redirect, - STATE(1484), 1, - sym__argument, - STATE(3557), 1, - sym__word_part, - ACTIONS(275), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2249), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1224), 2, - sym_brace_expression, - sym__expression, - STATE(1291), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(261), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(1485), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - ACTIONS(2017), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - STATE(1251), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2015), 6, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2253), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [32060] = 31, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2261), 1, - sym_word, - ACTIONS(2273), 1, - anon_sym_LT_LT, - ACTIONS(2276), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2279), 1, - aux_sym_brace_expression_token1, - ACTIONS(2285), 1, - anon_sym_DOLLAR, - ACTIONS(2288), 1, - anon_sym_DQUOTE, - ACTIONS(2291), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2294), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2297), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2300), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2306), 1, - sym__file_descriptor, - ACTIONS(2309), 1, - sym__backtick_open, - ACTIONS(2312), 1, - sym__dollar_literal, - ACTIONS(2315), 1, - sym__brace_expr_start, - STATE(637), 1, - aux_sym_command_repeat2, - STATE(1314), 1, - sym_string, - STATE(1379), 1, - sym_heredoc_redirect, - STATE(1482), 1, - sym__argument, - STATE(3594), 1, - sym__word_part, - ACTIONS(2024), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2264), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - ACTIONS(2303), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1311), 2, - sym_brace_expression, - sym__expression, - STATE(1350), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(2267), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2282), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1386), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - STATE(1333), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2270), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(2022), 8, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - [32182] = 31, - ACTIONS(259), 1, - aux_sym_brace_expression_token1, - ACTIONS(263), 1, - anon_sym_DOLLAR, - ACTIONS(265), 1, - anon_sym_DQUOTE, - ACTIONS(267), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(269), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(271), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(273), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(281), 1, - sym__backtick_open, - ACTIONS(283), 1, - sym__dollar_literal, - ACTIONS(285), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2247), 1, - sym_word, - ACTIONS(2255), 1, - anon_sym_LT_LT, - ACTIONS(2257), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2259), 1, - sym__file_descriptor, - STATE(651), 1, - aux_sym_command_repeat2, - STATE(1250), 1, - sym_string, - STATE(1402), 1, - sym_heredoc_redirect, - STATE(1484), 1, - sym__argument, - STATE(3557), 1, - sym__word_part, - ACTIONS(275), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2249), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1224), 2, - sym_brace_expression, - sym__expression, - STATE(1291), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(261), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(1485), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - ACTIONS(2013), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - STATE(1251), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2011), 6, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2253), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [32304] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_do, - ACTIONS(2318), 1, - anon_sym_LF, - STATE(640), 1, - aux_sym_program_repeat1, - ACTIONS(940), 25, - sym__assignment_name, - sym__file_descriptor, + [34188] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2626), 1, + anon_sym_LF, + STATE(657), 1, + aux_sym_program_repeat1, + ACTIONS(982), 26, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, sym_shebang, @@ -80862,7 +83062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(984), 30, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, @@ -80893,16 +83093,14 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [32376] = 6, + [34258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(967), 1, - anon_sym_do, - ACTIONS(2214), 1, + ACTIONS(2654), 1, anon_sym_LF, - STATE(610), 1, + STATE(652), 1, aux_sym_program_repeat1, - ACTIONS(948), 25, + ACTIONS(976), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -80928,10 +83126,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(978), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_done, anon_sym_if, anon_sym_case, anon_sym_for, @@ -80959,16 +83158,14 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [32448] = 6, + [34328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(950), 1, - anon_sym_then, - ACTIONS(2107), 1, + ACTIONS(2656), 1, anon_sym_LF, - STATE(616), 1, + STATE(644), 1, aux_sym_program_repeat1, - ACTIONS(948), 25, + ACTIONS(934), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -80994,10 +83191,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(946), 30, + ACTIONS(936), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_do, anon_sym_if, anon_sym_case, anon_sym_for, @@ -81025,156 +83223,167 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [32520] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_fi, - ACTIONS(2320), 1, - anon_sym_LF, - STATE(602), 1, - aux_sym_program_repeat1, - ACTIONS(940), 25, + [34398] = 29, + ACTIONS(49), 1, + anon_sym_LT_LT, + ACTIONS(51), 1, + anon_sym_LT_LT_DASH, + ACTIONS(73), 1, sym__assignment_name, + ACTIONS(75), 1, sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2628), 1, + sym_word, + ACTIONS(2630), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(2634), 1, + anon_sym_DOLLAR, + ACTIONS(2636), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2638), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2640), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2642), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2644), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2648), 1, + sym__backtick_open, + ACTIONS(2650), 1, + sym__dollar_literal, + ACTIONS(2652), 1, + sym__brace_expr_start, + STATE(1413), 1, + sym_string, + STATE(1565), 1, + sym_heredoc_redirect, + STATE(3510), 1, + sym__word_part, + ACTIONS(2488), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2646), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, + STATE(1412), 2, + sym_brace_expression, + sym__expression, + STATE(1416), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(45), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [32592] = 31, - ACTIONS(2007), 1, + ACTIONS(2632), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(670), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1415), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(47), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(2486), 9, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + [34516] = 29, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2322), 1, + ACTIONS(2658), 1, sym_word, - ACTIONS(2334), 1, + ACTIONS(2667), 1, anon_sym_LT_LT, - ACTIONS(2337), 1, + ACTIONS(2670), 1, anon_sym_LT_LT_DASH, - ACTIONS(2340), 1, + ACTIONS(2673), 1, aux_sym_brace_expression_token1, - ACTIONS(2346), 1, + ACTIONS(2679), 1, anon_sym_DOLLAR, - ACTIONS(2349), 1, + ACTIONS(2682), 1, anon_sym_DQUOTE, - ACTIONS(2352), 1, + ACTIONS(2685), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2355), 1, + ACTIONS(2688), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2358), 1, + ACTIONS(2691), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2361), 1, + ACTIONS(2694), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2367), 1, + ACTIONS(2700), 1, + sym__assignment_name, + ACTIONS(2703), 1, sym__file_descriptor, - ACTIONS(2370), 1, + ACTIONS(2706), 1, sym__backtick_open, - ACTIONS(2373), 1, + ACTIONS(2709), 1, sym__dollar_literal, - ACTIONS(2376), 1, + ACTIONS(2712), 1, sym__brace_expr_start, - STATE(643), 1, - aux_sym_command_repeat2, - STATE(1250), 1, + STATE(1413), 1, sym_string, - STATE(1402), 1, + STATE(1565), 1, sym_heredoc_redirect, - STATE(1484), 1, - sym__argument, - STATE(3557), 1, + STATE(3510), 1, sym__word_part, - ACTIONS(2325), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - ACTIONS(2364), 2, + ACTIONS(2373), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2697), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1224), 2, + STATE(1412), 2, sym_brace_expression, sym__expression, - STATE(1291), 2, + STATE(1416), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2328), 3, + ACTIONS(2661), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2343), 3, + ACTIONS(2676), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1485), 3, + STATE(670), 5, + sym_variable_assignment, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2024), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - STATE(1251), 5, + aux_sym_declaration_command_repeat1, + STATE(1415), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2022), 6, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2331), 7, + ACTIONS(2664), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81182,16 +83391,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [32714] = 6, + ACTIONS(2371), 9, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + [34634] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, - anon_sym_do, - ACTIONS(2379), 1, + ACTIONS(2656), 1, anon_sym_LF, - STATE(617), 1, + STATE(644), 1, aux_sym_program_repeat1, - ACTIONS(940), 25, + ACTIONS(982), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -81217,10 +83434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(984), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_do, anon_sym_if, anon_sym_case, anon_sym_for, @@ -81248,81 +83466,88 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [32786] = 31, - ACTIONS(55), 1, + [34704] = 29, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2715), 1, + sym_word, + ACTIONS(2724), 1, + anon_sym_LT_LT, + ACTIONS(2727), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2730), 1, aux_sym_brace_expression_token1, - ACTIONS(59), 1, + ACTIONS(2736), 1, anon_sym_DOLLAR, - ACTIONS(61), 1, + ACTIONS(2739), 1, anon_sym_DQUOTE, - ACTIONS(63), 1, + ACTIONS(2742), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(65), 1, + ACTIONS(2745), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(67), 1, + ACTIONS(2748), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 1, + ACTIONS(2751), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(77), 1, + ACTIONS(2757), 1, + sym__assignment_name, + ACTIONS(2760), 1, + sym__file_descriptor, + ACTIONS(2763), 1, sym__backtick_open, - ACTIONS(79), 1, + ACTIONS(2766), 1, sym__dollar_literal, - ACTIONS(81), 1, + ACTIONS(2769), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2093), 1, - sym_word, - ACTIONS(2101), 1, - anon_sym_LT_LT, - ACTIONS(2103), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2105), 1, - sym__file_descriptor, - STATE(637), 1, - aux_sym_command_repeat2, - STATE(1314), 1, + STATE(1369), 1, sym_string, - STATE(1379), 1, + STATE(1521), 1, sym_heredoc_redirect, - STATE(1482), 1, - sym__argument, - STATE(3594), 1, + STATE(3535), 1, sym__word_part, - ACTIONS(71), 2, + ACTIONS(2754), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2082), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2095), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1311), 2, - sym_brace_expression, - sym__expression, - STATE(1350), 2, + STATE(1376), 2, sym_simple_expansion, sym_expansion, - ACTIONS(57), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2097), 3, + STATE(1451), 2, + sym_brace_expression, + sym__expression, + ACTIONS(2718), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1386), 3, + ACTIONS(2733), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2373), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + STATE(672), 5, + sym_variable_assignment, sym_redirect, sym__word_like, sym_concatenation, - STATE(1333), 5, + aux_sym_declaration_command_repeat1, + STATE(1370), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2099), 7, + ACTIONS(2371), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2721), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81330,99 +83555,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(2080), 8, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - [32908] = 31, - ACTIONS(259), 1, + [34822] = 29, + ACTIONS(255), 1, + anon_sym_LT_LT, + ACTIONS(257), 1, + anon_sym_LT_LT_DASH, + ACTIONS(277), 1, + sym__assignment_name, + ACTIONS(279), 1, + sym__file_descriptor, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2493), 1, + sym_word, + ACTIONS(2495), 1, aux_sym_brace_expression_token1, - ACTIONS(263), 1, + ACTIONS(2499), 1, anon_sym_DOLLAR, - ACTIONS(265), 1, + ACTIONS(2501), 1, anon_sym_DQUOTE, - ACTIONS(267), 1, + ACTIONS(2503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(269), 1, + ACTIONS(2505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(271), 1, + ACTIONS(2507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(273), 1, + ACTIONS(2509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(281), 1, + ACTIONS(2513), 1, sym__backtick_open, - ACTIONS(283), 1, + ACTIONS(2515), 1, sym__dollar_literal, - ACTIONS(285), 1, + ACTIONS(2517), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2247), 1, - sym_word, - ACTIONS(2255), 1, - anon_sym_LT_LT, - ACTIONS(2257), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2259), 1, - sym__file_descriptor, - STATE(643), 1, - aux_sym_command_repeat2, - STATE(1250), 1, + STATE(1420), 1, sym_string, - STATE(1402), 1, + STATE(1502), 1, sym_heredoc_redirect, - STATE(1484), 1, - sym__argument, - STATE(3557), 1, + STATE(3522), 1, sym__word_part, - ACTIONS(275), 2, + ACTIONS(2511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2249), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1224), 2, + STATE(1392), 2, sym_brace_expression, sym__expression, - STATE(1291), 2, + STATE(1426), 2, sym_simple_expansion, sym_expansion, - ACTIONS(261), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2251), 3, + ACTIONS(251), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1485), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - ACTIONS(2082), 4, + ACTIONS(2497), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2342), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - STATE(1251), 5, + STATE(645), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1421), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2080), 6, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2253), 7, + ACTIONS(253), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81430,82 +83636,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [33030] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(954), 1, - anon_sym_do, - ACTIONS(2214), 1, + ACTIONS(2340), 7, + sym__heredoc_newline, anon_sym_LF, - STATE(610), 1, - aux_sym_program_repeat1, - ACTIONS(948), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(946), 30, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [33102] = 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [34940] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(942), 1, - anon_sym_fi, - ACTIONS(2381), 1, + ACTIONS(2772), 1, anon_sym_LF, - STATE(623), 1, + STATE(648), 1, aux_sym_program_repeat1, - ACTIONS(940), 25, + ACTIONS(976), 25, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -81531,11 +83677,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(936), 30, + ACTIONS(978), 31, anon_sym_BANG, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_if, + anon_sym_then, anon_sym_case, anon_sym_for, anon_sym_select, @@ -81562,155 +83709,88 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - [33174] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2383), 1, - anon_sym_LF, - STATE(649), 1, - aux_sym_program_repeat1, - ACTIONS(956), 25, + [35010] = 29, + ACTIONS(109), 1, + anon_sym_LT_LT, + ACTIONS(111), 1, + anon_sym_LT_LT_DASH, + ACTIONS(131), 1, sym__assignment_name, + ACTIONS(133), 1, sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(958), 31, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_done, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [33244] = 31, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2386), 1, + ACTIONS(2600), 1, sym_word, - ACTIONS(2398), 1, - anon_sym_LT_LT, - ACTIONS(2401), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2404), 1, + ACTIONS(2602), 1, aux_sym_brace_expression_token1, - ACTIONS(2410), 1, + ACTIONS(2606), 1, anon_sym_DOLLAR, - ACTIONS(2413), 1, + ACTIONS(2608), 1, anon_sym_DQUOTE, - ACTIONS(2416), 1, + ACTIONS(2610), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2419), 1, + ACTIONS(2612), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2422), 1, + ACTIONS(2614), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2425), 1, + ACTIONS(2616), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2431), 1, - sym__file_descriptor, - ACTIONS(2434), 1, + ACTIONS(2620), 1, sym__backtick_open, - ACTIONS(2437), 1, + ACTIONS(2622), 1, sym__dollar_literal, - ACTIONS(2440), 1, + ACTIONS(2624), 1, sym__brace_expr_start, - STATE(650), 1, - aux_sym_command_repeat2, - STATE(1317), 1, + STATE(1369), 1, sym_string, - STATE(1435), 1, + STATE(1521), 1, sym_heredoc_redirect, - STATE(1452), 1, - sym__argument, - STATE(3574), 1, + STATE(3535), 1, sym__word_part, - ACTIONS(2389), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - ACTIONS(2428), 2, + ACTIONS(2618), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1232), 2, - sym_brace_expression, - sym__expression, - STATE(1326), 2, + STATE(1376), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2392), 3, + STATE(1451), 2, + sym_brace_expression, + sym__expression, + ACTIONS(105), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2407), 3, + ACTIONS(2604), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1360), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - ACTIONS(2022), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2024), 5, + ACTIONS(2488), 5, anon_sym_AMP, anon_sym_PIPE, anon_sym_fi, anon_sym_elif, anon_sym_else, - STATE(1318), 5, + STATE(672), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1370), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2395), 7, + ACTIONS(2486), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(107), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81718,90 +83798,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [33366] = 31, - ACTIONS(259), 1, + [35128] = 30, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2774), 1, + sym_word, + ACTIONS(2784), 1, + anon_sym_LT_LT, + ACTIONS(2786), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2788), 1, aux_sym_brace_expression_token1, - ACTIONS(263), 1, + ACTIONS(2790), 1, + sym_number, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(265), 1, + ACTIONS(2794), 1, anon_sym_DQUOTE, - ACTIONS(267), 1, + ACTIONS(2798), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(269), 1, + ACTIONS(2800), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(271), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(273), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(281), 1, + ACTIONS(2808), 1, + sym__file_descriptor, + ACTIONS(2810), 1, sym__backtick_open, - ACTIONS(283), 1, + ACTIONS(2812), 1, sym__dollar_literal, - ACTIONS(285), 1, + ACTIONS(2814), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2247), 1, - sym_word, - ACTIONS(2255), 1, - anon_sym_LT_LT, - ACTIONS(2257), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2259), 1, - sym__file_descriptor, - STATE(643), 1, - aux_sym_command_repeat2, - STATE(1250), 1, + STATE(2397), 1, sym_string, - STATE(1402), 1, + STATE(2475), 1, sym_heredoc_redirect, - STATE(1484), 1, - sym__argument, - STATE(3557), 1, + STATE(3525), 1, sym__word_part, - ACTIONS(275), 2, + ACTIONS(2796), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2249), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1224), 2, + STATE(2193), 2, + sym__word_like, + sym_concatenation, + STATE(2194), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2407), 2, sym_brace_expression, sym__expression, - STATE(1291), 2, + STATE(2413), 2, sym_simple_expansion, sym_expansion, - ACTIONS(261), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2251), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1485), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - ACTIONS(1995), 4, + ACTIONS(2778), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_esac, anon_sym_SEMI_SEMI, - STATE(1251), 5, + STATE(2398), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1993), 6, + ACTIONS(2776), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2253), 7, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81809,90 +83887,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [33488] = 31, - ACTIONS(113), 1, + [35247] = 31, + ACTIONS(599), 1, aux_sym_brace_expression_token1, - ACTIONS(117), 1, + ACTIONS(603), 1, anon_sym_DOLLAR, - ACTIONS(119), 1, + ACTIONS(605), 1, anon_sym_DQUOTE, - ACTIONS(121), 1, + ACTIONS(607), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(123), 1, + ACTIONS(609), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, + ACTIONS(611), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(127), 1, + ACTIONS(613), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(135), 1, + ACTIONS(621), 1, sym__backtick_open, - ACTIONS(137), 1, + ACTIONS(623), 1, sym__dollar_literal, - ACTIONS(139), 1, + ACTIONS(625), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2222), 1, + ACTIONS(2816), 1, sym_word, - ACTIONS(2230), 1, + ACTIONS(2824), 1, anon_sym_LT_LT, - ACTIONS(2232), 1, + ACTIONS(2826), 1, anon_sym_LT_LT_DASH, - ACTIONS(2234), 1, + ACTIONS(2828), 1, sym__file_descriptor, - STATE(650), 1, + STATE(684), 1, aux_sym_command_repeat2, - STATE(1317), 1, + STATE(1586), 1, sym_string, - STATE(1435), 1, + STATE(1713), 1, sym_heredoc_redirect, - STATE(1452), 1, + STATE(1793), 1, sym__argument, - STATE(3574), 1, + STATE(3543), 1, sym__word_part, - ACTIONS(129), 2, + ACTIONS(615), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2224), 2, + ACTIONS(2818), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1232), 2, + STATE(1617), 2, sym_brace_expression, sym__expression, - STATE(1326), 2, + STATE(1618), 2, sym_simple_expansion, sym_expansion, - ACTIONS(115), 3, + ACTIONS(601), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2226), 3, + ACTIONS(1155), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_done, + ACTIONS(2820), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1360), 3, + STATE(1794), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2080), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2082), 5, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - STATE(1318), 5, + STATE(1588), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2228), 7, + ACTIONS(1153), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2822), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81900,88 +83977,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [33610] = 29, - ACTIONS(195), 1, - anon_sym_LT_LT, - ACTIONS(197), 1, - anon_sym_LT_LT_DASH, - ACTIONS(219), 1, - sym__assignment_name, - ACTIONS(221), 1, - sym__file_descriptor, - ACTIONS(2007), 1, + [35368] = 31, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2118), 1, + ACTIONS(2830), 1, sym_word, - ACTIONS(2124), 1, + ACTIONS(2842), 1, + anon_sym_LT_LT, + ACTIONS(2845), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2848), 1, aux_sym_brace_expression_token1, - ACTIONS(2128), 1, + ACTIONS(2854), 1, anon_sym_DOLLAR, - ACTIONS(2130), 1, + ACTIONS(2857), 1, anon_sym_DQUOTE, - ACTIONS(2132), 1, + ACTIONS(2860), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2134), 1, + ACTIONS(2863), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2136), 1, + ACTIONS(2866), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2138), 1, + ACTIONS(2869), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2142), 1, + ACTIONS(2875), 1, + sym__file_descriptor, + ACTIONS(2878), 1, sym__backtick_open, - ACTIONS(2144), 1, + ACTIONS(2881), 1, sym__dollar_literal, - ACTIONS(2146), 1, + ACTIONS(2884), 1, sym__brace_expr_start, - STATE(1239), 1, + STATE(678), 1, + aux_sym_command_repeat2, + STATE(1622), 1, sym_string, - STATE(1419), 1, + STATE(1769), 1, sym_heredoc_redirect, - STATE(3608), 1, + STATE(1774), 1, + sym__argument, + STATE(3529), 1, sym__word_part, - ACTIONS(2140), 2, + ACTIONS(2833), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + ACTIONS(2872), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1252), 2, - sym_simple_expansion, - sym_expansion, - STATE(1355), 2, + STATE(1596), 2, sym_brace_expression, sym__expression, - ACTIONS(191), 3, + STATE(1626), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(1187), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_do, + ACTIONS(2836), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2126), 3, + ACTIONS(2851), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2445), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, - STATE(612), 5, - sym_variable_assignment, + STATE(1775), 3, sym_redirect, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1240), 5, + STATE(1625), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2443), 6, + ACTIONS(1185), 6, + sym__heredoc_newline, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(193), 7, + ACTIONS(2839), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81989,109 +84067,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [33728] = 29, - ACTIONS(49), 1, - anon_sym_LT_LT, - ACTIONS(51), 1, - anon_sym_LT_LT_DASH, - ACTIONS(73), 1, - sym__assignment_name, - ACTIONS(75), 1, - sym__file_descriptor, - ACTIONS(2007), 1, + [35489] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2887), 1, sym_word, - ACTIONS(2449), 1, + ACTIONS(2894), 1, + anon_sym_LPAREN, + ACTIONS(2896), 1, aux_sym_brace_expression_token1, - ACTIONS(2453), 1, + ACTIONS(2902), 1, anon_sym_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(2905), 1, anon_sym_DQUOTE, - ACTIONS(2457), 1, + ACTIONS(2908), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2459), 1, + ACTIONS(2911), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2461), 1, + ACTIONS(2914), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2463), 1, + ACTIONS(2917), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2467), 1, + ACTIONS(2923), 1, sym__backtick_open, - ACTIONS(2469), 1, + ACTIONS(2926), 1, sym__dollar_literal, - ACTIONS(2471), 1, + ACTIONS(2929), 1, sym__brace_expr_start, - STATE(1365), 1, + STATE(1293), 1, sym_string, - STATE(1552), 1, - sym_heredoc_redirect, - STATE(3570), 1, + STATE(3560), 1, sym__word_part, - ACTIONS(2122), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2465), 2, + ACTIONS(2920), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1395), 2, + STATE(1261), 2, sym_brace_expression, sym__expression, - STATE(1409), 2, + STATE(1303), 2, sym_simple_expansion, sym_expansion, - ACTIONS(45), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2451), 3, + ACTIONS(2899), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(661), 5, - sym_variable_assignment, - sym_redirect, + STATE(1384), 3, + sym_array, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1389), 5, + STATE(1294), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(47), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(2120), 8, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(2892), 9, anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(2890), 17, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - [33845] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 1, - anon_sym_LF, - ACTIONS(1019), 1, - anon_sym_then, - ACTIONS(1017), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82100,150 +84149,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1015), 30, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [33914] = 29, - ACTIONS(109), 1, - anon_sym_LT_LT, - ACTIONS(111), 1, - anon_sym_LT_LT_DASH, - ACTIONS(131), 1, - sym__assignment_name, - ACTIONS(133), 1, - sym__file_descriptor, - ACTIONS(2007), 1, + [35594] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2473), 1, + ACTIONS(2894), 1, + anon_sym_LPAREN, + ACTIONS(2932), 1, sym_word, - ACTIONS(2475), 1, + ACTIONS(2939), 1, aux_sym_brace_expression_token1, - ACTIONS(2479), 1, + ACTIONS(2945), 1, anon_sym_DOLLAR, - ACTIONS(2481), 1, + ACTIONS(2948), 1, anon_sym_DQUOTE, - ACTIONS(2483), 1, + ACTIONS(2951), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2485), 1, + ACTIONS(2954), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2487), 1, + ACTIONS(2957), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2489), 1, + ACTIONS(2960), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2493), 1, + ACTIONS(2966), 1, sym__backtick_open, - ACTIONS(2495), 1, + ACTIONS(2969), 1, sym__dollar_literal, - ACTIONS(2497), 1, + ACTIONS(2972), 1, sym__brace_expr_start, - STATE(1470), 1, + STATE(1293), 1, sym_string, - STATE(1611), 1, - sym_heredoc_redirect, - STATE(3586), 1, + STATE(3560), 1, sym__word_part, - ACTIONS(2491), 2, + ACTIONS(2963), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1401), 2, + STATE(1261), 2, sym_brace_expression, sym__expression, - STATE(1486), 2, + STATE(1303), 2, sym_simple_expansion, sym_expansion, - ACTIONS(105), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2477), 3, + ACTIONS(2942), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2120), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2122), 5, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - STATE(658), 5, - sym_variable_assignment, - sym_redirect, + STATE(1391), 3, + sym_array, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1471), 5, + STATE(1294), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(107), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [34031] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 1, - anon_sym_LF, - ACTIONS(1019), 1, - anon_sym_fi, - ACTIONS(1017), 25, + ACTIONS(2937), 9, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(2935), 17, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82252,128 +84231,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1015), 30, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [34100] = 29, - ACTIONS(2007), 1, + [35699] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2499), 1, + ACTIONS(2774), 1, sym_word, - ACTIONS(2508), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(2511), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(2514), 1, + ACTIONS(2788), 1, aux_sym_brace_expression_token1, - ACTIONS(2520), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(2523), 1, + ACTIONS(2794), 1, anon_sym_DQUOTE, - ACTIONS(2526), 1, + ACTIONS(2798), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2529), 1, + ACTIONS(2800), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2532), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2535), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2541), 1, - sym__assignment_name, - ACTIONS(2544), 1, + ACTIONS(2808), 1, sym__file_descriptor, - ACTIONS(2547), 1, + ACTIONS(2810), 1, sym__backtick_open, - ACTIONS(2550), 1, + ACTIONS(2812), 1, sym__dollar_literal, - ACTIONS(2553), 1, + ACTIONS(2814), 1, sym__brace_expr_start, - STATE(1470), 1, + ACTIONS(2979), 1, + sym_number, + STATE(2397), 1, sym_string, - STATE(1611), 1, + STATE(2475), 1, sym_heredoc_redirect, - STATE(3586), 1, + STATE(3525), 1, sym__word_part, - ACTIONS(2538), 2, + ACTIONS(2796), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1401), 2, + STATE(2195), 2, + sym__word_like, + sym_concatenation, + STATE(2196), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2407), 2, sym_brace_expression, sym__expression, - STATE(1486), 2, + STATE(2413), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2502), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2517), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2153), 5, - anon_sym_LF, + ACTIONS(2977), 5, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2155), 5, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - STATE(658), 5, - sym_variable_assignment, - sym_redirect, - sym__word_like, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1471), 5, + anon_sym_esac, + anon_sym_SEMI_SEMI, + STATE(2398), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2505), 7, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82381,109 +84312,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [34217] = 29, - ACTIONS(49), 1, - anon_sym_LT_LT, - ACTIONS(51), 1, - anon_sym_LT_LT_DASH, - ACTIONS(73), 1, - sym__assignment_name, - ACTIONS(75), 1, - sym__file_descriptor, - ACTIONS(2007), 1, + ACTIONS(2975), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [35818] = 31, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2447), 1, + ACTIONS(2981), 1, sym_word, - ACTIONS(2449), 1, + ACTIONS(2993), 1, + anon_sym_LT_LT, + ACTIONS(2996), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2999), 1, aux_sym_brace_expression_token1, - ACTIONS(2453), 1, + ACTIONS(3005), 1, anon_sym_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(3008), 1, anon_sym_DQUOTE, - ACTIONS(2457), 1, + ACTIONS(3011), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2459), 1, + ACTIONS(3014), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2461), 1, + ACTIONS(3017), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2463), 1, + ACTIONS(3020), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2467), 1, + ACTIONS(3026), 1, + sym__file_descriptor, + ACTIONS(3029), 1, sym__backtick_open, - ACTIONS(2469), 1, + ACTIONS(3032), 1, sym__dollar_literal, - ACTIONS(2471), 1, + ACTIONS(3035), 1, sym__brace_expr_start, - STATE(1365), 1, + STATE(682), 1, + aux_sym_command_repeat2, + STATE(1586), 1, sym_string, - STATE(1552), 1, + STATE(1713), 1, sym_heredoc_redirect, - STATE(3570), 1, + STATE(1793), 1, + sym__argument, + STATE(3543), 1, sym__word_part, - ACTIONS(2445), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2465), 2, + ACTIONS(2984), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + ACTIONS(3023), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1395), 2, + STATE(1617), 2, sym_brace_expression, sym__expression, - STATE(1409), 2, + STATE(1618), 2, sym_simple_expansion, sym_expansion, - ACTIONS(45), 3, + ACTIONS(1187), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_done, + ACTIONS(2987), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2451), 3, + ACTIONS(3002), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(654), 5, - sym_variable_assignment, + STATE(1794), 3, sym_redirect, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1389), 5, + STATE(1588), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(47), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(2443), 8, - ts_builtin_sym_end, + ACTIONS(1185), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - [34334] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 1, - anon_sym_LF, - ACTIONS(1019), 1, - anon_sym_do, - ACTIONS(1017), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, + ACTIONS(2990), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82491,217 +84410,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1015), 30, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [34403] = 29, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2556), 1, - sym_word, - ACTIONS(2565), 1, - anon_sym_LT_LT, - ACTIONS(2568), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2571), 1, + [35939] = 31, + ACTIONS(599), 1, aux_sym_brace_expression_token1, - ACTIONS(2577), 1, + ACTIONS(603), 1, anon_sym_DOLLAR, - ACTIONS(2580), 1, + ACTIONS(605), 1, anon_sym_DQUOTE, - ACTIONS(2583), 1, + ACTIONS(607), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2586), 1, + ACTIONS(609), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2589), 1, + ACTIONS(611), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2592), 1, + ACTIONS(613), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2598), 1, - sym__assignment_name, - ACTIONS(2601), 1, - sym__file_descriptor, - ACTIONS(2604), 1, + ACTIONS(621), 1, sym__backtick_open, - ACTIONS(2607), 1, + ACTIONS(623), 1, sym__dollar_literal, - ACTIONS(2610), 1, + ACTIONS(625), 1, sym__brace_expr_start, - STATE(1365), 1, - sym_string, - STATE(1552), 1, - sym_heredoc_redirect, - STATE(3570), 1, - sym__word_part, - ACTIONS(2155), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2595), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1395), 2, - sym_brace_expression, - sym__expression, - STATE(1409), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(2559), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2574), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(661), 5, - sym_variable_assignment, - sym_redirect, - sym__word_like, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1389), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2562), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(2153), 8, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - [34520] = 29, - ACTIONS(255), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2816), 1, + sym_word, + ACTIONS(2824), 1, anon_sym_LT_LT, - ACTIONS(257), 1, + ACTIONS(2826), 1, anon_sym_LT_LT_DASH, - ACTIONS(277), 1, - sym__assignment_name, - ACTIONS(279), 1, + ACTIONS(2828), 1, sym__file_descriptor, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2613), 1, - sym_word, - ACTIONS(2615), 1, - aux_sym_brace_expression_token1, - ACTIONS(2619), 1, - anon_sym_DOLLAR, - ACTIONS(2621), 1, - anon_sym_DQUOTE, - ACTIONS(2623), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2625), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2627), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2629), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2633), 1, - sym__backtick_open, - ACTIONS(2635), 1, - sym__dollar_literal, - ACTIONS(2637), 1, - sym__brace_expr_start, - STATE(1429), 1, + STATE(682), 1, + aux_sym_command_repeat2, + STATE(1586), 1, sym_string, - STATE(1655), 1, + STATE(1713), 1, sym_heredoc_redirect, - STATE(3590), 1, + STATE(1793), 1, + sym__argument, + STATE(3543), 1, sym__word_part, - ACTIONS(2631), 2, + ACTIONS(615), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1428), 2, + ACTIONS(2818), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1617), 2, sym_brace_expression, sym__expression, - STATE(1458), 2, + STATE(1618), 2, sym_simple_expansion, sym_expansion, - ACTIONS(251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2617), 3, + ACTIONS(601), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2445), 4, - anon_sym_SEMI, + ACTIONS(1245), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - STATE(664), 5, - sym_variable_assignment, + anon_sym_done, + ACTIONS(2820), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1794), 3, sym_redirect, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1432), 5, + STATE(1588), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2443), 6, + ACTIONS(1243), 6, + sym__heredoc_newline, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(253), 7, + ACTIONS(2822), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82709,87 +84500,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [34637] = 29, - ACTIONS(109), 1, - anon_sym_LT_LT, - ACTIONS(111), 1, - anon_sym_LT_LT_DASH, - ACTIONS(131), 1, - sym__assignment_name, - ACTIONS(133), 1, - sym__file_descriptor, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2473), 1, - sym_word, - ACTIONS(2475), 1, + [36060] = 31, + ACTIONS(599), 1, aux_sym_brace_expression_token1, - ACTIONS(2479), 1, + ACTIONS(603), 1, anon_sym_DOLLAR, - ACTIONS(2481), 1, + ACTIONS(605), 1, anon_sym_DQUOTE, - ACTIONS(2483), 1, + ACTIONS(607), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2485), 1, + ACTIONS(609), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2487), 1, + ACTIONS(611), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2489), 1, + ACTIONS(613), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2493), 1, + ACTIONS(621), 1, sym__backtick_open, - ACTIONS(2495), 1, + ACTIONS(623), 1, sym__dollar_literal, - ACTIONS(2497), 1, + ACTIONS(625), 1, sym__brace_expr_start, - STATE(1470), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2816), 1, + sym_word, + ACTIONS(2824), 1, + anon_sym_LT_LT, + ACTIONS(2826), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2828), 1, + sym__file_descriptor, + STATE(682), 1, + aux_sym_command_repeat2, + STATE(1586), 1, sym_string, - STATE(1611), 1, + STATE(1713), 1, sym_heredoc_redirect, - STATE(3586), 1, + STATE(1793), 1, + sym__argument, + STATE(3543), 1, sym__word_part, - ACTIONS(2491), 2, + ACTIONS(615), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1401), 2, + ACTIONS(2818), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1617), 2, sym_brace_expression, sym__expression, - STATE(1486), 2, + STATE(1618), 2, sym_simple_expansion, sym_expansion, - ACTIONS(105), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2477), 3, + ACTIONS(601), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2443), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2445), 5, + ACTIONS(1173), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - STATE(656), 5, - sym_variable_assignment, + anon_sym_done, + ACTIONS(2820), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1794), 3, sym_redirect, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1471), 5, + STATE(1588), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(107), 7, + ACTIONS(1171), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2822), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82797,109 +84590,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [34754] = 29, - ACTIONS(255), 1, - anon_sym_LT_LT, - ACTIONS(257), 1, - anon_sym_LT_LT_DASH, - ACTIONS(277), 1, - sym__assignment_name, - ACTIONS(279), 1, - sym__file_descriptor, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2613), 1, - sym_word, - ACTIONS(2615), 1, + [36181] = 31, + ACTIONS(409), 1, aux_sym_brace_expression_token1, - ACTIONS(2619), 1, + ACTIONS(413), 1, anon_sym_DOLLAR, - ACTIONS(2621), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(2623), 1, + ACTIONS(417), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2625), 1, + ACTIONS(419), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2627), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2629), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2633), 1, + ACTIONS(431), 1, sym__backtick_open, - ACTIONS(2635), 1, + ACTIONS(433), 1, sym__dollar_literal, - ACTIONS(2637), 1, + ACTIONS(435), 1, sym__brace_expr_start, - STATE(1429), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3038), 1, + sym_word, + ACTIONS(3046), 1, + anon_sym_LT_LT, + ACTIONS(3048), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3050), 1, + sym__file_descriptor, + STATE(688), 1, + aux_sym_command_repeat2, + STATE(1599), 1, sym_string, - STATE(1655), 1, + STATE(1747), 1, + sym__argument, + STATE(1780), 1, sym_heredoc_redirect, - STATE(3590), 1, + STATE(3555), 1, sym__word_part, - ACTIONS(2631), 2, + ACTIONS(425), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1428), 2, + ACTIONS(1155), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3040), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1485), 2, sym_brace_expression, sym__expression, - STATE(1458), 2, + STATE(1487), 2, sym_simple_expansion, sym_expansion, - ACTIONS(251), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2617), 3, + ACTIONS(411), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2122), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - STATE(666), 5, - sym_variable_assignment, + ACTIONS(3042), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1800), 3, sym_redirect, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1432), 5, + STATE(1603), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2120), 6, + ACTIONS(1153), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(253), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [34871] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 1, - anon_sym_LF, - ACTIONS(1019), 1, - anon_sym_done, - ACTIONS(1017), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, + ACTIONS(3044), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82907,215 +84680,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1015), 30, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [34940] = 29, - ACTIONS(2007), 1, + [36302] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2639), 1, + ACTIONS(2774), 1, sym_word, - ACTIONS(2648), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(2651), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(2654), 1, + ACTIONS(2788), 1, aux_sym_brace_expression_token1, - ACTIONS(2660), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(2663), 1, + ACTIONS(2794), 1, anon_sym_DQUOTE, - ACTIONS(2666), 1, + ACTIONS(2798), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2669), 1, + ACTIONS(2800), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2672), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2675), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2681), 1, - sym__assignment_name, - ACTIONS(2684), 1, + ACTIONS(2808), 1, sym__file_descriptor, - ACTIONS(2687), 1, + ACTIONS(2810), 1, sym__backtick_open, - ACTIONS(2690), 1, + ACTIONS(2812), 1, sym__dollar_literal, - ACTIONS(2693), 1, + ACTIONS(2814), 1, sym__brace_expr_start, - STATE(1429), 1, + ACTIONS(3056), 1, + sym_number, + STATE(2397), 1, sym_string, - STATE(1655), 1, + STATE(2475), 1, sym_heredoc_redirect, - STATE(3590), 1, + STATE(3525), 1, sym__word_part, - ACTIONS(2678), 2, + ACTIONS(2796), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(2806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1428), 2, + STATE(2197), 2, + sym__word_like, + sym_concatenation, + STATE(2198), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2407), 2, sym_brace_expression, sym__expression, - STATE(1458), 2, + STATE(2413), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2642), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2657), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2155), 4, + ACTIONS(3054), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_esac, anon_sym_SEMI_SEMI, - STATE(666), 5, - sym_variable_assignment, - sym_redirect, - sym__word_like, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1432), 5, + STATE(2398), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2153), 6, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2645), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [35057] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2696), 1, - anon_sym_LF, - STATE(668), 1, - aux_sym_program_repeat1, - ACTIONS(940), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(936), 30, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [35126] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(745), 1, - anon_sym_LF, - STATE(309), 1, - aux_sym_program_repeat1, - ACTIONS(948), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83123,193 +84761,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(946), 30, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [35195] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1012), 2, - sym__backtick_close, + ACTIONS(3052), 7, + sym__heredoc_newline, anon_sym_LF, - ACTIONS(1017), 25, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - sym_shebang, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1015), 30, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_if, - anon_sym_case, - anon_sym_for, - anon_sym_select, - anon_sym_while, - anon_sym_until, - anon_sym_return, - anon_sym_break, - anon_sym_continue, - anon_sym_function, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_eval, - anon_sym_alias, - anon_sym_let, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - anon_sym_LBRACK_LBRACK, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - [35262] = 31, - ACTIONS(565), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [36421] = 31, + ACTIONS(599), 1, aux_sym_brace_expression_token1, - ACTIONS(569), 1, + ACTIONS(603), 1, anon_sym_DOLLAR, - ACTIONS(571), 1, + ACTIONS(605), 1, anon_sym_DQUOTE, - ACTIONS(573), 1, + ACTIONS(607), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(575), 1, + ACTIONS(609), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(577), 1, + ACTIONS(611), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(579), 1, + ACTIONS(613), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(587), 1, + ACTIONS(621), 1, sym__backtick_open, - ACTIONS(589), 1, + ACTIONS(623), 1, sym__dollar_literal, - ACTIONS(591), 1, + ACTIONS(625), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(2816), 1, sym_word, - ACTIONS(2706), 1, + ACTIONS(2824), 1, anon_sym_LT_LT, - ACTIONS(2708), 1, + ACTIONS(2826), 1, anon_sym_LT_LT_DASH, - ACTIONS(2710), 1, + ACTIONS(2828), 1, sym__file_descriptor, - STATE(689), 1, + STATE(683), 1, aux_sym_command_repeat2, - STATE(1535), 1, + STATE(1586), 1, sym_string, - STATE(1731), 1, + STATE(1713), 1, sym_heredoc_redirect, - STATE(1856), 1, + STATE(1793), 1, sym__argument, - STATE(3575), 1, + STATE(3543), 1, sym__word_part, - ACTIONS(581), 2, + ACTIONS(615), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2700), 2, + ACTIONS(2818), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1512), 2, + STATE(1617), 2, sym_brace_expression, sym__expression, - STATE(1538), 2, + STATE(1618), 2, sym_simple_expansion, sym_expansion, - ACTIONS(567), 3, + ACTIONS(601), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(1995), 3, + ACTIONS(1180), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, - ACTIONS(2702), 3, + anon_sym_done, + ACTIONS(2820), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1857), 3, + STATE(1794), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(1993), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1537), 5, + STATE(1588), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2704), 7, + ACTIONS(1178), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(2822), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83317,88 +84859,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [35382] = 31, - ACTIONS(499), 1, + [36542] = 31, + ACTIONS(409), 1, aux_sym_brace_expression_token1, - ACTIONS(503), 1, + ACTIONS(413), 1, anon_sym_DOLLAR, - ACTIONS(505), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(507), 1, + ACTIONS(417), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(509), 1, + ACTIONS(419), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(511), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(513), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(521), 1, + ACTIONS(431), 1, sym__backtick_open, - ACTIONS(523), 1, + ACTIONS(433), 1, sym__dollar_literal, - ACTIONS(525), 1, + ACTIONS(435), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2712), 1, + ACTIONS(3038), 1, sym_word, - ACTIONS(2720), 1, + ACTIONS(3046), 1, anon_sym_LT_LT, - ACTIONS(2722), 1, + ACTIONS(3048), 1, anon_sym_LT_LT_DASH, - ACTIONS(2724), 1, + ACTIONS(3050), 1, sym__file_descriptor, - STATE(679), 1, + STATE(690), 1, aux_sym_command_repeat2, - STATE(1585), 1, + STATE(1599), 1, sym_string, - STATE(1714), 1, - sym_heredoc_redirect, - STATE(1720), 1, + STATE(1747), 1, sym__argument, - STATE(3569), 1, + STATE(1780), 1, + sym_heredoc_redirect, + STATE(3555), 1, sym__word_part, - ACTIONS(515), 2, + ACTIONS(425), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2714), 2, + ACTIONS(1173), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3040), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1580), 2, + STATE(1485), 2, sym_brace_expression, sym__expression, - STATE(1589), 2, + STATE(1487), 2, sym_simple_expansion, sym_expansion, - ACTIONS(501), 3, + ACTIONS(411), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2017), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, - ACTIONS(2716), 3, + ACTIONS(3042), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1721), 3, + STATE(1800), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2015), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1588), 5, + STATE(1603), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2718), 7, + ACTIONS(1171), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3044), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83406,88 +84949,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [35502] = 31, - ACTIONS(565), 1, + [36663] = 31, + ACTIONS(409), 1, aux_sym_brace_expression_token1, - ACTIONS(569), 1, + ACTIONS(413), 1, anon_sym_DOLLAR, - ACTIONS(571), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(573), 1, + ACTIONS(417), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(575), 1, + ACTIONS(419), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(577), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(579), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(587), 1, + ACTIONS(431), 1, sym__backtick_open, - ACTIONS(589), 1, + ACTIONS(433), 1, sym__dollar_literal, - ACTIONS(591), 1, + ACTIONS(435), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(3038), 1, sym_word, - ACTIONS(2706), 1, + ACTIONS(3046), 1, anon_sym_LT_LT, - ACTIONS(2708), 1, + ACTIONS(3048), 1, anon_sym_LT_LT_DASH, - ACTIONS(2710), 1, + ACTIONS(3050), 1, sym__file_descriptor, - STATE(689), 1, + STATE(691), 1, aux_sym_command_repeat2, - STATE(1535), 1, + STATE(1599), 1, sym_string, - STATE(1731), 1, - sym_heredoc_redirect, - STATE(1856), 1, + STATE(1747), 1, sym__argument, - STATE(3575), 1, + STATE(1780), 1, + sym_heredoc_redirect, + STATE(3555), 1, sym__word_part, - ACTIONS(581), 2, + ACTIONS(425), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2700), 2, + ACTIONS(1180), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3040), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1512), 2, + STATE(1485), 2, sym_brace_expression, sym__expression, - STATE(1538), 2, + STATE(1487), 2, sym_simple_expansion, sym_expansion, - ACTIONS(567), 3, + ACTIONS(411), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2082), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - ACTIONS(2702), 3, + ACTIONS(3042), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1857), 3, + STATE(1800), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2080), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1537), 5, + STATE(1603), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2704), 7, + ACTIONS(1178), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3044), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83495,88 +85039,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [35622] = 31, - ACTIONS(2007), 1, + [36784] = 31, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2726), 1, + ACTIONS(3058), 1, sym_word, - ACTIONS(2738), 1, + ACTIONS(3070), 1, anon_sym_LT_LT, - ACTIONS(2741), 1, + ACTIONS(3073), 1, anon_sym_LT_LT_DASH, - ACTIONS(2744), 1, + ACTIONS(3076), 1, aux_sym_brace_expression_token1, - ACTIONS(2750), 1, + ACTIONS(3082), 1, anon_sym_DOLLAR, - ACTIONS(2753), 1, + ACTIONS(3085), 1, anon_sym_DQUOTE, - ACTIONS(2756), 1, + ACTIONS(3088), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2759), 1, + ACTIONS(3091), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2762), 1, + ACTIONS(3094), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2765), 1, + ACTIONS(3097), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2771), 1, + ACTIONS(3103), 1, sym__file_descriptor, - ACTIONS(2774), 1, + ACTIONS(3106), 1, sym__backtick_open, - ACTIONS(2777), 1, + ACTIONS(3109), 1, sym__dollar_literal, - ACTIONS(2780), 1, + ACTIONS(3112), 1, sym__brace_expr_start, - STATE(673), 1, + STATE(690), 1, aux_sym_command_repeat2, - STATE(1688), 1, + STATE(1599), 1, sym_string, - STATE(1699), 1, + STATE(1747), 1, sym__argument, - STATE(1803), 1, + STATE(1780), 1, sym_heredoc_redirect, - STATE(3600), 1, + STATE(3555), 1, sym__word_part, - ACTIONS(2729), 2, + ACTIONS(1187), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3061), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - ACTIONS(2768), 2, + ACTIONS(3100), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1501), 2, - sym_simple_expansion, - sym_expansion, - STATE(1654), 2, + STATE(1485), 2, sym_brace_expression, sym__expression, - ACTIONS(2024), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - ACTIONS(2732), 3, + STATE(1487), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(3064), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2747), 3, + ACTIONS(3079), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1700), 3, + STATE(1800), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2022), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1689), 5, + STATE(1603), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2735), 7, + ACTIONS(1185), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3067), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83584,88 +85129,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [35742] = 31, - ACTIONS(659), 1, + [36905] = 31, + ACTIONS(409), 1, aux_sym_brace_expression_token1, - ACTIONS(663), 1, + ACTIONS(413), 1, anon_sym_DOLLAR, - ACTIONS(665), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(667), 1, + ACTIONS(417), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(669), 1, + ACTIONS(419), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(671), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(673), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(681), 1, + ACTIONS(431), 1, sym__backtick_open, - ACTIONS(683), 1, + ACTIONS(433), 1, sym__dollar_literal, - ACTIONS(685), 1, + ACTIONS(435), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(3038), 1, sym_word, - ACTIONS(2791), 1, + ACTIONS(3046), 1, anon_sym_LT_LT, - ACTIONS(2793), 1, + ACTIONS(3048), 1, anon_sym_LT_LT_DASH, - ACTIONS(2795), 1, + ACTIONS(3050), 1, sym__file_descriptor, - STATE(673), 1, + STATE(690), 1, aux_sym_command_repeat2, - STATE(1688), 1, + STATE(1599), 1, sym_string, - STATE(1699), 1, + STATE(1747), 1, sym__argument, - STATE(1803), 1, + STATE(1780), 1, sym_heredoc_redirect, - STATE(3600), 1, + STATE(3555), 1, sym__word_part, - ACTIONS(675), 2, + ACTIONS(425), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2785), 2, + ACTIONS(1245), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3040), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1501), 2, - sym_simple_expansion, - sym_expansion, - STATE(1654), 2, + STATE(1485), 2, sym_brace_expression, sym__expression, - ACTIONS(661), 3, + STATE(1487), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(411), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2082), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - ACTIONS(2787), 3, + ACTIONS(3042), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1700), 3, + STATE(1800), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2080), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1689), 5, + STATE(1603), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2789), 7, + ACTIONS(1243), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3044), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83673,87 +85219,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [35862] = 30, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2797), 1, - sym_word, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2811), 1, + [37026] = 31, + ACTIONS(665), 1, aux_sym_brace_expression_token1, - ACTIONS(2813), 1, - sym_number, - ACTIONS(2815), 1, + ACTIONS(669), 1, anon_sym_DOLLAR, - ACTIONS(2817), 1, + ACTIONS(671), 1, anon_sym_DQUOTE, - ACTIONS(2821), 1, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2823), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2825), 1, + ACTIONS(677), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2827), 1, + ACTIONS(679), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2831), 1, - sym__file_descriptor, - ACTIONS(2833), 1, + ACTIONS(687), 1, sym__backtick_open, - ACTIONS(2835), 1, + ACTIONS(689), 1, sym__dollar_literal, - ACTIONS(2837), 1, + ACTIONS(691), 1, sym__brace_expr_start, - STATE(2438), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3115), 1, + sym_word, + ACTIONS(3123), 1, + anon_sym_LT_LT, + ACTIONS(3125), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3127), 1, + sym__file_descriptor, + STATE(696), 1, + aux_sym_command_repeat2, + STATE(1517), 1, sym_string, - STATE(2534), 1, + STATE(1723), 1, sym_heredoc_redirect, - STATE(3568), 1, + STATE(1804), 1, + sym__argument, + STATE(3511), 1, sym__word_part, - ACTIONS(2819), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2829), 2, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2384), 2, - sym__word_like, - sym_concatenation, - STATE(2386), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2435), 2, - sym_simple_expansion, - sym_expansion, - STATE(2445), 2, + ACTIONS(3117), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1500), 2, sym_brace_expression, sym__expression, - ACTIONS(2803), 3, + STATE(1607), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(667), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1155), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + ACTIONS(3119), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2801), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, - STATE(2439), 5, + STATE(1735), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + STATE(1518), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2799), 6, + ACTIONS(1153), 6, + sym__heredoc_newline, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2805), 7, + ACTIONS(3121), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83761,87 +85309,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [35980] = 30, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2797), 1, - sym_word, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2811), 1, + [37147] = 31, + ACTIONS(479), 1, aux_sym_brace_expression_token1, - ACTIONS(2815), 1, + ACTIONS(483), 1, anon_sym_DOLLAR, - ACTIONS(2817), 1, + ACTIONS(485), 1, anon_sym_DQUOTE, - ACTIONS(2821), 1, + ACTIONS(487), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2823), 1, + ACTIONS(489), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2825), 1, + ACTIONS(491), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2827), 1, + ACTIONS(493), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2831), 1, - sym__file_descriptor, - ACTIONS(2833), 1, + ACTIONS(501), 1, sym__backtick_open, - ACTIONS(2835), 1, + ACTIONS(503), 1, sym__dollar_literal, - ACTIONS(2837), 1, + ACTIONS(505), 1, sym__brace_expr_start, - ACTIONS(2843), 1, - sym_number, - STATE(2438), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3129), 1, + sym_word, + ACTIONS(3137), 1, + anon_sym_LT_LT, + ACTIONS(3139), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3141), 1, + sym__file_descriptor, + STATE(694), 1, + aux_sym_command_repeat2, + STATE(1555), 1, sym_string, - STATE(2534), 1, + STATE(1759), 1, sym_heredoc_redirect, - STATE(3568), 1, + STATE(1767), 1, + sym__argument, + STATE(3561), 1, sym__word_part, - ACTIONS(2819), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2829), 2, + ACTIONS(495), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2390), 2, - sym__word_like, - sym_concatenation, - STATE(2393), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2435), 2, - sym_simple_expansion, - sym_expansion, - STATE(2445), 2, + ACTIONS(3131), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1552), 2, sym_brace_expression, sym__expression, - ACTIONS(2803), 3, + STATE(1558), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(481), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1155), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_then, + ACTIONS(3133), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2841), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, - STATE(2439), 5, + STATE(1768), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + STATE(1557), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2839), 6, + ACTIONS(1153), 6, + sym__heredoc_newline, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2805), 7, + ACTIONS(3135), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83849,87 +85399,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [36098] = 30, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2797), 1, - sym_word, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2811), 1, + [37268] = 31, + ACTIONS(479), 1, aux_sym_brace_expression_token1, - ACTIONS(2815), 1, + ACTIONS(483), 1, anon_sym_DOLLAR, - ACTIONS(2817), 1, + ACTIONS(485), 1, anon_sym_DQUOTE, - ACTIONS(2821), 1, + ACTIONS(487), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2823), 1, + ACTIONS(489), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2825), 1, + ACTIONS(491), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2827), 1, + ACTIONS(493), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2831), 1, - sym__file_descriptor, - ACTIONS(2833), 1, + ACTIONS(501), 1, sym__backtick_open, - ACTIONS(2835), 1, + ACTIONS(503), 1, sym__dollar_literal, - ACTIONS(2837), 1, + ACTIONS(505), 1, sym__brace_expr_start, - ACTIONS(2849), 1, - sym_number, - STATE(2438), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3129), 1, + sym_word, + ACTIONS(3137), 1, + anon_sym_LT_LT, + ACTIONS(3139), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3141), 1, + sym__file_descriptor, + STATE(697), 1, + aux_sym_command_repeat2, + STATE(1555), 1, sym_string, - STATE(2534), 1, + STATE(1759), 1, sym_heredoc_redirect, - STATE(3568), 1, + STATE(1767), 1, + sym__argument, + STATE(3561), 1, sym__word_part, - ACTIONS(2819), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2829), 2, + ACTIONS(495), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2394), 2, - sym__word_like, - sym_concatenation, - STATE(2395), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2435), 2, - sym_simple_expansion, - sym_expansion, - STATE(2445), 2, + ACTIONS(3131), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1552), 2, sym_brace_expression, sym__expression, - ACTIONS(2803), 3, + STATE(1558), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(481), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1173), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_then, + ACTIONS(3133), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2847), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, - STATE(2439), 5, + STATE(1768), 3, + sym_redirect, + sym__word_like, + sym_concatenation, + STATE(1557), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2845), 6, + ACTIONS(1171), 6, + sym__heredoc_newline, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2805), 7, + ACTIONS(3135), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83937,88 +85489,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [36216] = 31, - ACTIONS(565), 1, + [37389] = 31, + ACTIONS(479), 1, aux_sym_brace_expression_token1, - ACTIONS(569), 1, + ACTIONS(483), 1, anon_sym_DOLLAR, - ACTIONS(571), 1, + ACTIONS(485), 1, anon_sym_DQUOTE, - ACTIONS(573), 1, + ACTIONS(487), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(575), 1, + ACTIONS(489), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(577), 1, + ACTIONS(491), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(579), 1, + ACTIONS(493), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(587), 1, + ACTIONS(501), 1, sym__backtick_open, - ACTIONS(589), 1, + ACTIONS(503), 1, sym__dollar_literal, - ACTIONS(591), 1, + ACTIONS(505), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(3129), 1, sym_word, - ACTIONS(2706), 1, + ACTIONS(3137), 1, anon_sym_LT_LT, - ACTIONS(2708), 1, + ACTIONS(3139), 1, anon_sym_LT_LT_DASH, - ACTIONS(2710), 1, + ACTIONS(3141), 1, sym__file_descriptor, - STATE(670), 1, + STATE(698), 1, aux_sym_command_repeat2, - STATE(1535), 1, + STATE(1555), 1, sym_string, - STATE(1731), 1, + STATE(1759), 1, sym_heredoc_redirect, - STATE(1856), 1, + STATE(1767), 1, sym__argument, - STATE(3575), 1, + STATE(3561), 1, sym__word_part, - ACTIONS(581), 2, + ACTIONS(495), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2700), 2, + ACTIONS(3131), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1512), 2, + STATE(1552), 2, sym_brace_expression, sym__expression, - STATE(1538), 2, + STATE(1558), 2, sym_simple_expansion, sym_expansion, - ACTIONS(567), 3, + ACTIONS(481), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2013), 3, + ACTIONS(1180), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, - ACTIONS(2702), 3, + anon_sym_then, + ACTIONS(3133), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1857), 3, + STATE(1768), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2011), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1537), 5, + STATE(1557), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2704), 7, + ACTIONS(1178), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3135), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84026,88 +85579,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [36336] = 31, - ACTIONS(499), 1, + [37510] = 31, + ACTIONS(665), 1, aux_sym_brace_expression_token1, - ACTIONS(503), 1, + ACTIONS(669), 1, anon_sym_DOLLAR, - ACTIONS(505), 1, + ACTIONS(671), 1, anon_sym_DQUOTE, - ACTIONS(507), 1, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(509), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(511), 1, + ACTIONS(677), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(513), 1, + ACTIONS(679), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(521), 1, + ACTIONS(687), 1, sym__backtick_open, - ACTIONS(523), 1, + ACTIONS(689), 1, sym__dollar_literal, - ACTIONS(525), 1, + ACTIONS(691), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2712), 1, + ACTIONS(3115), 1, sym_word, - ACTIONS(2720), 1, + ACTIONS(3123), 1, anon_sym_LT_LT, - ACTIONS(2722), 1, + ACTIONS(3125), 1, anon_sym_LT_LT_DASH, - ACTIONS(2724), 1, + ACTIONS(3127), 1, sym__file_descriptor, - STATE(685), 1, + STATE(701), 1, aux_sym_command_repeat2, - STATE(1585), 1, + STATE(1517), 1, sym_string, - STATE(1714), 1, + STATE(1723), 1, sym_heredoc_redirect, - STATE(1720), 1, + STATE(1804), 1, sym__argument, - STATE(3569), 1, + STATE(3511), 1, sym__word_part, - ACTIONS(515), 2, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2714), 2, + ACTIONS(3117), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1580), 2, + STATE(1500), 2, sym_brace_expression, sym__expression, - STATE(1589), 2, + STATE(1607), 2, sym_simple_expansion, sym_expansion, - ACTIONS(501), 3, + ACTIONS(667), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2082), 3, + ACTIONS(1173), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, - ACTIONS(2716), 3, + anon_sym_fi, + ACTIONS(3119), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1721), 3, + STATE(1735), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2080), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1588), 5, + STATE(1518), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2718), 7, + ACTIONS(1171), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3121), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84115,88 +85669,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [36456] = 31, - ACTIONS(339), 1, + [37631] = 31, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3143), 1, + sym_word, + ACTIONS(3155), 1, + anon_sym_LT_LT, + ACTIONS(3158), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3161), 1, aux_sym_brace_expression_token1, - ACTIONS(343), 1, + ACTIONS(3167), 1, anon_sym_DOLLAR, - ACTIONS(345), 1, + ACTIONS(3170), 1, anon_sym_DQUOTE, - ACTIONS(347), 1, + ACTIONS(3173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(349), 1, + ACTIONS(3176), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(351), 1, + ACTIONS(3179), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(353), 1, + ACTIONS(3182), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(361), 1, + ACTIONS(3188), 1, + sym__file_descriptor, + ACTIONS(3191), 1, sym__backtick_open, - ACTIONS(363), 1, + ACTIONS(3194), 1, sym__dollar_literal, - ACTIONS(365), 1, + ACTIONS(3197), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2851), 1, - sym_word, - ACTIONS(2859), 1, - anon_sym_LT_LT, - ACTIONS(2861), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2863), 1, - sym__file_descriptor, - STATE(682), 1, + STATE(697), 1, aux_sym_command_repeat2, - STATE(1664), 1, + STATE(1555), 1, sym_string, - STATE(1779), 1, + STATE(1759), 1, sym_heredoc_redirect, - STATE(1853), 1, + STATE(1767), 1, sym__argument, - STATE(3622), 1, + STATE(3561), 1, sym__word_part, - ACTIONS(355), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2853), 2, + ACTIONS(3146), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1648), 2, + ACTIONS(3185), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1552), 2, sym_brace_expression, sym__expression, - STATE(1674), 2, + STATE(1558), 2, sym_simple_expansion, sym_expansion, - ACTIONS(341), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2013), 3, + ACTIONS(1187), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, - ACTIONS(2855), 3, + anon_sym_then, + ACTIONS(3149), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1854), 3, + ACTIONS(3164), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1768), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2011), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1665), 5, + STATE(1557), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2857), 7, + ACTIONS(1185), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3152), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84204,88 +85759,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [36576] = 31, - ACTIONS(659), 1, + [37752] = 31, + ACTIONS(479), 1, aux_sym_brace_expression_token1, - ACTIONS(663), 1, + ACTIONS(483), 1, anon_sym_DOLLAR, - ACTIONS(665), 1, + ACTIONS(485), 1, anon_sym_DQUOTE, - ACTIONS(667), 1, + ACTIONS(487), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(669), 1, + ACTIONS(489), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(671), 1, + ACTIONS(491), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(673), 1, + ACTIONS(493), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(681), 1, + ACTIONS(501), 1, sym__backtick_open, - ACTIONS(683), 1, + ACTIONS(503), 1, sym__dollar_literal, - ACTIONS(685), 1, + ACTIONS(505), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(3129), 1, sym_word, - ACTIONS(2791), 1, + ACTIONS(3137), 1, anon_sym_LT_LT, - ACTIONS(2793), 1, + ACTIONS(3139), 1, anon_sym_LT_LT_DASH, - ACTIONS(2795), 1, + ACTIONS(3141), 1, sym__file_descriptor, - STATE(692), 1, + STATE(697), 1, aux_sym_command_repeat2, - STATE(1688), 1, + STATE(1555), 1, sym_string, - STATE(1699), 1, - sym__argument, - STATE(1803), 1, + STATE(1759), 1, sym_heredoc_redirect, - STATE(3600), 1, + STATE(1767), 1, + sym__argument, + STATE(3561), 1, sym__word_part, - ACTIONS(675), 2, + ACTIONS(495), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2785), 2, + ACTIONS(3131), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1501), 2, - sym_simple_expansion, - sym_expansion, - STATE(1654), 2, + STATE(1552), 2, sym_brace_expression, sym__expression, - ACTIONS(661), 3, + STATE(1558), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(481), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2013), 3, + ACTIONS(1245), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - ACTIONS(2787), 3, + anon_sym_then, + ACTIONS(3133), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1700), 3, + STATE(1768), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2011), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1689), 5, + STATE(1557), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2789), 7, + ACTIONS(1243), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3135), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84293,88 +85849,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [36696] = 31, - ACTIONS(339), 1, + [37873] = 31, + ACTIONS(665), 1, aux_sym_brace_expression_token1, - ACTIONS(343), 1, + ACTIONS(669), 1, anon_sym_DOLLAR, - ACTIONS(345), 1, + ACTIONS(671), 1, anon_sym_DQUOTE, - ACTIONS(347), 1, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(349), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(351), 1, + ACTIONS(677), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(353), 1, + ACTIONS(679), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(361), 1, + ACTIONS(687), 1, sym__backtick_open, - ACTIONS(363), 1, + ACTIONS(689), 1, sym__dollar_literal, - ACTIONS(365), 1, + ACTIONS(691), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2851), 1, + ACTIONS(3115), 1, sym_word, - ACTIONS(2859), 1, + ACTIONS(3123), 1, anon_sym_LT_LT, - ACTIONS(2861), 1, + ACTIONS(3125), 1, anon_sym_LT_LT_DASH, - ACTIONS(2863), 1, + ACTIONS(3127), 1, sym__file_descriptor, - STATE(686), 1, + STATE(703), 1, aux_sym_command_repeat2, - STATE(1664), 1, + STATE(1517), 1, sym_string, - STATE(1779), 1, + STATE(1723), 1, sym_heredoc_redirect, - STATE(1853), 1, + STATE(1804), 1, sym__argument, - STATE(3622), 1, + STATE(3511), 1, sym__word_part, - ACTIONS(355), 2, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2853), 2, + ACTIONS(3117), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1648), 2, + STATE(1500), 2, sym_brace_expression, sym__expression, - STATE(1674), 2, + STATE(1607), 2, sym_simple_expansion, sym_expansion, - ACTIONS(341), 3, + ACTIONS(667), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(1995), 3, + ACTIONS(1180), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, - ACTIONS(2855), 3, + anon_sym_fi, + ACTIONS(3119), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1854), 3, + STATE(1735), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(1993), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1665), 5, + STATE(1518), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2857), 7, + ACTIONS(1178), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3121), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84382,88 +85939,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [36816] = 31, - ACTIONS(339), 1, + [37994] = 31, + ACTIONS(315), 1, aux_sym_brace_expression_token1, - ACTIONS(343), 1, + ACTIONS(319), 1, anon_sym_DOLLAR, - ACTIONS(345), 1, + ACTIONS(321), 1, anon_sym_DQUOTE, - ACTIONS(347), 1, + ACTIONS(323), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(349), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(351), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(353), 1, + ACTIONS(329), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(361), 1, + ACTIONS(337), 1, sym__backtick_open, - ACTIONS(363), 1, + ACTIONS(339), 1, sym__dollar_literal, - ACTIONS(365), 1, + ACTIONS(341), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2851), 1, + ACTIONS(3200), 1, sym_word, - ACTIONS(2859), 1, + ACTIONS(3208), 1, anon_sym_LT_LT, - ACTIONS(2861), 1, + ACTIONS(3210), 1, anon_sym_LT_LT_DASH, - ACTIONS(2863), 1, + ACTIONS(3212), 1, sym__file_descriptor, - STATE(686), 1, + STATE(678), 1, aux_sym_command_repeat2, - STATE(1664), 1, + STATE(1622), 1, sym_string, - STATE(1779), 1, + STATE(1769), 1, sym_heredoc_redirect, - STATE(1853), 1, + STATE(1774), 1, sym__argument, - STATE(3622), 1, + STATE(3529), 1, sym__word_part, - ACTIONS(355), 2, + ACTIONS(331), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2853), 2, + ACTIONS(3202), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1648), 2, + STATE(1596), 2, sym_brace_expression, sym__expression, - STATE(1674), 2, + STATE(1626), 2, sym_simple_expansion, sym_expansion, - ACTIONS(341), 3, + ACTIONS(317), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2082), 3, + ACTIONS(1245), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, - ACTIONS(2855), 3, + anon_sym_do, + ACTIONS(3204), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1854), 3, + STATE(1775), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2080), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1665), 5, + STATE(1625), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2857), 7, + ACTIONS(1243), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3206), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84471,346 +86029,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [36936] = 31, - ACTIONS(339), 1, - aux_sym_brace_expression_token1, - ACTIONS(343), 1, - anon_sym_DOLLAR, - ACTIONS(345), 1, - anon_sym_DQUOTE, - ACTIONS(347), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(351), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(361), 1, - sym__backtick_open, - ACTIONS(363), 1, - sym__dollar_literal, - ACTIONS(365), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2851), 1, - sym_word, - ACTIONS(2859), 1, - anon_sym_LT_LT, - ACTIONS(2861), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2863), 1, - sym__file_descriptor, - STATE(683), 1, - aux_sym_command_repeat2, - STATE(1664), 1, - sym_string, - STATE(1779), 1, - sym_heredoc_redirect, - STATE(1853), 1, - sym__argument, - STATE(3622), 1, - sym__word_part, - ACTIONS(355), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2853), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1648), 2, - sym_brace_expression, - sym__expression, - STATE(1674), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(341), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2017), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, - ACTIONS(2855), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(1854), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - ACTIONS(2015), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1665), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2857), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [37056] = 31, - ACTIONS(2007), 1, + [38115] = 31, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2865), 1, + ACTIONS(3214), 1, sym_word, - ACTIONS(2877), 1, + ACTIONS(3226), 1, anon_sym_LT_LT, - ACTIONS(2880), 1, + ACTIONS(3229), 1, anon_sym_LT_LT_DASH, - ACTIONS(2883), 1, + ACTIONS(3232), 1, aux_sym_brace_expression_token1, - ACTIONS(2889), 1, + ACTIONS(3238), 1, anon_sym_DOLLAR, - ACTIONS(2892), 1, + ACTIONS(3241), 1, anon_sym_DQUOTE, - ACTIONS(2895), 1, + ACTIONS(3244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2898), 1, + ACTIONS(3247), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2901), 1, + ACTIONS(3250), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2904), 1, + ACTIONS(3253), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2910), 1, + ACTIONS(3259), 1, sym__file_descriptor, - ACTIONS(2913), 1, + ACTIONS(3262), 1, sym__backtick_open, - ACTIONS(2916), 1, + ACTIONS(3265), 1, sym__dollar_literal, - ACTIONS(2919), 1, + ACTIONS(3268), 1, sym__brace_expr_start, - STATE(685), 1, + STATE(701), 1, aux_sym_command_repeat2, - STATE(1585), 1, + STATE(1517), 1, sym_string, - STATE(1714), 1, + STATE(1723), 1, sym_heredoc_redirect, - STATE(1720), 1, + STATE(1804), 1, sym__argument, - STATE(3569), 1, + STATE(3511), 1, sym__word_part, - ACTIONS(2868), 2, + ACTIONS(3217), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - ACTIONS(2907), 2, + ACTIONS(3256), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1580), 2, + STATE(1500), 2, sym_brace_expression, sym__expression, - STATE(1589), 2, + STATE(1607), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2024), 3, + ACTIONS(1187), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, - ACTIONS(2871), 3, + anon_sym_fi, + ACTIONS(3220), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2886), 3, + ACTIONS(3235), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1721), 3, + STATE(1735), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2022), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1588), 5, + STATE(1518), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2874), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [37176] = 31, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2922), 1, - sym_word, - ACTIONS(2934), 1, - anon_sym_LT_LT, - ACTIONS(2937), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2940), 1, - aux_sym_brace_expression_token1, - ACTIONS(2946), 1, - anon_sym_DOLLAR, - ACTIONS(2949), 1, - anon_sym_DQUOTE, - ACTIONS(2952), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2955), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2958), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2961), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2967), 1, - sym__file_descriptor, - ACTIONS(2970), 1, - sym__backtick_open, - ACTIONS(2973), 1, - sym__dollar_literal, - ACTIONS(2976), 1, - sym__brace_expr_start, - STATE(686), 1, - aux_sym_command_repeat2, - STATE(1664), 1, - sym_string, - STATE(1779), 1, - sym_heredoc_redirect, - STATE(1853), 1, - sym__argument, - STATE(3622), 1, - sym__word_part, - ACTIONS(2925), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - ACTIONS(2964), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1648), 2, - sym_brace_expression, - sym__expression, - STATE(1674), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(2024), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, - ACTIONS(2928), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2943), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1854), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - ACTIONS(2022), 5, + ACTIONS(1185), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - STATE(1665), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2931), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [37296] = 23, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2979), 1, - sym_word, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(2988), 1, - aux_sym_brace_expression_token1, - ACTIONS(2994), 1, - anon_sym_DOLLAR, - ACTIONS(2997), 1, - anon_sym_DQUOTE, - ACTIONS(3000), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3006), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3009), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3015), 1, - sym__backtick_open, - ACTIONS(3018), 1, - sym__dollar_literal, - ACTIONS(3021), 1, - sym__brace_expr_start, - STATE(1239), 1, - sym_string, - STATE(3608), 1, - sym__word_part, - ACTIONS(3012), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1252), 2, - sym_simple_expansion, - sym_expansion, - STATE(1355), 2, - sym_brace_expression, - sym__expression, - ACTIONS(2991), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1376), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(1240), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2984), 9, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(2982), 16, - sym__assignment_name, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + ACTIONS(3223), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84818,170 +86119,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [37400] = 23, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2986), 1, - anon_sym_LPAREN, - ACTIONS(3024), 1, - sym_word, - ACTIONS(3031), 1, + [38236] = 31, + ACTIONS(315), 1, aux_sym_brace_expression_token1, - ACTIONS(3037), 1, + ACTIONS(319), 1, anon_sym_DOLLAR, - ACTIONS(3040), 1, + ACTIONS(321), 1, anon_sym_DQUOTE, - ACTIONS(3043), 1, + ACTIONS(323), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3046), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3049), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3052), 1, + ACTIONS(329), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3058), 1, + ACTIONS(337), 1, sym__backtick_open, - ACTIONS(3061), 1, + ACTIONS(339), 1, sym__dollar_literal, - ACTIONS(3064), 1, + ACTIONS(341), 1, sym__brace_expr_start, - STATE(1239), 1, - sym_string, - STATE(3608), 1, - sym__word_part, - ACTIONS(3055), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1252), 2, - sym_simple_expansion, - sym_expansion, - STATE(1355), 2, - sym_brace_expression, - sym__expression, - ACTIONS(3034), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1407), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(1240), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3029), 9, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(3027), 16, - sym__assignment_name, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [37504] = 31, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3067), 1, + ACTIONS(3200), 1, sym_word, - ACTIONS(3079), 1, + ACTIONS(3208), 1, anon_sym_LT_LT, - ACTIONS(3082), 1, + ACTIONS(3210), 1, anon_sym_LT_LT_DASH, - ACTIONS(3085), 1, - aux_sym_brace_expression_token1, - ACTIONS(3091), 1, - anon_sym_DOLLAR, - ACTIONS(3094), 1, - anon_sym_DQUOTE, - ACTIONS(3097), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3100), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3103), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3106), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3112), 1, + ACTIONS(3212), 1, sym__file_descriptor, - ACTIONS(3115), 1, - sym__backtick_open, - ACTIONS(3118), 1, - sym__dollar_literal, - ACTIONS(3121), 1, - sym__brace_expr_start, - STATE(689), 1, + STATE(704), 1, aux_sym_command_repeat2, - STATE(1535), 1, + STATE(1622), 1, sym_string, - STATE(1731), 1, + STATE(1769), 1, sym_heredoc_redirect, - STATE(1856), 1, + STATE(1774), 1, sym__argument, - STATE(3575), 1, + STATE(3529), 1, sym__word_part, - ACTIONS(3070), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - ACTIONS(3109), 2, + ACTIONS(331), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1512), 2, + ACTIONS(3202), 2, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + STATE(1596), 2, sym_brace_expression, sym__expression, - STATE(1538), 2, + STATE(1626), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2024), 3, + ACTIONS(317), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(1155), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_do, - ACTIONS(3073), 3, + ACTIONS(3204), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3088), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1857), 3, + STATE(1775), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2022), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1537), 5, + STATE(1625), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3076), 7, + ACTIONS(1153), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3206), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -84989,88 +86209,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [37624] = 31, - ACTIONS(433), 1, + [38357] = 31, + ACTIONS(665), 1, aux_sym_brace_expression_token1, - ACTIONS(437), 1, + ACTIONS(669), 1, anon_sym_DOLLAR, - ACTIONS(439), 1, + ACTIONS(671), 1, anon_sym_DQUOTE, - ACTIONS(441), 1, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(443), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(445), 1, + ACTIONS(677), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(679), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(455), 1, + ACTIONS(687), 1, sym__backtick_open, - ACTIONS(457), 1, + ACTIONS(689), 1, sym__dollar_literal, - ACTIONS(459), 1, + ACTIONS(691), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3124), 1, + ACTIONS(3115), 1, sym_word, - ACTIONS(3132), 1, + ACTIONS(3123), 1, anon_sym_LT_LT, - ACTIONS(3134), 1, + ACTIONS(3125), 1, anon_sym_LT_LT_DASH, - ACTIONS(3136), 1, + ACTIONS(3127), 1, sym__file_descriptor, - STATE(693), 1, + STATE(701), 1, aux_sym_command_repeat2, - STATE(1519), 1, + STATE(1517), 1, sym_string, - STATE(1702), 1, + STATE(1723), 1, sym_heredoc_redirect, - STATE(1742), 1, + STATE(1804), 1, sym__argument, - STATE(3560), 1, + STATE(3511), 1, sym__word_part, - ACTIONS(449), 2, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2013), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3126), 2, + ACTIONS(3117), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1513), 2, + STATE(1500), 2, sym_brace_expression, sym__expression, - STATE(1522), 2, + STATE(1607), 2, sym_simple_expansion, sym_expansion, - ACTIONS(435), 3, + ACTIONS(667), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(3128), 3, + ACTIONS(1245), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + ACTIONS(3119), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1743), 3, + STATE(1735), 3, sym_redirect, sym__word_like, sym_concatenation, - STATE(1521), 5, + STATE(1518), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2011), 6, - sym__backtick_close, + ACTIONS(1243), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3130), 7, + ACTIONS(3121), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85078,88 +86299,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [37744] = 31, - ACTIONS(565), 1, + [38478] = 31, + ACTIONS(315), 1, aux_sym_brace_expression_token1, - ACTIONS(569), 1, + ACTIONS(319), 1, anon_sym_DOLLAR, - ACTIONS(571), 1, + ACTIONS(321), 1, anon_sym_DQUOTE, - ACTIONS(573), 1, + ACTIONS(323), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(575), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(577), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(579), 1, + ACTIONS(329), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(587), 1, + ACTIONS(337), 1, sym__backtick_open, - ACTIONS(589), 1, + ACTIONS(339), 1, sym__dollar_literal, - ACTIONS(591), 1, + ACTIONS(341), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2698), 1, + ACTIONS(3200), 1, sym_word, - ACTIONS(2706), 1, + ACTIONS(3208), 1, anon_sym_LT_LT, - ACTIONS(2708), 1, + ACTIONS(3210), 1, anon_sym_LT_LT_DASH, - ACTIONS(2710), 1, + ACTIONS(3212), 1, sym__file_descriptor, - STATE(672), 1, + STATE(678), 1, aux_sym_command_repeat2, - STATE(1535), 1, + STATE(1622), 1, sym_string, - STATE(1731), 1, + STATE(1769), 1, sym_heredoc_redirect, - STATE(1856), 1, + STATE(1774), 1, sym__argument, - STATE(3575), 1, + STATE(3529), 1, sym__word_part, - ACTIONS(581), 2, + ACTIONS(331), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2700), 2, + ACTIONS(3202), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1512), 2, + STATE(1596), 2, sym_brace_expression, sym__expression, - STATE(1538), 2, + STATE(1626), 2, sym_simple_expansion, sym_expansion, - ACTIONS(567), 3, + ACTIONS(317), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2017), 3, + ACTIONS(1173), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_do, - ACTIONS(2702), 3, + ACTIONS(3204), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1857), 3, + STATE(1775), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(2015), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1537), 5, + STATE(1625), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2704), 7, + ACTIONS(1171), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3206), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85167,88 +86389,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [37864] = 31, - ACTIONS(659), 1, + [38599] = 31, + ACTIONS(315), 1, aux_sym_brace_expression_token1, - ACTIONS(663), 1, + ACTIONS(319), 1, anon_sym_DOLLAR, - ACTIONS(665), 1, + ACTIONS(321), 1, anon_sym_DQUOTE, - ACTIONS(667), 1, + ACTIONS(323), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(669), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(671), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(673), 1, + ACTIONS(329), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(681), 1, + ACTIONS(337), 1, sym__backtick_open, - ACTIONS(683), 1, + ACTIONS(339), 1, sym__dollar_literal, - ACTIONS(685), 1, + ACTIONS(341), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(3200), 1, sym_word, - ACTIONS(2791), 1, + ACTIONS(3208), 1, anon_sym_LT_LT, - ACTIONS(2793), 1, + ACTIONS(3210), 1, anon_sym_LT_LT_DASH, - ACTIONS(2795), 1, + ACTIONS(3212), 1, sym__file_descriptor, - STATE(673), 1, + STATE(700), 1, aux_sym_command_repeat2, - STATE(1688), 1, + STATE(1622), 1, sym_string, - STATE(1699), 1, - sym__argument, - STATE(1803), 1, + STATE(1769), 1, sym_heredoc_redirect, - STATE(3600), 1, + STATE(1774), 1, + sym__argument, + STATE(3529), 1, sym__word_part, - ACTIONS(675), 2, + ACTIONS(331), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2785), 2, + ACTIONS(3202), 2, anon_sym_BANG, anon_sym_LBRACE_RBRACE, - STATE(1501), 2, - sym_simple_expansion, - sym_expansion, - STATE(1654), 2, + STATE(1596), 2, sym_brace_expression, sym__expression, - ACTIONS(661), 3, + STATE(1626), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(317), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(1995), 3, + ACTIONS(1180), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - ACTIONS(2787), 3, + anon_sym_do, + ACTIONS(3204), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1700), 3, + STATE(1775), 3, sym_redirect, sym__word_like, sym_concatenation, - ACTIONS(1993), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1689), 5, + STATE(1625), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2789), 7, + ACTIONS(1178), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3206), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85256,88 +86479,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [37984] = 31, - ACTIONS(433), 1, + [38720] = 29, + ACTIONS(593), 1, + anon_sym_LT_LT, + ACTIONS(595), 1, + anon_sym_LT_LT_DASH, + ACTIONS(617), 1, + sym__assignment_name, + ACTIONS(619), 1, + sym__file_descriptor, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3271), 1, + sym_word, + ACTIONS(3273), 1, aux_sym_brace_expression_token1, - ACTIONS(437), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR, - ACTIONS(439), 1, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(441), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(443), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(445), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(3287), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(455), 1, + ACTIONS(3291), 1, sym__backtick_open, - ACTIONS(457), 1, + ACTIONS(3293), 1, sym__dollar_literal, - ACTIONS(459), 1, + ACTIONS(3295), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3124), 1, - sym_word, - ACTIONS(3132), 1, - anon_sym_LT_LT, - ACTIONS(3134), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3136), 1, - sym__file_descriptor, - STATE(695), 1, - aux_sym_command_repeat2, - STATE(1519), 1, + STATE(1655), 1, sym_string, - STATE(1702), 1, + STATE(1858), 1, sym_heredoc_redirect, - STATE(1742), 1, - sym__argument, - STATE(3560), 1, + STATE(3533), 1, sym__word_part, - ACTIONS(449), 2, + ACTIONS(3289), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1995), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3126), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1513), 2, - sym_brace_expression, - sym__expression, - STATE(1522), 2, + STATE(1672), 2, sym_simple_expansion, sym_expansion, - ACTIONS(435), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3128), 3, + STATE(1779), 2, + sym_brace_expression, + sym__expression, + ACTIONS(589), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1743), 3, + ACTIONS(2488), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_done, + ACTIONS(3275), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(725), 5, + sym_variable_assignment, sym_redirect, sym__word_like, sym_concatenation, - STATE(1521), 5, + aux_sym_declaration_command_repeat1, + STATE(1656), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(1993), 6, - sym__backtick_close, + ACTIONS(2486), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3130), 7, + ACTIONS(591), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85345,88 +86566,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [38104] = 31, - ACTIONS(433), 1, + [38836] = 23, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3297), 1, + sym_word, + ACTIONS(3300), 1, + anon_sym_LPAREN, + ACTIONS(3302), 1, aux_sym_brace_expression_token1, - ACTIONS(437), 1, + ACTIONS(3308), 1, anon_sym_DOLLAR, - ACTIONS(439), 1, + ACTIONS(3311), 1, anon_sym_DQUOTE, - ACTIONS(441), 1, + ACTIONS(3314), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(443), 1, + ACTIONS(3317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(445), 1, + ACTIONS(3320), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(3323), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(455), 1, + ACTIONS(3329), 1, sym__backtick_open, - ACTIONS(457), 1, + ACTIONS(3332), 1, sym__dollar_literal, - ACTIONS(459), 1, + ACTIONS(3335), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3124), 1, - sym_word, - ACTIONS(3132), 1, - anon_sym_LT_LT, - ACTIONS(3134), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3136), 1, - sym__file_descriptor, - STATE(696), 1, - aux_sym_command_repeat2, - STATE(1519), 1, + STATE(1420), 1, sym_string, - STATE(1702), 1, - sym_heredoc_redirect, - STATE(1742), 1, - sym__argument, - STATE(3560), 1, + STATE(3522), 1, sym__word_part, - ACTIONS(449), 2, + ACTIONS(3326), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2017), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3126), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1513), 2, + STATE(1392), 2, sym_brace_expression, sym__expression, - STATE(1522), 2, + STATE(1426), 2, sym_simple_expansion, sym_expansion, - ACTIONS(435), 3, + ACTIONS(3305), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(3128), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(1743), 3, - sym_redirect, + STATE(1538), 3, + sym_array, sym__word_like, sym_concatenation, - STATE(1521), 5, + STATE(1421), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2015), 6, - sym__backtick_close, - anon_sym_LF, + ACTIONS(2892), 8, anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(2890), 17, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3130), 7, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85434,88 +86646,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [38224] = 31, - ACTIONS(2007), 1, + anon_sym_LT_LT_DASH, + [38940] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3138), 1, + ACTIONS(3300), 1, + anon_sym_LPAREN, + ACTIONS(3338), 1, sym_word, - ACTIONS(3150), 1, - anon_sym_LT_LT, - ACTIONS(3153), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3156), 1, + ACTIONS(3341), 1, aux_sym_brace_expression_token1, - ACTIONS(3162), 1, + ACTIONS(3347), 1, anon_sym_DOLLAR, - ACTIONS(3165), 1, + ACTIONS(3350), 1, anon_sym_DQUOTE, - ACTIONS(3168), 1, + ACTIONS(3353), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3171), 1, + ACTIONS(3356), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3174), 1, + ACTIONS(3359), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3177), 1, + ACTIONS(3362), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3183), 1, - sym__file_descriptor, - ACTIONS(3186), 1, + ACTIONS(3368), 1, sym__backtick_open, - ACTIONS(3189), 1, + ACTIONS(3371), 1, sym__dollar_literal, - ACTIONS(3192), 1, + ACTIONS(3374), 1, sym__brace_expr_start, - STATE(695), 1, - aux_sym_command_repeat2, - STATE(1519), 1, + STATE(1420), 1, sym_string, - STATE(1702), 1, - sym_heredoc_redirect, - STATE(1742), 1, - sym__argument, - STATE(3560), 1, + STATE(3522), 1, sym__word_part, - ACTIONS(2024), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3141), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - ACTIONS(3180), 2, + ACTIONS(3365), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1513), 2, + STATE(1392), 2, sym_brace_expression, sym__expression, - STATE(1522), 2, + STATE(1426), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3144), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(3159), 3, + ACTIONS(3344), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1743), 3, - sym_redirect, + STATE(1580), 3, + sym_array, sym__word_like, sym_concatenation, - STATE(1521), 5, + STATE(1421), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2022), 6, - sym__backtick_close, - anon_sym_LF, + ACTIONS(2937), 8, anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(2935), 17, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3147), 7, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85523,88 +86727,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [38344] = 31, - ACTIONS(433), 1, + anon_sym_LT_LT_DASH, + [39044] = 30, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3377), 1, + sym_word, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3387), 1, aux_sym_brace_expression_token1, - ACTIONS(437), 1, + ACTIONS(3389), 1, + sym_number, + ACTIONS(3391), 1, anon_sym_DOLLAR, - ACTIONS(439), 1, + ACTIONS(3393), 1, anon_sym_DQUOTE, - ACTIONS(441), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(443), 1, + ACTIONS(3399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(445), 1, + ACTIONS(3401), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(3403), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(455), 1, + ACTIONS(3407), 1, + sym__file_descriptor, + ACTIONS(3409), 1, sym__backtick_open, - ACTIONS(457), 1, + ACTIONS(3411), 1, sym__dollar_literal, - ACTIONS(459), 1, + ACTIONS(3413), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3124), 1, - sym_word, - ACTIONS(3132), 1, - anon_sym_LT_LT, - ACTIONS(3134), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3136), 1, - sym__file_descriptor, - STATE(695), 1, - aux_sym_command_repeat2, - STATE(1519), 1, + STATE(2104), 1, sym_string, - STATE(1702), 1, + STATE(2168), 1, sym_heredoc_redirect, - STATE(1742), 1, - sym__argument, - STATE(3560), 1, + STATE(3523), 1, sym__word_part, - ACTIONS(449), 2, + ACTIONS(3395), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2082), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3126), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1513), 2, + STATE(2024), 2, + sym__word_like, + sym_concatenation, + STATE(2030), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2100), 2, sym_brace_expression, sym__expression, - STATE(1522), 2, + STATE(2109), 2, sym_simple_expansion, sym_expansion, - ACTIONS(435), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3128), 3, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1743), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - STATE(1521), 5, + ACTIONS(3054), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + STATE(2108), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2080), 6, - sym__backtick_close, + ACTIONS(3052), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(3130), 7, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85612,88 +86816,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [38464] = 31, - ACTIONS(499), 1, - aux_sym_brace_expression_token1, - ACTIONS(503), 1, - anon_sym_DOLLAR, - ACTIONS(505), 1, - anon_sym_DQUOTE, - ACTIONS(507), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(509), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(511), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(513), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(521), 1, + [39162] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1098), 1, + anon_sym_done, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(523), 1, sym__dollar_literal, - ACTIONS(525), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2712), 1, - sym_word, - ACTIONS(2720), 1, - anon_sym_LT_LT, - ACTIONS(2722), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2724), 1, - sym__file_descriptor, - STATE(699), 1, - aux_sym_command_repeat2, - STATE(1585), 1, - sym_string, - STATE(1714), 1, - sym_heredoc_redirect, - STATE(1720), 1, - sym__argument, - STATE(3569), 1, - sym__word_part, - ACTIONS(515), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2714), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1580), 2, - sym_brace_expression, - sym__expression, - STATE(1589), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(501), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2013), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, - ACTIONS(2716), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(1721), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - ACTIONS(2011), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1588), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2718), 7, + sym_shebang, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85701,177 +86836,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [38584] = 31, - ACTIONS(659), 1, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, - ACTIONS(663), 1, - anon_sym_DOLLAR, - ACTIONS(665), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(667), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(669), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(671), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(673), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(681), 1, - sym__backtick_open, - ACTIONS(683), 1, - sym__dollar_literal, - ACTIONS(685), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2783), 1, - sym_word, - ACTIONS(2791), 1, - anon_sym_LT_LT, - ACTIONS(2793), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2795), 1, - sym__file_descriptor, - STATE(674), 1, - aux_sym_command_repeat2, - STATE(1688), 1, - sym_string, - STATE(1699), 1, - sym__argument, - STATE(1803), 1, - sym_heredoc_redirect, - STATE(3600), 1, - sym__word_part, - ACTIONS(675), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2785), 2, + ACTIONS(1084), 30, anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1501), 2, - sym_simple_expansion, - sym_expansion, - STATE(1654), 2, - sym_brace_expression, - sym__expression, - ACTIONS(661), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2017), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - ACTIONS(2787), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1700), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - ACTIONS(2015), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(1689), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2789), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [38704] = 31, - ACTIONS(499), 1, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [39228] = 23, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3415), 1, + sym_word, + ACTIONS(3418), 1, + anon_sym_LPAREN, + ACTIONS(3420), 1, aux_sym_brace_expression_token1, - ACTIONS(503), 1, + ACTIONS(3426), 1, anon_sym_DOLLAR, - ACTIONS(505), 1, + ACTIONS(3429), 1, anon_sym_DQUOTE, - ACTIONS(507), 1, + ACTIONS(3432), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(509), 1, + ACTIONS(3435), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(511), 1, + ACTIONS(3438), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(513), 1, + ACTIONS(3441), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(521), 1, + ACTIONS(3447), 1, sym__backtick_open, - ACTIONS(523), 1, + ACTIONS(3450), 1, sym__dollar_literal, - ACTIONS(525), 1, + ACTIONS(3453), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2712), 1, - sym_word, - ACTIONS(2720), 1, - anon_sym_LT_LT, - ACTIONS(2722), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2724), 1, - sym__file_descriptor, - STATE(685), 1, - aux_sym_command_repeat2, - STATE(1585), 1, + STATE(1413), 1, sym_string, - STATE(1714), 1, - sym_heredoc_redirect, - STATE(1720), 1, - sym__argument, - STATE(3569), 1, + STATE(3510), 1, sym__word_part, - ACTIONS(515), 2, + ACTIONS(3444), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2714), 2, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - STATE(1580), 2, + STATE(1412), 2, sym_brace_expression, sym__expression, - STATE(1589), 2, + STATE(1416), 2, sym_simple_expansion, sym_expansion, - ACTIONS(501), 3, + ACTIONS(3423), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(1995), 3, + STATE(1642), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(1415), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2937), 6, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, - ACTIONS(2716), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(1721), 3, - sym_redirect, - sym__word_like, - sym_concatenation, - ACTIONS(1993), 5, + anon_sym_LT_LT, + ACTIONS(2935), 19, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - STATE(1588), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2718), 7, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85879,246 +86958,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [38824] = 27, + anon_sym_LT_LT_DASH, + [39332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, - sym_word, - ACTIONS(3204), 1, - anon_sym_RBRACE, - ACTIONS(3207), 1, - sym_variable_name, - ACTIONS(3209), 1, + ACTIONS(1098), 1, + anon_sym_do, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, - anon_sym_DOLLAR, - ACTIONS(3218), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(3221), 1, sym_raw_string, - ACTIONS(3226), 1, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, - sym__backtick_open, - ACTIONS(3244), 1, - sym__dollar_literal, - ACTIONS(3247), 1, - sym__brace_expr_start, - STATE(980), 1, - sym_subscript, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3212), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3224), 2, - sym_special_variable, - aux_sym_expansion_token1, - ACTIONS(3238), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - STATE(981), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3198), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3201), 15, + ACTIONS(1084), 30, anon_sym_BANG, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [38935] = 28, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [39398] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(2774), 1, sym_word, - ACTIONS(3256), 1, - anon_sym_RBRACE, - ACTIONS(3260), 1, - sym_variable_name, - ACTIONS(3262), 1, + ACTIONS(2784), 1, + anon_sym_LT_LT, + ACTIONS(2786), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2788), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(2790), 1, + sym_number, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(2794), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, - sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(2798), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(2800), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(2808), 1, + sym__file_descriptor, + ACTIONS(2810), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(2812), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(2814), 1, sym__brace_expr_start, - STATE(1031), 1, - sym_subscript, - STATE(1935), 1, + STATE(2397), 1, sym_string, - STATE(3558), 1, + STATE(2475), 1, + sym_heredoc_redirect, + STATE(3525), 1, sym__word_part, - ACTIONS(3254), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3264), 2, - sym_number, + ACTIONS(2796), 2, + sym_raw_string, sym_ansi_c_string, - ACTIONS(3272), 2, - sym_special_variable, - aux_sym_expansion_token1, - ACTIONS(3282), 2, + ACTIONS(2806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(2193), 2, + sym__word_like, + sym_concatenation, + STATE(2194), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2407), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(2413), 2, sym_simple_expansion, sym_expansion, - STATE(1032), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3252), 5, + ACTIONS(2780), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(2778), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + anon_sym_SEMI_SEMI, + STATE(2398), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3258), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [39048] = 30, - ACTIONS(2007), 1, + ACTIONS(2776), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(2782), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [39516] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(3377), 1, sym_word, - ACTIONS(3296), 1, + ACTIONS(3383), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(3385), 1, anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(3387), 1, aux_sym_brace_expression_token1, - ACTIONS(3302), 1, - sym_number, - ACTIONS(3304), 1, + ACTIONS(3391), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(3393), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(3399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(3401), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(3403), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, + ACTIONS(3407), 1, sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(3409), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(3411), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(3413), 1, sym__brace_expr_start, - STATE(2153), 1, + ACTIONS(3456), 1, + sym_number, + STATE(2104), 1, sym_string, - STATE(2283), 1, + STATE(2168), 1, sym_heredoc_redirect, - STATE(3605), 1, + STATE(3523), 1, sym__word_part, - ACTIONS(2847), 2, + ACTIONS(2778), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3308), 2, + ACTIONS(3395), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(3405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2033), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2053), 2, + STATE(2000), 2, sym__word_like, sym_concatenation, - STATE(2155), 2, - sym_simple_expansion, - sym_expansion, - STATE(2193), 2, + STATE(2001), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2100), 2, sym_brace_expression, sym__expression, - ACTIONS(3292), 3, + STATE(2109), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2154), 5, + STATE(2108), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -86126,7 +87187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(2845), 8, + ACTIONS(2776), 9, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -86135,86 +87197,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_RPAREN, anon_sym_RBRACE, - [39165] = 30, - ACTIONS(2007), 1, + [39634] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(3377), 1, sym_word, - ACTIONS(2807), 1, + ACTIONS(3383), 1, anon_sym_LT_LT, - ACTIONS(2809), 1, + ACTIONS(3385), 1, anon_sym_LT_LT_DASH, - ACTIONS(2811), 1, + ACTIONS(3387), 1, aux_sym_brace_expression_token1, - ACTIONS(2813), 1, - sym_number, - ACTIONS(2815), 1, + ACTIONS(3391), 1, anon_sym_DOLLAR, - ACTIONS(2817), 1, + ACTIONS(3393), 1, anon_sym_DQUOTE, - ACTIONS(2821), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2823), 1, + ACTIONS(3399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2825), 1, + ACTIONS(3401), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2827), 1, + ACTIONS(3403), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2831), 1, + ACTIONS(3407), 1, sym__file_descriptor, - ACTIONS(2833), 1, + ACTIONS(3409), 1, sym__backtick_open, - ACTIONS(2835), 1, + ACTIONS(3411), 1, sym__dollar_literal, - ACTIONS(2837), 1, + ACTIONS(3413), 1, sym__brace_expr_start, - STATE(2438), 1, + ACTIONS(3458), 1, + sym_number, + STATE(2104), 1, sym_string, - STATE(2534), 1, + STATE(2168), 1, sym_heredoc_redirect, - STATE(3568), 1, + STATE(3523), 1, sym__word_part, - ACTIONS(2819), 2, + ACTIONS(2977), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3395), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2829), 2, + ACTIONS(3405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2384), 2, + STATE(2005), 2, sym__word_like, sym_concatenation, - STATE(2386), 2, + STATE(2012), 2, sym_redirect, aux_sym_subshell_repeat1, - STATE(2435), 2, - sym_simple_expansion, - sym_expansion, - STATE(2445), 2, + STATE(2100), 2, sym_brace_expression, sym__expression, - ACTIONS(2803), 3, + STATE(2109), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2801), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - STATE(2439), 5, + STATE(2108), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2799), 6, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2805), 7, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -86222,170 +87275,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [39282] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3195), 1, - sym_word, - ACTIONS(3209), 1, - aux_sym_brace_expression_token1, - ACTIONS(3215), 1, - anon_sym_DOLLAR, - ACTIONS(3218), 1, - anon_sym_DQUOTE, - ACTIONS(3221), 1, - sym_raw_string, - ACTIONS(3226), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, - sym__backtick_open, - ACTIONS(3244), 1, - sym__dollar_literal, - ACTIONS(3247), 1, - sym__brace_expr_start, - ACTIONS(3334), 1, - anon_sym_RBRACE, - ACTIONS(3337), 1, - sym_variable_name, - STATE(1041), 1, - sym_subscript, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3212), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3238), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3339), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - STATE(1042), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3328), 5, + ACTIONS(2975), 9, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_RPAREN, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3331), 15, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [39393] = 30, - ACTIONS(2007), 1, + anon_sym_RBRACE, + [39752] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2797), 1, + ACTIONS(2774), 1, sym_word, - ACTIONS(2807), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(2809), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(2811), 1, + ACTIONS(2788), 1, aux_sym_brace_expression_token1, - ACTIONS(2815), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(2817), 1, + ACTIONS(2794), 1, anon_sym_DQUOTE, - ACTIONS(2821), 1, + ACTIONS(2798), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2823), 1, + ACTIONS(2800), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2825), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2827), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2831), 1, + ACTIONS(2808), 1, sym__file_descriptor, - ACTIONS(2833), 1, + ACTIONS(2810), 1, sym__backtick_open, - ACTIONS(2835), 1, + ACTIONS(2812), 1, sym__dollar_literal, - ACTIONS(2837), 1, + ACTIONS(2814), 1, sym__brace_expr_start, - ACTIONS(2843), 1, + ACTIONS(2979), 1, sym_number, - STATE(2438), 1, + STATE(2397), 1, sym_string, - STATE(2534), 1, + STATE(2475), 1, sym_heredoc_redirect, - STATE(3568), 1, + STATE(3525), 1, sym__word_part, - ACTIONS(2819), 2, + ACTIONS(2796), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(2829), 2, + ACTIONS(2806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2390), 2, + STATE(2195), 2, sym__word_like, sym_concatenation, - STATE(2393), 2, + STATE(2196), 2, sym_redirect, aux_sym_subshell_repeat1, - STATE(2435), 2, - sym_simple_expansion, - sym_expansion, - STATE(2445), 2, + STATE(2407), 2, sym_brace_expression, sym__expression, - ACTIONS(2803), 3, + STATE(2413), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2841), 4, + ACTIONS(2977), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - STATE(2439), 5, + STATE(2398), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2839), 6, + ACTIONS(2782), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(2975), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(2805), 7, + [39870] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1088), 1, + anon_sym_do, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -86393,512 +87393,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [39510] = 30, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2797), 1, - sym_word, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, anon_sym_LT_LT_DASH, - ACTIONS(2811), 1, aux_sym_brace_expression_token1, - ACTIONS(2815), 1, - anon_sym_DOLLAR, - ACTIONS(2817), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(2821), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(2823), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2825), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2831), 1, - sym__file_descriptor, - ACTIONS(2833), 1, - sym__backtick_open, - ACTIONS(2835), 1, - sym__dollar_literal, - ACTIONS(2837), 1, - sym__brace_expr_start, - ACTIONS(2849), 1, - sym_number, - STATE(2438), 1, - sym_string, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(3568), 1, - sym__word_part, - ACTIONS(2819), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2394), 2, - sym__word_like, - sym_concatenation, - STATE(2395), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2435), 2, - sym_simple_expansion, - sym_expansion, - STATE(2445), 2, - sym_brace_expression, - sym__expression, - ACTIONS(2803), 3, + ACTIONS(1084), 30, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2847), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - STATE(2439), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2845), 6, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [39627] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, - anon_sym_DQUOTE, - ACTIONS(3270), 1, - sym_raw_string, - ACTIONS(3274), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(3345), 1, - anon_sym_RBRACE, - ACTIONS(3349), 1, - sym_variable_name, - STATE(1061), 1, - sym_subscript, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3264), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3282), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3343), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3351), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - STATE(1062), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3341), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3347), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [39740] = 28, - ACTIONS(3), 1, + [39936] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(3418), 1, + anon_sym_LPAREN, + ACTIONS(3460), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(3463), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(3469), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(3472), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, - sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(3475), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(3478), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(3481), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(3484), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(3490), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(3493), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(3496), 1, sym__brace_expr_start, - ACTIONS(3357), 1, - anon_sym_RBRACE, - ACTIONS(3361), 1, - sym_variable_name, - STATE(935), 1, - sym_subscript, - STATE(1935), 1, + STATE(1413), 1, sym_string, - STATE(3558), 1, + STATE(3510), 1, sym__word_part, - ACTIONS(3264), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(3487), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3355), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3363), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1412), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1416), 2, sym_simple_expansion, sym_expansion, - STATE(938), 3, + ACTIONS(3466), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1548), 3, + sym_array, sym__word_like, sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3353), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + STATE(1415), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3359), 13, - anon_sym_EQ, + ACTIONS(2892), 6, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [39853] = 27, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(2890), 19, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [40040] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(2774), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(2784), 1, + anon_sym_LT_LT, + ACTIONS(2786), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2788), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(2794), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, - sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(2798), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(2800), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(2808), 1, + sym__file_descriptor, + ACTIONS(2810), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(2812), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(2814), 1, sym__brace_expr_start, - ACTIONS(3371), 1, - anon_sym_RBRACE, - ACTIONS(3374), 1, - sym_variable_name, - STATE(1066), 1, - sym_subscript, - STATE(1935), 1, + ACTIONS(3056), 1, + sym_number, + STATE(2397), 1, sym_string, - STATE(3558), 1, + STATE(2475), 1, + sym_heredoc_redirect, + STATE(3525), 1, sym__word_part, - ACTIONS(3212), 2, - sym_number, + ACTIONS(2796), 2, + sym_raw_string, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(2806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3376), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, + STATE(2197), 2, + sym__word_like, + sym_concatenation, + STATE(2198), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2407), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(2413), 2, sym_simple_expansion, sym_expansion, - STATE(1071), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3365), 5, + ACTIONS(2780), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3054), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + anon_sym_SEMI_SEMI, + STATE(2398), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3368), 15, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [39964] = 28, + ACTIONS(2782), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(3052), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [40158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, + ACTIONS(1088), 1, + anon_sym_done, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, - anon_sym_DOLLAR, - ACTIONS(3268), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(3270), 1, sym_raw_string, - ACTIONS(3274), 1, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(3382), 1, - anon_sym_RBRACE, - ACTIONS(3386), 1, - sym_variable_name, - STATE(1083), 1, - sym_subscript, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3264), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3282), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3380), 2, + ACTIONS(1084), 30, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3388), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - STATE(1086), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3378), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3384), 13, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [40077] = 30, - ACTIONS(2007), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [40224] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(3377), 1, sym_word, - ACTIONS(3296), 1, + ACTIONS(3383), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(3385), 1, anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(3387), 1, aux_sym_brace_expression_token1, - ACTIONS(3302), 1, + ACTIONS(3389), 1, sym_number, - ACTIONS(3304), 1, + ACTIONS(3391), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(3393), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(3399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(3401), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(3403), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, + ACTIONS(3407), 1, sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(3409), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(3411), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(3413), 1, sym__brace_expr_start, - STATE(2153), 1, + STATE(2104), 1, sym_string, - STATE(2283), 1, + STATE(2168), 1, sym_heredoc_redirect, - STATE(3605), 1, + STATE(3523), 1, sym__word_part, - ACTIONS(3308), 2, + ACTIONS(3054), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3395), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(3405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2033), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2053), 2, + STATE(2024), 2, sym__word_like, sym_concatenation, - STATE(2155), 2, - sym_simple_expansion, - sym_expansion, - STATE(2193), 2, + STATE(2030), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2100), 2, sym_brace_expression, sym__expression, - ACTIONS(3292), 3, + STATE(2109), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2845), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2847), 5, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - STATE(2154), 5, + STATE(2108), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -86906,169 +87744,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [40194] = 27, - ACTIONS(3), 1, + ACTIONS(3052), 9, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + [40342] = 29, + ACTIONS(403), 1, + anon_sym_LT_LT, + ACTIONS(405), 1, + anon_sym_LT_LT_DASH, + ACTIONS(427), 1, + sym__assignment_name, + ACTIONS(429), 1, + sym__file_descriptor, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3499), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3501), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3505), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3507), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, - sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(3513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(3515), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(3519), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(3521), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(3523), 1, sym__brace_expr_start, - ACTIONS(3396), 1, - anon_sym_RBRACE, - ACTIONS(3399), 1, - sym_variable_name, - STATE(1092), 1, - sym_subscript, - STATE(1935), 1, + STATE(1763), 1, sym_string, - STATE(3558), 1, + STATE(1851), 1, + sym_heredoc_redirect, + STATE(3539), 1, sym__word_part, - ACTIONS(3212), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(2342), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3517), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3401), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1667), 2, sym_simple_expansion, sym_expansion, - STATE(1095), 3, + STATE(1777), 2, + sym_brace_expression, + sym__expression, + ACTIONS(399), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3503), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(723), 5, + sym_variable_assignment, + sym_redirect, sym__word_like, sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3390), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + aux_sym_declaration_command_repeat1, + STATE(1652), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3393), 15, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [40305] = 29, - ACTIONS(655), 1, + ACTIONS(401), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(2340), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [40458] = 29, + ACTIONS(403), 1, anon_sym_LT_LT, - ACTIONS(657), 1, + ACTIONS(405), 1, anon_sym_LT_LT_DASH, - ACTIONS(677), 1, + ACTIONS(427), 1, sym__assignment_name, - ACTIONS(679), 1, + ACTIONS(429), 1, sym__file_descriptor, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3499), 1, sym_word, - ACTIONS(3405), 1, + ACTIONS(3501), 1, aux_sym_brace_expression_token1, - ACTIONS(3409), 1, + ACTIONS(3505), 1, anon_sym_DOLLAR, - ACTIONS(3411), 1, + ACTIONS(3507), 1, anon_sym_DQUOTE, - ACTIONS(3413), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3415), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, + ACTIONS(3513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3419), 1, + ACTIONS(3515), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3423), 1, + ACTIONS(3519), 1, sym__backtick_open, - ACTIONS(3425), 1, + ACTIONS(3521), 1, sym__dollar_literal, - ACTIONS(3427), 1, + ACTIONS(3523), 1, sym__brace_expr_start, - STATE(1717), 1, + STATE(1763), 1, sym_string, - STATE(1894), 1, + STATE(1851), 1, sym_heredoc_redirect, - STATE(3611), 1, + STATE(3539), 1, sym__word_part, - ACTIONS(3421), 2, + ACTIONS(2488), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3517), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1858), 2, + STATE(1667), 2, sym_simple_expansion, sym_expansion, - STATE(1871), 2, + STATE(1777), 2, sym_brace_expression, sym__expression, - ACTIONS(651), 3, + ACTIONS(399), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2445), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - ACTIONS(3407), 3, + ACTIONS(3503), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2443), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, STATE(727), 5, sym_variable_assignment, sym_redirect, sym__word_like, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1723), 5, + STATE(1652), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(653), 7, + ACTIONS(401), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87076,163 +87920,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [40420] = 28, + ACTIONS(2486), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [40574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, + ACTIONS(1106), 1, + sym__backtick_close, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, - anon_sym_DOLLAR, - ACTIONS(3268), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(3270), 1, sym_raw_string, - ACTIONS(3274), 1, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(3433), 1, - anon_sym_RBRACE, - ACTIONS(3437), 1, - sym_variable_name, - STATE(1113), 1, - sym_subscript, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3264), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3282), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3431), 2, + ACTIONS(1084), 30, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3439), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - STATE(1114), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3429), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3435), 13, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [40533] = 23, - ACTIONS(2007), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [40640] = 29, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3441), 1, + ACTIONS(3525), 1, sym_word, - ACTIONS(3444), 1, - anon_sym_LPAREN, - ACTIONS(3446), 1, + ACTIONS(3534), 1, + anon_sym_LT_LT, + ACTIONS(3537), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3540), 1, aux_sym_brace_expression_token1, - ACTIONS(3452), 1, + ACTIONS(3546), 1, anon_sym_DOLLAR, - ACTIONS(3455), 1, + ACTIONS(3549), 1, anon_sym_DQUOTE, - ACTIONS(3458), 1, + ACTIONS(3552), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3461), 1, + ACTIONS(3555), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3464), 1, + ACTIONS(3558), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3467), 1, + ACTIONS(3561), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3473), 1, + ACTIONS(3567), 1, + sym__assignment_name, + ACTIONS(3570), 1, + sym__file_descriptor, + ACTIONS(3573), 1, sym__backtick_open, - ACTIONS(3476), 1, + ACTIONS(3576), 1, sym__dollar_literal, - ACTIONS(3479), 1, + ACTIONS(3579), 1, sym__brace_expr_start, - STATE(1470), 1, + STATE(1655), 1, sym_string, - STATE(3586), 1, + STATE(1858), 1, + sym_heredoc_redirect, + STATE(3533), 1, sym__word_part, - ACTIONS(3470), 2, + ACTIONS(3564), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1401), 2, - sym_brace_expression, - sym__expression, - STATE(1486), 2, + STATE(1672), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3449), 3, + STATE(1779), 2, + sym_brace_expression, + sym__expression, + ACTIONS(2373), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_done, + ACTIONS(3528), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3543), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1574), 3, - sym_array, + STATE(725), 5, + sym_variable_assignment, + sym_redirect, sym__word_like, sym_concatenation, - STATE(1471), 5, + aux_sym_declaration_command_repeat1, + STATE(1656), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2984), 9, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(2982), 15, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(2371), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + ACTIONS(3531), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87240,423 +88077,472 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [40636] = 27, - ACTIONS(3), 1, + [40756] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3377), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3387), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3391), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3393), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, - sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(3399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(3401), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(3403), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(3407), 1, + sym__file_descriptor, + ACTIONS(3409), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(3411), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(3413), 1, sym__brace_expr_start, - ACTIONS(3488), 1, - anon_sym_RBRACE, - ACTIONS(3491), 1, - sym_variable_name, - STATE(963), 1, - sym_subscript, - STATE(1935), 1, + ACTIONS(3456), 1, + sym_number, + STATE(2104), 1, sym_string, - STATE(3558), 1, + STATE(2168), 1, + sym_heredoc_redirect, + STATE(3523), 1, sym__word_part, - ACTIONS(3212), 2, - sym_number, + ACTIONS(3395), 2, + sym_raw_string, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(3405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3493), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, + STATE(2000), 2, + sym__word_like, + sym_concatenation, + STATE(2001), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2100), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(2109), 2, sym_simple_expansion, sym_expansion, - STATE(964), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3482), 5, - anon_sym_SEMI, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(2778), 5, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + STATE(2108), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3485), 15, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [40747] = 27, - ACTIONS(3), 1, + ACTIONS(2776), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [40874] = 29, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3582), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3591), 1, + anon_sym_LT_LT, + ACTIONS(3594), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3597), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3603), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3606), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, - sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3609), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(3612), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(3615), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(3618), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(3624), 1, + sym__assignment_name, + ACTIONS(3627), 1, + sym__file_descriptor, + ACTIONS(3630), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(3633), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(3636), 1, sym__brace_expr_start, - ACTIONS(3501), 1, - anon_sym_RBRACE, - ACTIONS(3504), 1, - sym_variable_name, - STATE(1116), 1, - sym_subscript, - STATE(1935), 1, + STATE(1763), 1, sym_string, - STATE(3558), 1, + STATE(1851), 1, + sym_heredoc_redirect, + STATE(3539), 1, sym__word_part, - ACTIONS(3212), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(2373), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3621), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3506), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1667), 2, sym_simple_expansion, sym_expansion, - STATE(1117), 3, + STATE(1777), 2, + sym_brace_expression, + sym__expression, + ACTIONS(3585), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3600), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(727), 5, + sym_variable_assignment, + sym_redirect, sym__word_like, sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3495), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + aux_sym_declaration_command_repeat1, + STATE(1652), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3498), 15, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [40858] = 28, - ACTIONS(3), 1, + ACTIONS(2371), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3588), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [40990] = 29, + ACTIONS(593), 1, + anon_sym_LT_LT, + ACTIONS(595), 1, + anon_sym_LT_LT_DASH, + ACTIONS(617), 1, + sym__assignment_name, + ACTIONS(619), 1, + sym__file_descriptor, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(3271), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(3273), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, - sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(3287), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(3291), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(3293), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(3295), 1, sym__brace_expr_start, - ACTIONS(3512), 1, - anon_sym_RBRACE, - ACTIONS(3516), 1, - sym_variable_name, - STATE(1122), 1, - sym_subscript, - STATE(1935), 1, + STATE(1655), 1, sym_string, - STATE(3558), 1, + STATE(1858), 1, + sym_heredoc_redirect, + STATE(3533), 1, sym__word_part, - ACTIONS(3264), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(3289), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3510), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3518), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1672), 2, sym_simple_expansion, sym_expansion, - STATE(1123), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3508), 5, - anon_sym_SEMI, + STATE(1779), 2, + sym_brace_expression, + sym__expression, + ACTIONS(589), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(2342), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + anon_sym_done, + ACTIONS(3275), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(706), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1656), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3514), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [40971] = 27, + ACTIONS(2340), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(591), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [41106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, - sym_word, - ACTIONS(3209), 1, + ACTIONS(1096), 1, + sym__backtick_close, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, - anon_sym_DOLLAR, - ACTIONS(3218), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(3221), 1, sym_raw_string, - ACTIONS(3226), 1, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1084), 30, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [41172] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1082), 1, + sym__backtick_close, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(3244), 1, sym__dollar_literal, - ACTIONS(3247), 1, sym__brace_expr_start, - ACTIONS(3526), 1, - anon_sym_RBRACE, - ACTIONS(3529), 1, - sym_variable_name, - STATE(1125), 1, - sym_subscript, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3212), 2, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, + sym_raw_string, sym_ansi_c_string, - ACTIONS(3238), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3531), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - STATE(1126), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3520), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3523), 15, + ACTIONS(1084), 30, anon_sym_BANG, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [41082] = 29, - ACTIONS(333), 1, + anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(335), 1, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [41238] = 29, + ACTIONS(661), 1, + anon_sym_LT_LT, + ACTIONS(663), 1, anon_sym_LT_LT_DASH, - ACTIONS(357), 1, + ACTIONS(683), 1, sym__assignment_name, - ACTIONS(359), 1, + ACTIONS(685), 1, sym__file_descriptor, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(3639), 1, sym_word, - ACTIONS(3535), 1, + ACTIONS(3641), 1, aux_sym_brace_expression_token1, - ACTIONS(3539), 1, + ACTIONS(3645), 1, anon_sym_DOLLAR, - ACTIONS(3541), 1, + ACTIONS(3647), 1, anon_sym_DQUOTE, - ACTIONS(3543), 1, + ACTIONS(3649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3545), 1, + ACTIONS(3651), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3547), 1, + ACTIONS(3653), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3549), 1, + ACTIONS(3655), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3553), 1, + ACTIONS(3659), 1, sym__backtick_open, - ACTIONS(3555), 1, + ACTIONS(3661), 1, sym__dollar_literal, - ACTIONS(3557), 1, + ACTIONS(3663), 1, sym__brace_expr_start, - STATE(1701), 1, + STATE(1670), 1, sym_string, - STATE(1950), 1, + STATE(1866), 1, sym_heredoc_redirect, - STATE(3587), 1, + STATE(3540), 1, sym__word_part, - ACTIONS(3551), 2, + ACTIONS(3657), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1725), 2, + STATE(1693), 2, sym_simple_expansion, sym_expansion, - STATE(1861), 2, + STATE(1783), 2, sym_brace_expression, sym__expression, - ACTIONS(329), 3, + ACTIONS(657), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2122), 3, + ACTIONS(2342), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, - ACTIONS(3537), 3, + anon_sym_fi, + ACTIONS(3643), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2120), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(744), 5, + STATE(733), 5, sym_variable_assignment, sym_redirect, sym__word_like, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1703), 5, + STATE(1671), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(331), 7, + ACTIONS(2340), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(659), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -87664,592 +88550,471 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [41197] = 28, - ACTIONS(3), 1, + [41354] = 29, + ACTIONS(475), 1, + anon_sym_LT_LT, + ACTIONS(477), 1, + anon_sym_LT_LT_DASH, + ACTIONS(497), 1, + sym__assignment_name, + ACTIONS(499), 1, + sym__file_descriptor, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(3665), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(3667), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(3671), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(3673), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, - sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(3675), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(3677), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(3685), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(3687), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(3689), 1, sym__brace_expr_start, - ACTIONS(3563), 1, - anon_sym_RBRACE, - ACTIONS(3567), 1, - sym_variable_name, - STATE(1130), 1, - sym_subscript, - STATE(1935), 1, + STATE(1712), 1, sym_string, - STATE(3558), 1, + STATE(1806), 1, + sym_heredoc_redirect, + STATE(3537), 1, sym__word_part, - ACTIONS(3264), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(3683), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3561), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3569), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1724), 2, sym_simple_expansion, sym_expansion, - STATE(1131), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3559), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3565), 13, - anon_sym_EQ, + STATE(1791), 2, + sym_brace_expression, + sym__expression, + ACTIONS(471), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [41310] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3195), 1, - sym_word, - ACTIONS(3209), 1, - aux_sym_brace_expression_token1, - ACTIONS(3215), 1, - anon_sym_DOLLAR, - ACTIONS(3218), 1, - anon_sym_DQUOTE, - ACTIONS(3221), 1, - sym_raw_string, - ACTIONS(3226), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, - sym__backtick_open, - ACTIONS(3244), 1, - sym__dollar_literal, - ACTIONS(3247), 1, - sym__brace_expr_start, - ACTIONS(3577), 1, - anon_sym_RBRACE, - ACTIONS(3580), 1, - sym_variable_name, - STATE(1132), 1, - sym_subscript, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3212), 2, + anon_sym_AMP_GT, + ACTIONS(2342), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_then, + ACTIONS(3669), 3, sym_number, + sym_raw_string, sym_ansi_c_string, - ACTIONS(3238), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3582), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - STATE(1133), 3, + STATE(734), 5, + sym_variable_assignment, + sym_redirect, sym__word_like, sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3571), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + aux_sym_declaration_command_repeat1, + STATE(1714), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3574), 15, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [41421] = 28, - ACTIONS(3), 1, + ACTIONS(2340), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(473), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [41470] = 29, + ACTIONS(661), 1, + anon_sym_LT_LT, + ACTIONS(663), 1, + anon_sym_LT_LT_DASH, + ACTIONS(683), 1, + sym__assignment_name, + ACTIONS(685), 1, + sym__file_descriptor, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(3639), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(3641), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(3645), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(3647), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, - sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(3649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(3651), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(3653), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(3655), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(3659), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(3661), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(3663), 1, sym__brace_expr_start, - ACTIONS(3588), 1, - anon_sym_RBRACE, - ACTIONS(3592), 1, - sym_variable_name, - STATE(901), 1, - sym_subscript, - STATE(1935), 1, + STATE(1670), 1, sym_string, - STATE(3558), 1, + STATE(1866), 1, + sym_heredoc_redirect, + STATE(3540), 1, sym__word_part, - ACTIONS(3264), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(3657), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3586), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3594), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1693), 2, sym_simple_expansion, sym_expansion, - STATE(902), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3584), 5, - anon_sym_SEMI, + STATE(1783), 2, + sym_brace_expression, + sym__expression, + ACTIONS(657), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(2488), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + anon_sym_fi, + ACTIONS(3643), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(742), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1671), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3590), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [41534] = 27, - ACTIONS(3), 1, + ACTIONS(2486), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(659), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [41586] = 29, + ACTIONS(475), 1, + anon_sym_LT_LT, + ACTIONS(477), 1, + anon_sym_LT_LT_DASH, + ACTIONS(497), 1, + sym__assignment_name, + ACTIONS(499), 1, + sym__file_descriptor, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3665), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3667), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3671), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3673), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, - sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3675), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(3677), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(3685), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(3687), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(3689), 1, sym__brace_expr_start, - ACTIONS(3602), 1, - anon_sym_RBRACE, - ACTIONS(3605), 1, - sym_variable_name, - STATE(1040), 1, - sym_subscript, - STATE(1935), 1, + STATE(1712), 1, sym_string, - STATE(3558), 1, + STATE(1806), 1, + sym_heredoc_redirect, + STATE(3537), 1, sym__word_part, - ACTIONS(3212), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(3683), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3607), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1724), 2, sym_simple_expansion, sym_expansion, - STATE(1047), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3596), 5, - anon_sym_SEMI, + STATE(1791), 2, + sym_brace_expression, + sym__expression, + ACTIONS(471), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(2488), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + anon_sym_then, + ACTIONS(3669), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(737), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1714), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3599), 15, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [41645] = 27, + ACTIONS(2486), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(473), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [41702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, - sym_word, - ACTIONS(3209), 1, + ACTIONS(1108), 1, + anon_sym_fi, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, - anon_sym_DOLLAR, - ACTIONS(3218), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(3221), 1, sym_raw_string, - ACTIONS(3226), 1, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, - sym__backtick_open, - ACTIONS(3244), 1, - sym__dollar_literal, - ACTIONS(3247), 1, - sym__brace_expr_start, - ACTIONS(3615), 1, - anon_sym_RBRACE, - ACTIONS(3618), 1, - sym_variable_name, - STATE(903), 1, - sym_subscript, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3212), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3238), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3620), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - STATE(904), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3609), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3612), 15, + ACTIONS(1084), 30, anon_sym_BANG, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [41756] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, - anon_sym_DQUOTE, - ACTIONS(3270), 1, - sym_raw_string, - ACTIONS(3274), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + [41768] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1108), 1, + anon_sym_then, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(3286), 1, sym__dollar_literal, - ACTIONS(3288), 1, sym__brace_expr_start, - ACTIONS(3626), 1, - anon_sym_RBRACE, - ACTIONS(3630), 1, - sym_variable_name, - STATE(909), 1, - sym_subscript, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3264), 2, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, + sym_raw_string, sym_ansi_c_string, - ACTIONS(3282), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3624), 2, + ACTIONS(1084), 30, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3632), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - STATE(1135), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3622), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3628), 13, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [41869] = 29, - ACTIONS(655), 1, + anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(657), 1, - anon_sym_LT_LT_DASH, - ACTIONS(677), 1, - sym__assignment_name, - ACTIONS(679), 1, - sym__file_descriptor, - ACTIONS(2007), 1, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [41834] = 29, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3691), 1, sym_word, - ACTIONS(3405), 1, + ACTIONS(3700), 1, + anon_sym_LT_LT, + ACTIONS(3703), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3706), 1, aux_sym_brace_expression_token1, - ACTIONS(3409), 1, + ACTIONS(3712), 1, anon_sym_DOLLAR, - ACTIONS(3411), 1, + ACTIONS(3715), 1, anon_sym_DQUOTE, - ACTIONS(3413), 1, + ACTIONS(3718), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3415), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, + ACTIONS(3724), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3419), 1, + ACTIONS(3727), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3423), 1, + ACTIONS(3733), 1, + sym__assignment_name, + ACTIONS(3736), 1, + sym__file_descriptor, + ACTIONS(3739), 1, sym__backtick_open, - ACTIONS(3425), 1, + ACTIONS(3742), 1, sym__dollar_literal, - ACTIONS(3427), 1, + ACTIONS(3745), 1, sym__brace_expr_start, - STATE(1717), 1, + STATE(1712), 1, sym_string, - STATE(1894), 1, + STATE(1806), 1, sym_heredoc_redirect, - STATE(3611), 1, + STATE(3537), 1, sym__word_part, - ACTIONS(3421), 2, + ACTIONS(3730), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1858), 2, + STATE(1724), 2, sym_simple_expansion, sym_expansion, - STATE(1871), 2, + STATE(1791), 2, sym_brace_expression, sym__expression, - ACTIONS(651), 3, + ACTIONS(2373), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_then, + ACTIONS(3694), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2122), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - ACTIONS(3407), 3, + ACTIONS(3709), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(2120), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(752), 5, + STATE(737), 5, sym_variable_assignment, sym_redirect, sym__word_like, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1723), 5, + STATE(1714), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(653), 7, + ACTIONS(2371), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3697), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88257,584 +89022,521 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [41984] = 27, + [41950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, - sym_word, - ACTIONS(3209), 1, + ACTIONS(1108), 1, + anon_sym_done, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, - anon_sym_DOLLAR, - ACTIONS(3218), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(3221), 1, sym_raw_string, - ACTIONS(3226), 1, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, - sym__backtick_open, - ACTIONS(3244), 1, - sym__dollar_literal, - ACTIONS(3247), 1, - sym__brace_expr_start, - ACTIONS(3640), 1, - anon_sym_RBRACE, - ACTIONS(3643), 1, - sym_variable_name, - STATE(911), 1, - sym_subscript, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3212), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3238), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3645), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - STATE(912), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3634), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3637), 15, + ACTIONS(1084), 30, anon_sym_BANG, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [42095] = 28, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [42016] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(3748), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(3751), 1, + anon_sym_LPAREN, + ACTIONS(3753), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(3759), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(3762), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, - sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(3768), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(3771), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(3774), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(3780), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(3783), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(3786), 1, sym__brace_expr_start, - ACTIONS(3651), 1, - anon_sym_RBRACE, - ACTIONS(3655), 1, - sym_variable_name, - STATE(916), 1, - sym_subscript, - STATE(1935), 1, + STATE(1369), 1, sym_string, - STATE(3558), 1, + STATE(3535), 1, sym__word_part, - ACTIONS(3264), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(3777), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3649), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3657), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1376), 2, sym_simple_expansion, sym_expansion, - STATE(917), 3, + STATE(1451), 2, + sym_brace_expression, + sym__expression, + ACTIONS(3756), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1497), 3, + sym_array, sym__word_like, sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3647), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + STATE(1370), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3653), 13, - anon_sym_EQ, + ACTIONS(2892), 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [42208] = 27, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(2890), 16, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [42120] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, - sym_word, - ACTIONS(3209), 1, + ACTIONS(1098), 1, + anon_sym_then, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, - anon_sym_DOLLAR, - ACTIONS(3218), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(3221), 1, sym_raw_string, - ACTIONS(3226), 1, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, - sym__backtick_open, - ACTIONS(3244), 1, - sym__dollar_literal, - ACTIONS(3247), 1, - sym__brace_expr_start, - ACTIONS(3665), 1, - anon_sym_RBRACE, - ACTIONS(3668), 1, - sym_variable_name, - STATE(920), 1, - sym_subscript, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3212), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3238), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3670), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - STATE(921), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3659), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3662), 15, + ACTIONS(1084), 30, anon_sym_BANG, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [42319] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, - anon_sym_DQUOTE, - ACTIONS(3270), 1, - sym_raw_string, - ACTIONS(3274), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + [42186] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1088), 1, + anon_sym_then, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(3286), 1, sym__dollar_literal, - ACTIONS(3288), 1, sym__brace_expr_start, - ACTIONS(3676), 1, - anon_sym_RBRACE, - ACTIONS(3680), 1, - sym_variable_name, - STATE(928), 1, - sym_subscript, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3264), 2, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, + sym_raw_string, sym_ansi_c_string, - ACTIONS(3282), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3674), 2, + ACTIONS(1084), 30, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3682), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - STATE(929), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3672), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3678), 13, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [42432] = 28, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [42252] = 29, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(3789), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(3798), 1, + anon_sym_LT_LT, + ACTIONS(3801), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3804), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(3810), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(3813), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, - sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(3816), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(3819), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(3822), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(3825), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(3831), 1, + sym__assignment_name, + ACTIONS(3834), 1, + sym__file_descriptor, + ACTIONS(3837), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(3840), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(3843), 1, sym__brace_expr_start, - ACTIONS(3688), 1, - anon_sym_RBRACE, - ACTIONS(3692), 1, - sym_variable_name, - STATE(1016), 1, - sym_subscript, - STATE(1935), 1, + STATE(1670), 1, sym_string, - STATE(3558), 1, + STATE(1866), 1, + sym_heredoc_redirect, + STATE(3540), 1, sym__word_part, - ACTIONS(3264), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(3828), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3686), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3694), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1693), 2, sym_simple_expansion, sym_expansion, - STATE(1021), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3684), 5, - anon_sym_SEMI, + STATE(1783), 2, + sym_brace_expression, + sym__expression, + ACTIONS(2373), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + anon_sym_fi, + ACTIONS(3792), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3807), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(742), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1671), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3690), 13, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [42545] = 27, - ACTIONS(3), 1, + ACTIONS(2371), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3795), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [42368] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3751), 1, + anon_sym_LPAREN, + ACTIONS(3846), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3849), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3855), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3858), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, - sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3861), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(3864), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(3867), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(3870), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(3876), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(3879), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(3882), 1, sym__brace_expr_start, - ACTIONS(3702), 1, - anon_sym_RBRACE, - ACTIONS(3705), 1, - sym_variable_name, - STATE(931), 1, - sym_subscript, - STATE(1935), 1, + STATE(1369), 1, sym_string, - STATE(3558), 1, + STATE(3535), 1, sym__word_part, - ACTIONS(3212), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(3873), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3707), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1376), 2, sym_simple_expansion, sym_expansion, - STATE(932), 3, + STATE(1451), 2, + sym_brace_expression, + sym__expression, + ACTIONS(3852), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1613), 3, + sym_array, sym__word_like, sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3696), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + STATE(1370), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3699), 15, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(2937), 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [42656] = 30, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3290), 1, - sym_word, - ACTIONS(3296), 1, + anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2935), 16, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + [42472] = 29, + ACTIONS(311), 1, + anon_sym_LT_LT, + ACTIONS(313), 1, + anon_sym_LT_LT_DASH, + ACTIONS(333), 1, + sym__assignment_name, + ACTIONS(335), 1, + sym__file_descriptor, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3885), 1, + sym_word, + ACTIONS(3887), 1, aux_sym_brace_expression_token1, - ACTIONS(3304), 1, + ACTIONS(3891), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(3893), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(3895), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(3897), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(3899), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(3901), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, - sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(3905), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(3907), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(3909), 1, sym__brace_expr_start, - ACTIONS(3709), 1, - sym_number, - STATE(2153), 1, + STATE(1740), 1, sym_string, - STATE(2283), 1, + STATE(1837), 1, sym_heredoc_redirect, - STATE(3605), 1, + STATE(3515), 1, sym__word_part, - ACTIONS(2841), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3308), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(3903), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2085), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2086), 2, - sym__word_like, - sym_concatenation, - STATE(2155), 2, + STATE(1748), 2, sym_simple_expansion, sym_expansion, - STATE(2193), 2, + STATE(1801), 2, sym_brace_expression, sym__expression, - ACTIONS(3292), 3, + ACTIONS(307), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2154), 5, + ACTIONS(2342), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_do, + ACTIONS(3889), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(746), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1741), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, + ACTIONS(2340), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(309), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88842,256 +89544,447 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(2839), 8, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - [42773] = 28, + [42588] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, + ACTIONS(1098), 1, + anon_sym_fi, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, - anon_sym_DOLLAR, - ACTIONS(3268), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(3270), 1, sym_raw_string, - ACTIONS(3274), 1, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(3715), 1, - anon_sym_RBRACE, - ACTIONS(3719), 1, - sym_variable_name, - STATE(936), 1, - sym_subscript, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3264), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3282), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3713), 2, + ACTIONS(1084), 30, anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3721), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - STATE(937), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3711), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3717), 13, - anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [42886] = 27, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [42654] = 29, + ACTIONS(311), 1, + anon_sym_LT_LT, + ACTIONS(313), 1, + anon_sym_LT_LT_DASH, + ACTIONS(333), 1, + sym__assignment_name, + ACTIONS(335), 1, + sym__file_descriptor, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3885), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3887), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3891), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3893), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, - sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3895), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(3897), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(3899), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(3901), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(3905), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(3907), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(3909), 1, sym__brace_expr_start, - ACTIONS(3729), 1, - anon_sym_RBRACE, - ACTIONS(3732), 1, - sym_variable_name, - STATE(940), 1, - sym_subscript, - STATE(1935), 1, + STATE(1740), 1, sym_string, - STATE(3558), 1, + STATE(1837), 1, + sym_heredoc_redirect, + STATE(3515), 1, sym__word_part, - ACTIONS(3212), 2, - sym_number, - sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(3903), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3734), 2, - sym_special_variable, - aux_sym_expansion_token1, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1748), 2, sym_simple_expansion, sym_expansion, - STATE(941), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - ACTIONS(3723), 5, - anon_sym_SEMI, + STATE(1801), 2, + sym_brace_expression, + sym__expression, + ACTIONS(307), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(2488), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - STATE(1937), 5, + anon_sym_do, + ACTIONS(3889), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(748), 5, + sym_variable_assignment, + sym_redirect, + sym__word_like, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1741), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3726), 15, + ACTIONS(2486), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(309), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [42770] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1108), 1, + anon_sym_do, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1084), 30, anon_sym_BANG, - anon_sym_EQ, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - anon_sym_AT, - [42997] = 23, - ACTIONS(2007), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [42836] = 29, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3444), 1, - anon_sym_LPAREN, - ACTIONS(3736), 1, + ACTIONS(3911), 1, sym_word, - ACTIONS(3739), 1, + ACTIONS(3920), 1, + anon_sym_LT_LT, + ACTIONS(3923), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3926), 1, aux_sym_brace_expression_token1, - ACTIONS(3745), 1, + ACTIONS(3932), 1, anon_sym_DOLLAR, - ACTIONS(3748), 1, + ACTIONS(3935), 1, anon_sym_DQUOTE, - ACTIONS(3751), 1, + ACTIONS(3938), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3754), 1, + ACTIONS(3941), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3757), 1, + ACTIONS(3944), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3760), 1, + ACTIONS(3947), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3766), 1, + ACTIONS(3953), 1, + sym__assignment_name, + ACTIONS(3956), 1, + sym__file_descriptor, + ACTIONS(3959), 1, sym__backtick_open, - ACTIONS(3769), 1, + ACTIONS(3962), 1, sym__dollar_literal, - ACTIONS(3772), 1, + ACTIONS(3965), 1, sym__brace_expr_start, - STATE(1470), 1, + STATE(1740), 1, sym_string, - STATE(3586), 1, + STATE(1837), 1, + sym_heredoc_redirect, + STATE(3515), 1, sym__word_part, - ACTIONS(3763), 2, + ACTIONS(3950), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1401), 2, - sym_brace_expression, - sym__expression, - STATE(1486), 2, + STATE(1748), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3742), 3, + STATE(1801), 2, + sym_brace_expression, + sym__expression, + ACTIONS(2373), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_do, + ACTIONS(3914), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3929), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1578), 3, - sym_array, + STATE(748), 5, + sym_variable_assignment, + sym_redirect, sym__word_like, sym_concatenation, - STATE(1471), 5, + aux_sym_declaration_command_repeat1, + STATE(1741), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3029), 9, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2371), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3917), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [42952] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1088), 1, anon_sym_fi, - anon_sym_elif, - anon_sym_else, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1084), 30, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(3027), 15, - sym__assignment_name, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [43018] = 30, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3377), 1, + sym_word, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3387), 1, + aux_sym_brace_expression_token1, + ACTIONS(3391), 1, + anon_sym_DOLLAR, + ACTIONS(3393), 1, + anon_sym_DQUOTE, + ACTIONS(3397), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3399), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3401), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3403), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3407), 1, sym__file_descriptor, + ACTIONS(3409), 1, + sym__backtick_open, + ACTIONS(3411), 1, + sym__dollar_literal, + ACTIONS(3413), 1, + sym__brace_expr_start, + ACTIONS(3458), 1, + sym_number, + STATE(2104), 1, + sym_string, + STATE(2168), 1, + sym_heredoc_redirect, + STATE(3523), 1, + sym__word_part, + ACTIONS(3395), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3405), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2005), 2, + sym__word_like, + sym_concatenation, + STATE(2012), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2100), 2, + sym_brace_expression, + sym__expression, + STATE(2109), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(2977), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + STATE(2108), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2975), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89099,79 +89992,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [43100] = 28, + [43136] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(3977), 1, + anon_sym_RBRACE, + ACTIONS(3980), 1, + sym_variable_name, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(3779), 1, - anon_sym_RBRACE, - ACTIONS(3783), 1, - sym_variable_name, - STATE(945), 1, + STATE(1166), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3777), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3785), 2, + ACTIONS(3997), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(946), 3, + STATE(940), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(3775), 5, + ACTIONS(3971), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3781), 13, + ACTIONS(3974), 15, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89184,76 +90074,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, + anon_sym_POUND, anon_sym_AT, - [43213] = 27, + [43247] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(3793), 1, + ACTIONS(4029), 1, anon_sym_RBRACE, - ACTIONS(3796), 1, + ACTIONS(4032), 1, sym_variable_name, - STATE(950), 1, + STATE(997), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3798), 2, + ACTIONS(4034), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(951), 3, + STATE(998), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(3787), 5, + ACTIONS(4023), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3790), 15, + ACTIONS(4026), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -89269,164 +90160,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [43324] = 29, - ACTIONS(561), 1, - anon_sym_LT_LT, - ACTIONS(563), 1, - anon_sym_LT_LT_DASH, - ACTIONS(583), 1, - sym__assignment_name, - ACTIONS(585), 1, - sym__file_descriptor, - ACTIONS(2007), 1, + [43358] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(3800), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3802), 1, + ACTIONS(4042), 1, + anon_sym_RBRACE, + ACTIONS(4046), 1, + sym_variable_name, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3806), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3808), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3810), 1, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3812), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3814), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3816), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3820), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3822), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3824), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - STATE(1832), 1, + STATE(1004), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(1933), 1, - sym_heredoc_redirect, - STATE(3615), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3818), 2, + ACTIONS(4040), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4050), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4058), 2, + sym_special_variable, + aux_sym_expansion_token1, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1762), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1839), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(557), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2122), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - ACTIONS(3804), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2120), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(763), 5, - sym_variable_assignment, - sym_redirect, + STATE(1005), 3, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1833), 5, + aux_sym__expansion_tail, + ACTIONS(4038), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(559), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [43439] = 28, + ACTIONS(4044), 13, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [43471] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(3830), 1, + ACTIONS(4082), 1, anon_sym_RBRACE, - ACTIONS(3834), 1, + ACTIONS(4085), 1, sym_variable_name, - STATE(907), 1, + STATE(1009), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3828), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3836), 2, + ACTIONS(4087), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(908), 3, + STATE(1010), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(3826), 5, + ACTIONS(4076), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3832), 13, + ACTIONS(4079), 15, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89439,79 +90327,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, + anon_sym_POUND, anon_sym_AT, - [43552] = 28, + [43582] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(3842), 1, + ACTIONS(4093), 1, anon_sym_RBRACE, - ACTIONS(3846), 1, + ACTIONS(4097), 1, sym_variable_name, - STATE(956), 1, + STATE(964), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3840), 2, + ACTIONS(4091), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(3848), 2, + ACTIONS(4099), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(957), 3, + STATE(967), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(3838), 5, + ACTIONS(4089), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3844), 13, + ACTIONS(4095), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89525,75 +90414,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [43665] = 27, + [43695] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(3856), 1, + ACTIONS(4107), 1, anon_sym_RBRACE, - ACTIONS(3859), 1, + ACTIONS(4110), 1, sym_variable_name, - STATE(959), 1, + STATE(1042), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3861), 2, + ACTIONS(4112), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(960), 3, + STATE(1043), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(3850), 5, + ACTIONS(4101), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3853), 15, + ACTIONS(4104), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -89609,85 +90498,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [43776] = 29, - ACTIONS(2007), 1, + [43806] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(3863), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3872), 1, - anon_sym_LT_LT, - ACTIONS(3875), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3878), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3884), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3887), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3890), 1, + ACTIONS(3994), 1, + sym_raw_string, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3893), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3896), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3899), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3905), 1, - sym__assignment_name, - ACTIONS(3908), 1, - sym__file_descriptor, - ACTIONS(3911), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3914), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3917), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - STATE(1701), 1, + ACTIONS(4120), 1, + anon_sym_RBRACE, + ACTIONS(4123), 1, + sym_variable_name, + STATE(975), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(1950), 1, - sym_heredoc_redirect, - STATE(3587), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3902), 2, + ACTIONS(3985), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1725), 2, - sym_simple_expansion, - sym_expansion, - STATE(1861), 2, + ACTIONS(4125), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - ACTIONS(2155), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, - ACTIONS(3866), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(3881), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2153), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(744), 5, - sym_variable_assignment, - sym_redirect, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(977), 3, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1703), 5, + aux_sym__expansion_tail, + ACTIONS(4114), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3869), 7, + ACTIONS(4117), 15, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [43917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1086), 25, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + sym_shebang, + anon_sym_LPAREN_LPAREN, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -89695,78 +90600,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [43891] = 28, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1084), 30, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_if, + anon_sym_case, + anon_sym_for, + anon_sym_select, + anon_sym_while, + anon_sym_until, + anon_sym_return, + anon_sym_break, + anon_sym_continue, + anon_sym_function, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_eval, + anon_sym_alias, + anon_sym_let, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + anon_sym_LBRACK_LBRACK, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + [43980] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(3924), 1, + ACTIONS(4131), 1, anon_sym_RBRACE, - ACTIONS(3928), 1, + ACTIONS(4135), 1, sym_variable_name, - STATE(967), 1, + STATE(994), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3922), 2, + ACTIONS(4129), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(3930), 2, + ACTIONS(4137), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(968), 3, + STATE(996), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(3920), 5, + ACTIONS(4127), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3926), 13, + ACTIONS(4133), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89780,76 +90727,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [44004] = 27, + [44093] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(3938), 1, + ACTIONS(4143), 1, anon_sym_RBRACE, - ACTIONS(3941), 1, + ACTIONS(4147), 1, sym_variable_name, - STATE(971), 1, + STATE(1025), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3943), 2, + ACTIONS(4141), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4149), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(972), 3, + STATE(1027), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(3932), 5, + ACTIONS(4139), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3935), 15, - anon_sym_BANG, + ACTIONS(4145), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89862,80 +90811,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, anon_sym_AT, - [44115] = 28, + [44206] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(3949), 1, + ACTIONS(4155), 1, anon_sym_RBRACE, - ACTIONS(3953), 1, + ACTIONS(4159), 1, sym_variable_name, - STATE(976), 1, + STATE(956), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3947), 2, + ACTIONS(4153), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(3955), 2, + ACTIONS(4161), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(977), 3, + STATE(969), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(3945), 5, + ACTIONS(4151), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3951), 13, + ACTIONS(4157), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -89949,78 +90897,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [44228] = 28, + [44319] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(3961), 1, + ACTIONS(4169), 1, anon_sym_RBRACE, - ACTIONS(3965), 1, + ACTIONS(4172), 1, sym_variable_name, - STATE(1011), 1, + STATE(1017), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3959), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3967), 2, + ACTIONS(4174), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1013), 3, + STATE(1024), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(3957), 5, + ACTIONS(4163), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3963), 13, + ACTIONS(4166), 15, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90033,79 +90979,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, + anon_sym_POUND, anon_sym_AT, - [44341] = 28, + [44430] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(3973), 1, + ACTIONS(4182), 1, anon_sym_RBRACE, - ACTIONS(3977), 1, + ACTIONS(4185), 1, sym_variable_name, - STATE(987), 1, + STATE(1034), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3971), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(3979), 2, + ACTIONS(4187), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(988), 3, + STATE(1035), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(3969), 5, + ACTIONS(4176), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3975), 13, + ACTIONS(4179), 15, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90118,76 +91063,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, + anon_sym_POUND, anon_sym_AT, - [44454] = 27, + [44541] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(3987), 1, + ACTIONS(4195), 1, anon_sym_RBRACE, - ACTIONS(3990), 1, + ACTIONS(4198), 1, sym_variable_name, - STATE(990), 1, + STATE(1006), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3992), 2, + ACTIONS(4200), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(991), 3, + STATE(1008), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(3981), 5, + ACTIONS(4189), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3984), 15, + ACTIONS(4192), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -90203,78 +91149,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [44565] = 28, + [44652] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(3998), 1, + ACTIONS(4206), 1, anon_sym_RBRACE, - ACTIONS(4002), 1, + ACTIONS(4210), 1, sym_variable_name, - STATE(994), 1, + STATE(1022), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3996), 2, + ACTIONS(4204), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4004), 2, + ACTIONS(4212), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(995), 3, + STATE(1023), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(3994), 5, + ACTIONS(4202), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4000), 13, + ACTIONS(4208), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90288,164 +91234,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [44678] = 29, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(4006), 1, - sym_word, - ACTIONS(4015), 1, - anon_sym_LT_LT, - ACTIONS(4018), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4021), 1, - aux_sym_brace_expression_token1, - ACTIONS(4027), 1, - anon_sym_DOLLAR, - ACTIONS(4030), 1, - anon_sym_DQUOTE, - ACTIONS(4033), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4036), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4039), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4042), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4048), 1, - sym__assignment_name, - ACTIONS(4051), 1, - sym__file_descriptor, - ACTIONS(4054), 1, - sym__backtick_open, - ACTIONS(4057), 1, - sym__dollar_literal, - ACTIONS(4060), 1, - sym__brace_expr_start, - STATE(1717), 1, - sym_string, - STATE(1894), 1, - sym_heredoc_redirect, - STATE(3611), 1, - sym__word_part, - ACTIONS(4045), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1858), 2, - sym_simple_expansion, - sym_expansion, - STATE(1871), 2, - sym_brace_expression, - sym__expression, - ACTIONS(2155), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - ACTIONS(4009), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(4024), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2153), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(752), 5, - sym_variable_assignment, - sym_redirect, - sym__word_like, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1723), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(4012), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [44793] = 28, + [44765] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4067), 1, + ACTIONS(4218), 1, anon_sym_RBRACE, - ACTIONS(4071), 1, + ACTIONS(4222), 1, sym_variable_name, - STATE(1003), 1, + STATE(1096), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4065), 2, + ACTIONS(4216), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4073), 2, + ACTIONS(4224), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1004), 3, + STATE(1110), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4063), 5, + ACTIONS(4214), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4069), 13, + ACTIONS(4220), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90459,75 +91319,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [44906] = 27, + [44878] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4081), 1, + ACTIONS(4232), 1, anon_sym_RBRACE, - ACTIONS(4084), 1, + ACTIONS(4235), 1, sym_variable_name, - STATE(1006), 1, + STATE(1117), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4086), 2, + ACTIONS(4237), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1007), 3, + STATE(1130), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4075), 5, + ACTIONS(4226), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4078), 15, + ACTIONS(4229), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -90543,78 +91403,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [45017] = 28, + [44989] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4092), 1, + ACTIONS(4243), 1, anon_sym_RBRACE, - ACTIONS(4096), 1, + ACTIONS(4247), 1, sym_variable_name, - STATE(1014), 1, + STATE(1038), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4090), 2, + ACTIONS(4241), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4098), 2, + ACTIONS(4249), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1015), 3, + STATE(1047), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4088), 5, + ACTIONS(4239), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4094), 13, + ACTIONS(4245), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90628,75 +91488,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [45130] = 27, + [45102] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4106), 1, + ACTIONS(4257), 1, anon_sym_RBRACE, - ACTIONS(4109), 1, + ACTIONS(4260), 1, sym_variable_name, - STATE(915), 1, + STATE(1028), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4111), 2, + ACTIONS(4262), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(919), 3, + STATE(1029), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4100), 5, + ACTIONS(4251), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4103), 15, + ACTIONS(4254), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -90712,75 +91572,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [45241] = 27, + [45213] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4119), 1, + ACTIONS(4270), 1, anon_sym_RBRACE, - ACTIONS(4122), 1, + ACTIONS(4273), 1, sym_variable_name, - STATE(1017), 1, + STATE(1069), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4124), 2, + ACTIONS(4275), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1018), 3, + STATE(1076), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4113), 5, + ACTIONS(4264), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4116), 15, + ACTIONS(4267), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -90796,78 +91656,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [45352] = 28, + [45324] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4130), 1, + ACTIONS(4281), 1, anon_sym_RBRACE, - ACTIONS(4134), 1, + ACTIONS(4285), 1, sym_variable_name, - STATE(1024), 1, + STATE(1045), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4128), 2, + ACTIONS(4279), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4136), 2, + ACTIONS(4287), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1025), 3, + STATE(1046), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4126), 5, + ACTIONS(4277), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4132), 13, + ACTIONS(4283), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -90881,75 +91741,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [45465] = 27, + [45437] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4144), 1, + ACTIONS(4295), 1, anon_sym_RBRACE, - ACTIONS(4147), 1, + ACTIONS(4298), 1, sym_variable_name, - STATE(1027), 1, + STATE(1051), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4149), 2, + ACTIONS(4300), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1028), 3, + STATE(1052), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4138), 5, + ACTIONS(4289), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4141), 15, + ACTIONS(4292), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -90965,78 +91825,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [45576] = 28, + [45548] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4155), 1, + ACTIONS(4306), 1, anon_sym_RBRACE, - ACTIONS(4159), 1, + ACTIONS(4310), 1, sym_variable_name, - STATE(1034), 1, + STATE(1056), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4153), 2, + ACTIONS(4304), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4161), 2, + ACTIONS(4312), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1035), 3, + STATE(1057), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4151), 5, + ACTIONS(4302), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4157), 13, + ACTIONS(4308), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91050,76 +91910,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [45689] = 27, + [45661] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4169), 1, + ACTIONS(4318), 1, anon_sym_RBRACE, - ACTIONS(4172), 1, + ACTIONS(4322), 1, sym_variable_name, - STATE(1036), 1, + STATE(1066), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4174), 2, + ACTIONS(4316), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4324), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1037), 3, + STATE(1067), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4163), 5, + ACTIONS(4314), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4166), 15, - anon_sym_BANG, + ACTIONS(4320), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91132,80 +91994,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, anon_sym_AT, - [45800] = 28, + [45774] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4180), 1, + ACTIONS(4332), 1, anon_sym_RBRACE, - ACTIONS(4184), 1, + ACTIONS(4335), 1, sym_variable_name, - STATE(1044), 1, + STATE(1167), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4178), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(4186), 2, + ACTIONS(4337), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1045), 3, + STATE(1062), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4176), 5, + ACTIONS(4326), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4182), 13, + ACTIONS(4329), 15, + anon_sym_BANG, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91218,162 +92077,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, + anon_sym_POUND, anon_sym_AT, - [45913] = 29, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(4188), 1, - sym_word, - ACTIONS(4197), 1, - anon_sym_LT_LT, - ACTIONS(4200), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4203), 1, - aux_sym_brace_expression_token1, - ACTIONS(4209), 1, - anon_sym_DOLLAR, - ACTIONS(4212), 1, - anon_sym_DQUOTE, - ACTIONS(4215), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4218), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4221), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4224), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4230), 1, - sym__assignment_name, - ACTIONS(4233), 1, - sym__file_descriptor, - ACTIONS(4236), 1, - sym__backtick_open, - ACTIONS(4239), 1, - sym__dollar_literal, - ACTIONS(4242), 1, - sym__brace_expr_start, - STATE(1832), 1, - sym_string, - STATE(1933), 1, - sym_heredoc_redirect, - STATE(3615), 1, - sym__word_part, - ACTIONS(4227), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1762), 2, - sym_brace_expression, - sym__expression, - STATE(1839), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(2155), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - ACTIONS(4191), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(4206), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2153), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(763), 5, - sym_variable_assignment, - sym_redirect, - sym__word_like, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1833), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(4194), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [46028] = 27, + [45885] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4251), 1, + ACTIONS(4345), 1, anon_sym_RBRACE, - ACTIONS(4254), 1, + ACTIONS(4348), 1, sym_variable_name, - STATE(1048), 1, + STATE(1071), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4256), 2, + ACTIONS(4350), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1049), 3, + STATE(1072), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4245), 5, + ACTIONS(4339), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4248), 15, + ACTIONS(4342), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -91389,164 +92163,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [46139] = 29, - ACTIONS(561), 1, - anon_sym_LT_LT, - ACTIONS(563), 1, - anon_sym_LT_LT_DASH, - ACTIONS(583), 1, - sym__assignment_name, - ACTIONS(585), 1, - sym__file_descriptor, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3800), 1, - sym_word, - ACTIONS(3802), 1, - aux_sym_brace_expression_token1, - ACTIONS(3806), 1, - anon_sym_DOLLAR, - ACTIONS(3808), 1, - anon_sym_DQUOTE, - ACTIONS(3810), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3812), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3814), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3816), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3820), 1, - sym__backtick_open, - ACTIONS(3822), 1, - sym__dollar_literal, - ACTIONS(3824), 1, - sym__brace_expr_start, - STATE(1832), 1, - sym_string, - STATE(1933), 1, - sym_heredoc_redirect, - STATE(3615), 1, - sym__word_part, - ACTIONS(3818), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1762), 2, - sym_brace_expression, - sym__expression, - STATE(1839), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(557), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2445), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - ACTIONS(3804), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2443), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(740), 5, - sym_variable_assignment, - sym_redirect, - sym__word_like, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1833), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(559), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [46254] = 28, + [45996] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4262), 1, + ACTIONS(4356), 1, anon_sym_RBRACE, - ACTIONS(4266), 1, + ACTIONS(4360), 1, sym_variable_name, - STATE(1054), 1, + STATE(1084), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4260), 2, + ACTIONS(4354), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4268), 2, + ACTIONS(4362), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1055), 3, + STATE(1085), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4258), 5, + ACTIONS(4352), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4264), 13, + ACTIONS(4358), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91560,75 +92248,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [46367] = 27, + [46109] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4276), 1, + ACTIONS(4370), 1, anon_sym_RBRACE, - ACTIONS(4279), 1, + ACTIONS(4373), 1, sym_variable_name, - STATE(1057), 1, + STATE(1088), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4281), 2, + ACTIONS(4375), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1058), 3, + STATE(1090), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4270), 5, + ACTIONS(4364), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4273), 15, + ACTIONS(4367), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -91644,78 +92332,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [46478] = 28, + [46220] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4287), 1, + ACTIONS(4381), 1, anon_sym_RBRACE, - ACTIONS(4291), 1, + ACTIONS(4385), 1, sym_variable_name, - STATE(1064), 1, + STATE(961), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4285), 2, + ACTIONS(4379), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4293), 2, + ACTIONS(4387), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1065), 3, + STATE(963), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4283), 5, + ACTIONS(4377), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4289), 13, + ACTIONS(4383), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91729,75 +92417,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [46591] = 27, + [46333] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4301), 1, + ACTIONS(4395), 1, anon_sym_RBRACE, - ACTIONS(4304), 1, + ACTIONS(4398), 1, sym_variable_name, - STATE(1067), 1, + STATE(944), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4306), 2, + ACTIONS(4400), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1068), 3, + STATE(1016), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4295), 5, + ACTIONS(4389), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4298), 15, + ACTIONS(4392), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -91813,78 +92501,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [46702] = 28, + [46444] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4312), 1, + ACTIONS(4406), 1, anon_sym_RBRACE, - ACTIONS(4316), 1, + ACTIONS(4410), 1, sym_variable_name, - STATE(1074), 1, + STATE(1101), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4310), 2, + ACTIONS(4404), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4318), 2, + ACTIONS(4412), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1075), 3, + STATE(1102), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4308), 5, + ACTIONS(4402), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4314), 13, + ACTIONS(4408), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91898,76 +92586,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [46815] = 27, + [46557] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4326), 1, + ACTIONS(4418), 1, anon_sym_RBRACE, - ACTIONS(4329), 1, + ACTIONS(4422), 1, sym_variable_name, - STATE(1077), 1, + STATE(1078), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4331), 2, + ACTIONS(4416), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4424), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1078), 3, + STATE(1079), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4320), 5, + ACTIONS(4414), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4323), 15, - anon_sym_BANG, + ACTIONS(4420), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -91980,80 +92670,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, anon_sym_AT, - [46926] = 28, + [46670] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4337), 1, + ACTIONS(4430), 1, anon_sym_RBRACE, - ACTIONS(4341), 1, + ACTIONS(4434), 1, sym_variable_name, - STATE(1084), 1, + STATE(933), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4335), 2, + ACTIONS(4428), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4343), 2, + ACTIONS(4436), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1085), 3, + STATE(938), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4333), 5, + ACTIONS(4426), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4339), 13, + ACTIONS(4432), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92067,155 +92756,328 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [47039] = 23, - ACTIONS(2007), 1, + [46783] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(4345), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(4348), 1, - anon_sym_LPAREN, - ACTIONS(4350), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(4356), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(4359), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(4362), 1, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4365), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4368), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4371), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4377), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(4380), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(4383), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - STATE(1429), 1, + ACTIONS(4442), 1, + anon_sym_RBRACE, + ACTIONS(4446), 1, + sym_variable_name, + STATE(1128), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(3590), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(4374), 2, + ACTIONS(4050), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1428), 2, + ACTIONS(4440), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4448), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1458), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(4353), 3, - sym_number, + STATE(1151), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + ACTIONS(4438), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(4444), 13, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [46896] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3968), 1, + sym_word, + ACTIONS(3982), 1, + aux_sym_brace_expression_token1, + ACTIONS(3988), 1, + anon_sym_DOLLAR, + ACTIONS(3991), 1, + anon_sym_DQUOTE, + ACTIONS(3994), 1, sym_raw_string, + ACTIONS(3999), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4008), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4014), 1, + sym__backtick_open, + ACTIONS(4017), 1, + sym__dollar_literal, + ACTIONS(4020), 1, + sym__brace_expr_start, + ACTIONS(4456), 1, + anon_sym_RBRACE, + ACTIONS(4459), 1, + sym_variable_name, + STATE(974), 1, + sym_subscript, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(3985), 2, + sym_number, sym_ansi_c_string, - STATE(1622), 3, - sym_array, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4461), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(983), 3, sym__word_like, sym_concatenation, - STATE(1432), 5, + aux_sym__expansion_tail, + ACTIONS(4450), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2984), 8, + ACTIONS(4453), 15, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [47007] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3968), 1, + sym_word, + ACTIONS(3982), 1, + aux_sym_brace_expression_token1, + ACTIONS(3988), 1, + anon_sym_DOLLAR, + ACTIONS(3991), 1, + anon_sym_DQUOTE, + ACTIONS(3994), 1, + sym_raw_string, + ACTIONS(3999), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4008), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4014), 1, + sym__backtick_open, + ACTIONS(4017), 1, + sym__dollar_literal, + ACTIONS(4020), 1, + sym__brace_expr_start, + ACTIONS(4469), 1, + anon_sym_RBRACE, + ACTIONS(4472), 1, + sym_variable_name, + STATE(1089), 1, + sym_subscript, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(3985), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4474), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(1093), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + ACTIONS(4463), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(4466), 15, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(2982), 16, - sym__assignment_name, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [47142] = 27, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [47118] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4392), 1, + ACTIONS(4482), 1, anon_sym_RBRACE, - ACTIONS(4395), 1, + ACTIONS(4485), 1, sym_variable_name, - STATE(1087), 1, + STATE(1104), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4397), 2, + ACTIONS(4487), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1088), 3, + STATE(1105), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4386), 5, + ACTIONS(4476), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4389), 15, + ACTIONS(4479), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -92231,78 +93093,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [47253] = 28, + [47229] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4403), 1, + ACTIONS(4493), 1, anon_sym_RBRACE, - ACTIONS(4407), 1, + ACTIONS(4497), 1, sym_variable_name, - STATE(1093), 1, + STATE(1113), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4401), 2, + ACTIONS(4491), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4409), 2, + ACTIONS(4499), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1094), 3, + STATE(1114), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4399), 5, + ACTIONS(4489), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4405), 13, + ACTIONS(4495), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92316,75 +93178,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [47366] = 27, + [47342] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4417), 1, + ACTIONS(4507), 1, anon_sym_RBRACE, - ACTIONS(4420), 1, + ACTIONS(4510), 1, sym_variable_name, - STATE(1096), 1, + STATE(1118), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4422), 2, + ACTIONS(4512), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1097), 3, + STATE(1119), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4411), 5, + ACTIONS(4501), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4414), 15, + ACTIONS(4504), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -92400,155 +93262,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [47477] = 23, - ACTIONS(2007), 1, + [47453] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(4348), 1, - anon_sym_LPAREN, - ACTIONS(4424), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(4427), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(4433), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(4436), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(4439), 1, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4442), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4445), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4448), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4454), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(4457), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(4460), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - STATE(1429), 1, + ACTIONS(4518), 1, + anon_sym_RBRACE, + ACTIONS(4522), 1, + sym_variable_name, + STATE(1135), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(3590), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(4451), 2, + ACTIONS(4050), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1428), 2, + ACTIONS(4516), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4524), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1458), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(4430), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1628), 3, - sym_array, + STATE(1144), 3, sym__word_like, sym_concatenation, - STATE(1432), 5, + aux_sym__expansion_tail, + ACTIONS(4514), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3029), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, + ACTIONS(4520), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(3027), 16, - sym__assignment_name, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [47580] = 27, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [47566] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4469), 1, + ACTIONS(4532), 1, anon_sym_RBRACE, - ACTIONS(4472), 1, + ACTIONS(4535), 1, sym_variable_name, - STATE(1082), 1, + STATE(1136), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4474), 2, + ACTIONS(4537), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1091), 3, + STATE(1141), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4463), 5, + ACTIONS(4526), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4466), 15, + ACTIONS(4529), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -92564,158 +93431,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [47691] = 23, - ACTIONS(2007), 1, + [47677] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(4476), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(4479), 1, - anon_sym_LPAREN, - ACTIONS(4481), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(4487), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(4490), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(4493), 1, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4496), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4499), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4502), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4508), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(4511), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(4514), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - STATE(1365), 1, + ACTIONS(4543), 1, + anon_sym_RBRACE, + ACTIONS(4547), 1, + sym_variable_name, + STATE(1132), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(3570), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(4505), 2, + ACTIONS(4050), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1395), 2, + ACTIONS(4541), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4549), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1409), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(4484), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1638), 3, - sym_array, + STATE(1133), 3, sym__word_like, sym_concatenation, - STATE(1389), 5, + aux_sym__expansion_tail, + ACTIONS(4539), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3029), 6, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4545), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(3027), 18, - sym__assignment_name, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [47794] = 28, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [47790] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4521), 1, + ACTIONS(4555), 1, anon_sym_RBRACE, - ACTIONS(4525), 1, + ACTIONS(4559), 1, sym_variable_name, - STATE(939), 1, + STATE(1018), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4519), 2, + ACTIONS(4553), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4527), 2, + ACTIONS(4561), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(944), 3, + STATE(1021), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4517), 5, + ACTIONS(4551), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4523), 13, + ACTIONS(4557), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92729,78 +93601,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [47907] = 28, + [47903] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4533), 1, + ACTIONS(4567), 1, anon_sym_RBRACE, - ACTIONS(4537), 1, + ACTIONS(4571), 1, sym_variable_name, - STATE(986), 1, + STATE(1120), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4531), 2, + ACTIONS(4565), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4539), 2, + ACTIONS(4573), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1023), 3, + STATE(1121), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4529), 5, + ACTIONS(4563), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4535), 13, + ACTIONS(4569), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -92814,161 +93686,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [48020] = 29, - ACTIONS(427), 1, - anon_sym_LT_LT, - ACTIONS(429), 1, - anon_sym_LT_LT_DASH, - ACTIONS(451), 1, - sym__assignment_name, - ACTIONS(453), 1, - sym__file_descriptor, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(4541), 1, - sym_word, - ACTIONS(4543), 1, - aux_sym_brace_expression_token1, - ACTIONS(4547), 1, - anon_sym_DOLLAR, - ACTIONS(4549), 1, - anon_sym_DQUOTE, - ACTIONS(4551), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4553), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4555), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4557), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4561), 1, - sym__backtick_open, - ACTIONS(4563), 1, - sym__dollar_literal, - ACTIONS(4565), 1, - sym__brace_expr_start, - STATE(1764), 1, - sym_string, - STATE(1949), 1, - sym_heredoc_redirect, - STATE(3604), 1, - sym__word_part, - ACTIONS(2445), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4559), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1747), 2, - sym_brace_expression, - sym__expression, - STATE(1780), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(423), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(4545), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(785), 5, - sym_variable_assignment, - sym_redirect, - sym__word_like, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1766), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2443), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(425), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [48135] = 27, + [48016] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4573), 1, + ACTIONS(4581), 1, anon_sym_RBRACE, - ACTIONS(4576), 1, + ACTIONS(4584), 1, sym_variable_name, - STATE(948), 1, + STATE(926), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4578), 2, + ACTIONS(4586), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(949), 3, + STATE(931), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4567), 5, + ACTIONS(4575), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4570), 15, + ACTIONS(4578), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -92984,78 +93770,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [48246] = 28, + [48127] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4584), 1, + ACTIONS(4592), 1, anon_sym_RBRACE, - ACTIONS(4588), 1, + ACTIONS(4596), 1, sym_variable_name, - STATE(1111), 1, + STATE(1081), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4582), 2, + ACTIONS(4590), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4590), 2, + ACTIONS(4598), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1112), 3, + STATE(1087), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4580), 5, + ACTIONS(4588), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4586), 13, + ACTIONS(4594), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93069,162 +93855,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [48359] = 29, - ACTIONS(427), 1, - anon_sym_LT_LT, - ACTIONS(429), 1, - anon_sym_LT_LT_DASH, - ACTIONS(451), 1, - sym__assignment_name, - ACTIONS(453), 1, - sym__file_descriptor, - ACTIONS(2007), 1, + [48240] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(4543), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(4547), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(4549), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(4551), 1, + ACTIONS(3994), 1, + sym_raw_string, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4553), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4555), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4557), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4561), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(4563), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(4565), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - STATE(1764), 1, + ACTIONS(4606), 1, + anon_sym_RBRACE, + ACTIONS(4609), 1, + sym_variable_name, + STATE(1137), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(1949), 1, - sym_heredoc_redirect, - STATE(3604), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(2122), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4559), 2, + ACTIONS(3985), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1747), 2, + ACTIONS(4611), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1780), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(423), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(4545), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(789), 5, - sym_variable_assignment, - sym_redirect, + STATE(1138), 3, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1766), 5, + aux_sym__expansion_tail, + ACTIONS(4600), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2120), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(425), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [48474] = 27, + ACTIONS(4603), 15, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [48351] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4598), 1, + ACTIONS(4617), 1, anon_sym_RBRACE, - ACTIONS(4601), 1, + ACTIONS(4621), 1, sym_variable_name, - STATE(1101), 1, + STATE(1149), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4603), 2, + ACTIONS(4615), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4623), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1102), 3, + STATE(1150), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4592), 5, + ACTIONS(4613), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4595), 15, - anon_sym_BANG, + ACTIONS(4619), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93237,77 +94023,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, anon_sym_AT, - [48585] = 27, + [48464] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4611), 1, + ACTIONS(4631), 1, anon_sym_RBRACE, - ACTIONS(4614), 1, + ACTIONS(4634), 1, sym_variable_name, - STATE(1120), 1, + STATE(1156), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4616), 2, + ACTIONS(4636), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1121), 3, + STATE(1157), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4605), 5, + ACTIONS(4625), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4608), 15, + ACTIONS(4628), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -93323,78 +94108,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [48696] = 28, + [48575] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4622), 1, + ACTIONS(4642), 1, anon_sym_RBRACE, - ACTIONS(4626), 1, + ACTIONS(4646), 1, sym_variable_name, - STATE(966), 1, + STATE(929), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4620), 2, + ACTIONS(4640), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4628), 2, + ACTIONS(4648), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(970), 3, + STATE(930), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4618), 5, + ACTIONS(4638), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4624), 13, + ACTIONS(4644), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -93408,161 +94193,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [48809] = 29, - ACTIONS(2007), 1, + [48688] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(4630), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(4639), 1, - anon_sym_LT_LT, - ACTIONS(4642), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4645), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(4651), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(4654), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(4657), 1, + ACTIONS(3994), 1, + sym_raw_string, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4660), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4663), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4666), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4672), 1, - sym__assignment_name, - ACTIONS(4675), 1, - sym__file_descriptor, - ACTIONS(4678), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(4681), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(4684), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - STATE(1764), 1, + ACTIONS(4656), 1, + anon_sym_RBRACE, + ACTIONS(4659), 1, + sym_variable_name, + STATE(1037), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(1949), 1, - sym_heredoc_redirect, - STATE(3604), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(2155), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4669), 2, + ACTIONS(3985), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1747), 2, + ACTIONS(4661), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1780), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(4633), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(4648), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(789), 5, - sym_variable_assignment, - sym_redirect, + STATE(1040), 3, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1766), 5, + aux_sym__expansion_tail, + ACTIONS(4650), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2153), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4636), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [48924] = 27, + ACTIONS(4653), 15, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [48799] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4693), 1, + ACTIONS(4669), 1, anon_sym_RBRACE, - ACTIONS(4696), 1, + ACTIONS(4672), 1, sym_variable_name, - STATE(978), 1, + STATE(1070), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4698), 2, + ACTIONS(4674), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(979), 3, + STATE(1115), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4687), 5, + ACTIONS(4663), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4690), 15, + ACTIONS(4666), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -93578,591 +94361,584 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [49035] = 30, - ACTIONS(2007), 1, + [48910] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3296), 1, - anon_sym_LT_LT, - ACTIONS(3298), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3304), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(3994), 1, + sym_raw_string, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, - sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4700), 1, - sym_number, - STATE(2153), 1, + ACTIONS(4682), 1, + anon_sym_RBRACE, + ACTIONS(4685), 1, + sym_variable_name, + STATE(934), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(2283), 1, - sym_heredoc_redirect, - STATE(3605), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3308), 2, - sym_raw_string, + ACTIONS(3985), 2, + sym_number, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2062), 2, - sym__word_like, - sym_concatenation, - STATE(2077), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2155), 2, - sym_simple_expansion, - sym_expansion, - STATE(2193), 2, + ACTIONS(4687), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - ACTIONS(3292), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2799), 5, - anon_sym_LF, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(935), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + ACTIONS(4676), 5, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2801), 5, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - STATE(2154), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [49152] = 30, - ACTIONS(2007), 1, + ACTIONS(4679), 15, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [49021] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3296), 1, - anon_sym_LT_LT, - ACTIONS(3298), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3304), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, - sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4700), 1, - sym_number, - STATE(2153), 1, + ACTIONS(4693), 1, + anon_sym_RBRACE, + ACTIONS(4697), 1, + sym_variable_name, + STATE(942), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(2283), 1, - sym_heredoc_redirect, - STATE(3605), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(2801), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3308), 2, - sym_raw_string, + ACTIONS(4050), 2, + sym_number, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2062), 2, - sym__word_like, - sym_concatenation, - STATE(2077), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2155), 2, - sym_simple_expansion, - sym_expansion, - STATE(2193), 2, + ACTIONS(4691), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4699), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - ACTIONS(3292), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2154), 5, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(943), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + ACTIONS(4689), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(2799), 8, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - [49269] = 23, - ACTIONS(2007), 1, + ACTIONS(4695), 13, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [49134] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(4479), 1, - anon_sym_LPAREN, - ACTIONS(4702), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(4705), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(4711), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(4714), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(4717), 1, + ACTIONS(3994), 1, + sym_raw_string, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4720), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4723), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4726), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4732), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(4735), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(4738), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - STATE(1365), 1, + ACTIONS(4707), 1, + anon_sym_RBRACE, + ACTIONS(4710), 1, + sym_variable_name, + STATE(1142), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(3570), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(4729), 2, + ACTIONS(3985), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1395), 2, + ACTIONS(4712), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1409), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(4708), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1515), 3, - sym_array, + STATE(1143), 3, sym__word_like, sym_concatenation, - STATE(1389), 5, + aux_sym__expansion_tail, + ACTIONS(4701), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2984), 6, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4704), 15, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(2982), 18, - sym__assignment_name, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [49372] = 29, - ACTIONS(495), 1, - anon_sym_LT_LT, - ACTIONS(497), 1, - anon_sym_LT_LT_DASH, - ACTIONS(517), 1, - sym__assignment_name, - ACTIONS(519), 1, - sym__file_descriptor, - ACTIONS(2007), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [49245] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(4741), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(4743), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(4747), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(4749), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(4751), 1, + ACTIONS(3994), 1, + sym_raw_string, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4753), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4755), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4757), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4761), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(4763), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(4765), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - STATE(1802), 1, + ACTIONS(4720), 1, + anon_sym_RBRACE, + ACTIONS(4723), 1, + sym_variable_name, + STATE(946), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(1896), 1, - sym_heredoc_redirect, - STATE(3580), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(4759), 2, + ACTIONS(3985), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1756), 2, + ACTIONS(4725), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1818), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(491), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2445), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, - ACTIONS(4745), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2443), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(796), 5, - sym_variable_assignment, - sym_redirect, + STATE(947), 3, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1804), 5, + aux_sym__expansion_tail, + ACTIONS(4714), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(493), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [49487] = 30, - ACTIONS(2007), 1, + ACTIONS(4717), 15, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [49356] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3296), 1, - anon_sym_LT_LT, - ACTIONS(3298), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3304), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(3994), 1, + sym_raw_string, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, - sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(3709), 1, - sym_number, - STATE(2153), 1, + ACTIONS(4733), 1, + anon_sym_RBRACE, + ACTIONS(4736), 1, + sym_variable_name, + STATE(945), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(2283), 1, - sym_heredoc_redirect, - STATE(3605), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3308), 2, - sym_raw_string, + ACTIONS(3985), 2, + sym_number, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2085), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2086), 2, - sym__word_like, - sym_concatenation, - STATE(2155), 2, - sym_simple_expansion, - sym_expansion, - STATE(2193), 2, + ACTIONS(4738), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - ACTIONS(3292), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2839), 5, - anon_sym_LF, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(950), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + ACTIONS(4727), 5, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(2841), 5, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - STATE(2154), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [49604] = 29, - ACTIONS(495), 1, - anon_sym_LT_LT, - ACTIONS(497), 1, - anon_sym_LT_LT_DASH, - ACTIONS(517), 1, - sym__assignment_name, - ACTIONS(519), 1, - sym__file_descriptor, - ACTIONS(2007), 1, + ACTIONS(4730), 15, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [49467] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(4741), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(4743), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(4747), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(4749), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(4751), 1, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4753), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4755), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4757), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4761), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(4763), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(4765), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - STATE(1802), 1, + ACTIONS(4744), 1, + anon_sym_RBRACE, + ACTIONS(4748), 1, + sym_variable_name, + STATE(1075), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(1896), 1, - sym_heredoc_redirect, - STATE(3580), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(4759), 2, + ACTIONS(4050), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1756), 2, + ACTIONS(4742), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4750), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1818), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(491), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2122), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, - ACTIONS(4745), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2120), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(800), 5, - sym_variable_assignment, - sym_redirect, + STATE(1080), 3, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1804), 5, + aux_sym__expansion_tail, + ACTIONS(4740), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(493), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [49719] = 28, + ACTIONS(4746), 13, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [49580] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3270), 1, + ACTIONS(4056), 1, sym_raw_string, - ACTIONS(3274), 1, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3278), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3280), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4771), 1, + ACTIONS(4756), 1, anon_sym_RBRACE, - ACTIONS(4775), 1, + ACTIONS(4760), 1, sym_variable_name, - STATE(996), 1, + STATE(953), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3264), 2, + ACTIONS(4050), 2, sym_number, sym_ansi_c_string, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4769), 2, + ACTIONS(4754), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(4777), 2, + ACTIONS(4762), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1001), 3, + STATE(954), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4767), 5, + ACTIONS(4752), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4773), 13, + ACTIONS(4758), 13, anon_sym_EQ, anon_sym_LT, anon_sym_GT, @@ -94176,75 +94952,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [49832] = 27, + [49693] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4785), 1, + ACTIONS(4770), 1, anon_sym_RBRACE, - ACTIONS(4788), 1, + ACTIONS(4773), 1, sym_variable_name, - STATE(1002), 1, + STATE(957), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4790), 2, + ACTIONS(4775), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(1005), 3, + STATE(958), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4779), 5, + ACTIONS(4764), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4782), 15, + ACTIONS(4767), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -94260,247 +95036,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [49943] = 29, - ACTIONS(333), 1, - anon_sym_LT_LT, - ACTIONS(335), 1, - anon_sym_LT_LT_DASH, - ACTIONS(357), 1, - sym__assignment_name, - ACTIONS(359), 1, - sym__file_descriptor, - ACTIONS(2007), 1, + [49804] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3535), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3539), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3541), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3543), 1, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3545), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3547), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3549), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3553), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3555), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3557), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - STATE(1701), 1, + ACTIONS(4781), 1, + anon_sym_RBRACE, + ACTIONS(4785), 1, + sym_variable_name, + STATE(965), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(1950), 1, - sym_heredoc_redirect, - STATE(3587), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3551), 2, + ACTIONS(4050), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1725), 2, - sym_simple_expansion, - sym_expansion, - STATE(1861), 2, + ACTIONS(4779), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4787), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - ACTIONS(329), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2445), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, - ACTIONS(3537), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2443), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(720), 5, - sym_variable_assignment, - sym_redirect, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(966), 3, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1703), 5, + aux_sym__expansion_tail, + ACTIONS(4777), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(331), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [50058] = 29, - ACTIONS(2007), 1, + ACTIONS(4783), 13, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [49917] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(4792), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(4801), 1, - anon_sym_LT_LT, - ACTIONS(4804), 1, - anon_sym_LT_LT_DASH, - ACTIONS(4807), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(4813), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(4816), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(4819), 1, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4822), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4825), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4828), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4834), 1, - sym__assignment_name, - ACTIONS(4837), 1, - sym__file_descriptor, - ACTIONS(4840), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(4843), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(4846), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - STATE(1802), 1, + ACTIONS(4793), 1, + anon_sym_RBRACE, + ACTIONS(4797), 1, + sym_variable_name, + STATE(976), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(1896), 1, - sym_heredoc_redirect, - STATE(3580), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(4831), 2, + ACTIONS(4050), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1756), 2, + ACTIONS(4791), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4799), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1818), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2155), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, - ACTIONS(4795), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(4810), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2153), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(800), 5, - sym_variable_assignment, - sym_redirect, + STATE(981), 3, sym__word_like, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1804), 5, + aux_sym__expansion_tail, + ACTIONS(4789), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4798), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [50173] = 27, + ACTIONS(4795), 13, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [50030] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(3209), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(3215), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(3218), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(3221), 1, + ACTIONS(3994), 1, sym_raw_string, - ACTIONS(3226), 1, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3229), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3232), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3235), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3241), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(3244), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(3247), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - ACTIONS(4855), 1, + ACTIONS(4807), 1, anon_sym_RBRACE, - ACTIONS(4858), 1, + ACTIONS(4810), 1, sym_variable_name, - STATE(997), 1, + STATE(1097), 1, sym_subscript, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3212), 2, + ACTIONS(3985), 2, sym_number, sym_ansi_c_string, - ACTIONS(3238), 2, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4860), 2, + ACTIONS(4812), 2, sym_special_variable, aux_sym_expansion_token1, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(998), 3, + STATE(1098), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - ACTIONS(4849), 5, + ACTIONS(4801), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(4852), 15, + ACTIONS(4804), 15, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -94516,729 +95290,1100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_POUND, anon_sym_AT, - [50284] = 23, - ACTIONS(2007), 1, + [50141] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(4862), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(4865), 1, - anon_sym_LPAREN, - ACTIONS(4867), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(4873), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(4876), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(4879), 1, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4882), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4885), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4888), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4894), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(4897), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(4900), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - STATE(1764), 1, + ACTIONS(4818), 1, + anon_sym_RBRACE, + ACTIONS(4822), 1, + sym_variable_name, + STATE(1019), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(3604), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(4891), 2, + ACTIONS(4050), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1747), 2, + ACTIONS(4816), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4824), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1780), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(4870), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1952), 3, - sym_array, + STATE(1020), 3, sym__word_like, sym_concatenation, - STATE(1766), 5, + aux_sym__expansion_tail, + ACTIONS(4814), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2984), 6, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4820), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(2982), 16, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [50385] = 23, - ACTIONS(2007), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [50254] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(4903), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(4906), 1, - anon_sym_LPAREN, - ACTIONS(4908), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(4914), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(4917), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(4920), 1, + ACTIONS(3994), 1, + sym_raw_string, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4923), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4926), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4929), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4935), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(4938), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(4941), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - STATE(1701), 1, + ACTIONS(4832), 1, + anon_sym_RBRACE, + ACTIONS(4835), 1, + sym_variable_name, + STATE(970), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(3587), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(4932), 2, + ACTIONS(3985), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1725), 2, - sym_simple_expansion, - sym_expansion, - STATE(1861), 2, + ACTIONS(4837), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - ACTIONS(4911), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1936), 3, - sym_array, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(971), 3, sym__word_like, sym_concatenation, - STATE(1703), 5, + aux_sym__expansion_tail, + ACTIONS(4826), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2984), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, + ACTIONS(4829), 15, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(2982), 15, - sym__assignment_name, - sym__file_descriptor, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [50486] = 23, - ACTIONS(2007), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [50365] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(4906), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(4947), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(4953), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(4956), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(4959), 1, + ACTIONS(3994), 1, + sym_raw_string, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4962), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4965), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4968), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4974), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(4977), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(4980), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - STATE(1701), 1, + ACTIONS(4845), 1, + anon_sym_RBRACE, + ACTIONS(4848), 1, + sym_variable_name, + STATE(995), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(3587), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(4971), 2, + ACTIONS(3985), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1725), 2, - sym_simple_expansion, - sym_expansion, - STATE(1861), 2, + ACTIONS(4850), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - ACTIONS(4950), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1908), 3, - sym_array, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(1001), 3, sym__word_like, sym_concatenation, - STATE(1703), 5, + aux_sym__expansion_tail, + ACTIONS(4839), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3029), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, + ACTIONS(4842), 15, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(3027), 15, - sym__assignment_name, - sym__file_descriptor, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [50587] = 23, - ACTIONS(2007), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [50476] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(4983), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(4986), 1, - anon_sym_LPAREN, - ACTIONS(4988), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(4994), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(4997), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(5000), 1, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5003), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5006), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5009), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5015), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(5018), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(5021), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - STATE(1717), 1, + ACTIONS(4856), 1, + anon_sym_RBRACE, + ACTIONS(4860), 1, + sym_variable_name, + STATE(1153), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(3611), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(5012), 2, + ACTIONS(4050), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1858), 2, - sym_simple_expansion, - sym_expansion, - STATE(1871), 2, + ACTIONS(4854), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4862), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - ACTIONS(4991), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1916), 3, - sym_array, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(1155), 3, sym__word_like, sym_concatenation, - STATE(1723), 5, + aux_sym__expansion_tail, + ACTIONS(4852), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2984), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, + ACTIONS(4858), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(2982), 15, - sym__assignment_name, - sym__file_descriptor, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [50688] = 30, - ACTIONS(2007), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [50589] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3296), 1, - anon_sym_LT_LT, - ACTIONS(3298), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3304), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, - sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(3709), 1, - sym_number, - STATE(2153), 1, + ACTIONS(4868), 1, + anon_sym_RBRACE, + ACTIONS(4872), 1, + sym_variable_name, + STATE(1124), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(2283), 1, - sym_heredoc_redirect, - STATE(3605), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3308), 2, - sym_raw_string, + ACTIONS(4050), 2, + sym_number, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2085), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2086), 2, - sym__word_like, - sym_concatenation, - STATE(2155), 2, - sym_simple_expansion, - sym_expansion, - STATE(2193), 2, + ACTIONS(4866), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4874), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - ACTIONS(2841), 3, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(1126), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + ACTIONS(4864), 5, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, - ACTIONS(3292), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2839), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(2154), 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [50803] = 30, - ACTIONS(2007), 1, + ACTIONS(4870), 13, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [50702] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3296), 1, - anon_sym_LT_LT, - ACTIONS(3298), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3302), 1, - sym_number, - ACTIONS(3304), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, - sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - STATE(2153), 1, + ACTIONS(4880), 1, + anon_sym_RBRACE, + ACTIONS(4884), 1, + sym_variable_name, + STATE(979), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(2283), 1, - sym_heredoc_redirect, - STATE(3605), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3308), 2, - sym_raw_string, + ACTIONS(4050), 2, + sym_number, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2033), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2053), 2, - sym__word_like, - sym_concatenation, - STATE(2155), 2, - sym_simple_expansion, - sym_expansion, - STATE(2193), 2, + ACTIONS(4878), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4886), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - ACTIONS(2847), 3, - anon_sym_AMP, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(980), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + ACTIONS(4876), 5, + anon_sym_SEMI, + anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, - ACTIONS(3292), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(4882), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2845), 5, - anon_sym_LF, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [50815] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3968), 1, + sym_word, + ACTIONS(3982), 1, + aux_sym_brace_expression_token1, + ACTIONS(3988), 1, + anon_sym_DOLLAR, + ACTIONS(3991), 1, + anon_sym_DQUOTE, + ACTIONS(3994), 1, + sym_raw_string, + ACTIONS(3999), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4008), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4014), 1, + sym__backtick_open, + ACTIONS(4017), 1, + sym__dollar_literal, + ACTIONS(4020), 1, + sym__brace_expr_start, + ACTIONS(4894), 1, + anon_sym_RBRACE, + ACTIONS(4897), 1, + sym_variable_name, + STATE(984), 1, + sym_subscript, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(3985), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4899), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(985), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + ACTIONS(4888), 5, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(2154), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [50918] = 23, - ACTIONS(2007), 1, + ACTIONS(4891), 15, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [50926] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(4986), 1, - anon_sym_LPAREN, - ACTIONS(5024), 1, + ACTIONS(3968), 1, sym_word, - ACTIONS(5027), 1, + ACTIONS(3982), 1, aux_sym_brace_expression_token1, - ACTIONS(5033), 1, + ACTIONS(3988), 1, anon_sym_DOLLAR, - ACTIONS(5036), 1, + ACTIONS(3991), 1, anon_sym_DQUOTE, - ACTIONS(5039), 1, + ACTIONS(3994), 1, + sym_raw_string, + ACTIONS(3999), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5042), 1, + ACTIONS(4002), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5045), 1, + ACTIONS(4005), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5048), 1, + ACTIONS(4008), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5054), 1, + ACTIONS(4014), 1, sym__backtick_open, - ACTIONS(5057), 1, + ACTIONS(4017), 1, sym__dollar_literal, - ACTIONS(5060), 1, + ACTIONS(4020), 1, sym__brace_expr_start, - STATE(1717), 1, + ACTIONS(4907), 1, + anon_sym_RBRACE, + ACTIONS(4910), 1, + sym_variable_name, + STATE(1159), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(3611), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(5051), 2, + ACTIONS(3985), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4011), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1858), 2, - sym_simple_expansion, - sym_expansion, - STATE(1871), 2, + ACTIONS(4912), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - ACTIONS(5030), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1925), 3, - sym_array, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(1160), 3, sym__word_like, sym_concatenation, - STATE(1723), 5, + aux_sym__expansion_tail, + ACTIONS(4901), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3029), 7, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, + ACTIONS(4904), 15, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(3027), 15, - sym__assignment_name, - sym__file_descriptor, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [51019] = 30, - ACTIONS(2007), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [51037] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3296), 1, - anon_sym_LT_LT, - ACTIONS(3298), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3304), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(4064), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(4066), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, - sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(4700), 1, - sym_number, - STATE(2153), 1, + ACTIONS(4918), 1, + anon_sym_RBRACE, + ACTIONS(4922), 1, + sym_variable_name, + STATE(992), 1, + sym_subscript, + STATE(1879), 1, sym_string, - STATE(2283), 1, - sym_heredoc_redirect, - STATE(3605), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3308), 2, - sym_raw_string, + ACTIONS(4050), 2, + sym_number, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2062), 2, + ACTIONS(4916), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4924), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(993), 3, sym__word_like, sym_concatenation, - STATE(2077), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2155), 2, + aux_sym__expansion_tail, + ACTIONS(4914), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(4920), 13, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [51150] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4064), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(4930), 1, + anon_sym_RBRACE, + ACTIONS(4934), 1, + sym_variable_name, + STATE(1060), 1, + sym_subscript, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4050), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4928), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4936), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - STATE(2193), 2, + STATE(928), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + ACTIONS(4926), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(4932), 13, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [51263] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4056), 1, + sym_raw_string, + ACTIONS(4060), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4064), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4066), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(4942), 1, + anon_sym_RBRACE, + ACTIONS(4946), 1, + sym_variable_name, + STATE(1099), 1, + sym_subscript, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4050), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4940), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(4948), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, sym_brace_expression, sym__expression, - ACTIONS(2801), 3, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(1125), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + ACTIONS(4938), 5, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - ACTIONS(3292), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(4944), 13, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(2799), 5, - anon_sym_LF, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [51376] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3968), 1, + sym_word, + ACTIONS(3982), 1, + aux_sym_brace_expression_token1, + ACTIONS(3988), 1, + anon_sym_DOLLAR, + ACTIONS(3991), 1, + anon_sym_DQUOTE, + ACTIONS(3994), 1, + sym_raw_string, + ACTIONS(3999), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4002), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4005), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4008), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4014), 1, + sym__backtick_open, + ACTIONS(4017), 1, + sym__dollar_literal, + ACTIONS(4020), 1, + sym__brace_expr_start, + ACTIONS(4956), 1, + anon_sym_RBRACE, + ACTIONS(4959), 1, + sym_variable_name, + STATE(989), 1, + sym_subscript, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(3985), 2, + sym_number, + sym_ansi_c_string, + ACTIONS(4011), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4961), 2, + sym_special_variable, + aux_sym_expansion_token1, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + STATE(1013), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + ACTIONS(4950), 5, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(2154), 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [51134] = 30, - ACTIONS(2007), 1, + ACTIONS(4953), 15, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + anon_sym_AT, + [51487] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5063), 1, + ACTIONS(4963), 1, sym_word, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5073), 1, + ACTIONS(4973), 1, aux_sym_brace_expression_token1, - ACTIONS(5075), 1, + ACTIONS(4975), 1, sym_number, - ACTIONS(5077), 1, + ACTIONS(4977), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, + ACTIONS(4979), 1, anon_sym_DQUOTE, - ACTIONS(5083), 1, + ACTIONS(4983), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5085), 1, + ACTIONS(4985), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5087), 1, + ACTIONS(4987), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5089), 1, + ACTIONS(4989), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - ACTIONS(5095), 1, + ACTIONS(4995), 1, sym__backtick_open, - ACTIONS(5097), 1, + ACTIONS(4997), 1, sym__dollar_literal, - ACTIONS(5099), 1, + ACTIONS(4999), 1, sym__brace_expr_start, - STATE(2691), 1, + STATE(2621), 1, sym_string, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - STATE(3564), 1, + STATE(3568), 1, sym__word_part, - ACTIONS(5081), 2, + ACTIONS(2778), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4981), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5091), 2, + ACTIONS(4991), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2506), 2, + STATE(2509), 2, sym__word_like, sym_concatenation, - STATE(2508), 2, + STATE(2534), 2, sym_redirect, aux_sym_subshell_repeat1, - STATE(2673), 2, - sym_brace_expression, - sym__expression, - STATE(2701), 2, + STATE(2598), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2801), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, - ACTIONS(5065), 3, + STATE(2609), 2, + sym_brace_expression, + sym__expression, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2799), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(2692), 5, + STATE(2624), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5067), 7, + ACTIONS(2776), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95246,84 +96391,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [51249] = 30, - ACTIONS(2007), 1, + [51603] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5063), 1, + ACTIONS(5001), 1, sym_word, - ACTIONS(5069), 1, - anon_sym_LT_LT, - ACTIONS(5071), 1, - anon_sym_LT_LT_DASH, - ACTIONS(5073), 1, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, aux_sym_brace_expression_token1, - ACTIONS(5077), 1, + ACTIONS(5012), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, + ACTIONS(5015), 1, anon_sym_DQUOTE, - ACTIONS(5083), 1, + ACTIONS(5018), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5085), 1, + ACTIONS(5021), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5087), 1, + ACTIONS(5024), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5089), 1, + ACTIONS(5027), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5093), 1, - sym__file_descriptor, - ACTIONS(5095), 1, + ACTIONS(5033), 1, sym__backtick_open, - ACTIONS(5097), 1, + ACTIONS(5036), 1, sym__dollar_literal, - ACTIONS(5099), 1, + ACTIONS(5039), 1, sym__brace_expr_start, - ACTIONS(5101), 1, - sym_number, - STATE(2691), 1, + STATE(1740), 1, sym_string, - STATE(2749), 1, - sym_heredoc_redirect, - STATE(3564), 1, + STATE(3515), 1, sym__word_part, - ACTIONS(5081), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5091), 2, + ACTIONS(5030), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2514), 2, - sym__word_like, - sym_concatenation, - STATE(2518), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2673), 2, - sym_brace_expression, - sym__expression, - STATE(2701), 2, + STATE(1748), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2841), 3, + STATE(1801), 2, + sym_brace_expression, + sym__expression, + ACTIONS(5009), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1845), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(1741), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2937), 7, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, - ACTIONS(5065), 3, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2839), 5, + anon_sym_LT_LT, + ACTIONS(2935), 16, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - STATE(2692), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(5067), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95331,84 +96469,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [51364] = 30, - ACTIONS(2007), 1, + anon_sym_LT_LT_DASH, + [51705] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5063), 1, + ACTIONS(4963), 1, sym_word, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5073), 1, + ACTIONS(4973), 1, aux_sym_brace_expression_token1, - ACTIONS(5077), 1, + ACTIONS(4977), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, + ACTIONS(4979), 1, anon_sym_DQUOTE, - ACTIONS(5083), 1, + ACTIONS(4983), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5085), 1, + ACTIONS(4985), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5087), 1, + ACTIONS(4987), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5089), 1, + ACTIONS(4989), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - ACTIONS(5095), 1, + ACTIONS(4995), 1, sym__backtick_open, - ACTIONS(5097), 1, + ACTIONS(4997), 1, sym__dollar_literal, - ACTIONS(5099), 1, + ACTIONS(4999), 1, sym__brace_expr_start, - ACTIONS(5103), 1, + ACTIONS(5042), 1, sym_number, - STATE(2691), 1, + STATE(2621), 1, sym_string, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - STATE(3564), 1, + STATE(3568), 1, sym__word_part, - ACTIONS(5081), 2, + ACTIONS(2977), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4981), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5091), 2, + ACTIONS(4991), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2524), 2, + STATE(2468), 2, sym__word_like, sym_concatenation, - STATE(2530), 2, + STATE(2481), 2, sym_redirect, aux_sym_subshell_repeat1, - STATE(2673), 2, - sym_brace_expression, - sym__expression, - STATE(2701), 2, + STATE(2598), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2847), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, - ACTIONS(5065), 3, + STATE(2609), 2, + sym_brace_expression, + sym__expression, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2845), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(2692), 5, + STATE(2624), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5067), 7, + ACTIONS(2975), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95416,84 +96556,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [51479] = 30, - ACTIONS(2007), 1, + [51821] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(4963), 1, sym_word, - ACTIONS(3296), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(4973), 1, aux_sym_brace_expression_token1, - ACTIONS(3304), 1, + ACTIONS(4977), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(4979), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(4983), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(4985), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(4987), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(4989), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, + ACTIONS(4993), 1, sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(4995), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(4997), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(4999), 1, sym__brace_expr_start, - ACTIONS(4700), 1, + ACTIONS(5044), 1, sym_number, - STATE(2153), 1, + STATE(2621), 1, sym_string, - STATE(2283), 1, + STATE(2667), 1, sym_heredoc_redirect, - STATE(3605), 1, + STATE(3568), 1, sym__word_part, - ACTIONS(3308), 2, + ACTIONS(3054), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4981), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(4991), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2062), 2, + STATE(2530), 2, sym__word_like, sym_concatenation, - STATE(2077), 2, + STATE(2532), 2, sym_redirect, aux_sym_subshell_repeat1, - STATE(2155), 2, + STATE(2598), 2, sym_simple_expansion, sym_expansion, - STATE(2193), 2, + STATE(2609), 2, sym_brace_expression, sym__expression, - ACTIONS(2801), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - ACTIONS(3292), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2799), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(2154), 5, + STATE(2624), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, + ACTIONS(3052), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95501,71 +96642,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [51594] = 23, - ACTIONS(2007), 1, + [51937] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5105), 1, + ACTIONS(5046), 1, sym_word, - ACTIONS(5108), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(5110), 1, + ACTIONS(5051), 1, aux_sym_brace_expression_token1, - ACTIONS(5116), 1, + ACTIONS(5057), 1, anon_sym_DOLLAR, - ACTIONS(5119), 1, + ACTIONS(5060), 1, anon_sym_DQUOTE, - ACTIONS(5122), 1, + ACTIONS(5063), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5125), 1, + ACTIONS(5066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5128), 1, + ACTIONS(5069), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5131), 1, + ACTIONS(5072), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5137), 1, + ACTIONS(5078), 1, sym__backtick_open, - ACTIONS(5140), 1, + ACTIONS(5081), 1, sym__dollar_literal, - ACTIONS(5143), 1, + ACTIONS(5084), 1, sym__brace_expr_start, - STATE(1832), 1, + STATE(1763), 1, sym_string, - STATE(3615), 1, + STATE(3539), 1, sym__word_part, - ACTIONS(5134), 2, + ACTIONS(5075), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1762), 2, - sym_brace_expression, - sym__expression, - STATE(1839), 2, + STATE(1667), 2, sym_simple_expansion, sym_expansion, - ACTIONS(5113), 3, + STATE(1777), 2, + sym_brace_expression, + sym__expression, + ACTIONS(5054), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1945), 3, + STATE(1832), 3, sym_array, sym__word_like, sym_concatenation, - STATE(1833), 5, + STATE(1652), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2984), 7, + ACTIONS(2892), 6, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(2982), 15, + ACTIONS(2890), 17, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -95579,76 +96721,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [51695] = 23, - ACTIONS(2007), 1, + [52039] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5108), 1, - anon_sym_LPAREN, - ACTIONS(5146), 1, + ACTIONS(5087), 1, sym_word, - ACTIONS(5149), 1, + ACTIONS(5093), 1, + anon_sym_LT_LT, + ACTIONS(5095), 1, + anon_sym_LT_LT_DASH, + ACTIONS(5097), 1, aux_sym_brace_expression_token1, - ACTIONS(5155), 1, + ACTIONS(5099), 1, + sym_number, + ACTIONS(5101), 1, anon_sym_DOLLAR, - ACTIONS(5158), 1, + ACTIONS(5103), 1, anon_sym_DQUOTE, - ACTIONS(5161), 1, + ACTIONS(5107), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5164), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5167), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5170), 1, + ACTIONS(5113), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5176), 1, + ACTIONS(5117), 1, + sym__file_descriptor, + ACTIONS(5119), 1, sym__backtick_open, - ACTIONS(5179), 1, + ACTIONS(5121), 1, sym__dollar_literal, - ACTIONS(5182), 1, + ACTIONS(5123), 1, sym__brace_expr_start, - STATE(1832), 1, + STATE(2631), 1, sym_string, - STATE(3615), 1, + STATE(2673), 1, + sym_heredoc_redirect, + STATE(3563), 1, sym__word_part, - ACTIONS(5173), 2, + ACTIONS(5105), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(5115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1762), 2, + STATE(2539), 2, + sym__word_like, + sym_concatenation, + STATE(2540), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2608), 2, sym_brace_expression, sym__expression, - STATE(1839), 2, + STATE(2639), 2, sym_simple_expansion, sym_expansion, - ACTIONS(5152), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1941), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(1833), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3029), 7, + ACTIONS(2778), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, + anon_sym_done, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(3027), 15, - sym__assignment_name, - sym__file_descriptor, + STATE(2632), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2776), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95656,85 +96807,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [51796] = 30, - ACTIONS(2007), 1, + [52155] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(5087), 1, sym_word, - ACTIONS(3296), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(5097), 1, aux_sym_brace_expression_token1, - ACTIONS(3304), 1, + ACTIONS(5101), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(5103), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(5107), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(5113), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, + ACTIONS(5117), 1, sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(5119), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(5121), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(5123), 1, sym__brace_expr_start, - ACTIONS(3709), 1, + ACTIONS(5125), 1, sym_number, - STATE(2153), 1, + STATE(2631), 1, sym_string, - STATE(2283), 1, + STATE(2673), 1, sym_heredoc_redirect, - STATE(3605), 1, + STATE(3563), 1, sym__word_part, - ACTIONS(3308), 2, + ACTIONS(5105), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(5115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2085), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2086), 2, + STATE(2542), 2, sym__word_like, sym_concatenation, - STATE(2155), 2, - sym_simple_expansion, - sym_expansion, - STATE(2193), 2, + STATE(2543), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2608), 2, sym_brace_expression, sym__expression, - ACTIONS(2841), 3, + STATE(2639), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2977), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - ACTIONS(3292), 3, + anon_sym_done, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2839), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(2154), 5, + STATE(2632), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, + ACTIONS(2975), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95742,84 +96893,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [51911] = 30, - ACTIONS(2007), 1, + [52271] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5185), 1, + ACTIONS(5127), 1, sym_word, - ACTIONS(5191), 1, - anon_sym_LT_LT, - ACTIONS(5193), 1, - anon_sym_LT_LT_DASH, - ACTIONS(5195), 1, + ACTIONS(5130), 1, + anon_sym_LPAREN, + ACTIONS(5132), 1, aux_sym_brace_expression_token1, - ACTIONS(5197), 1, - sym_number, - ACTIONS(5199), 1, + ACTIONS(5138), 1, anon_sym_DOLLAR, - ACTIONS(5201), 1, + ACTIONS(5141), 1, anon_sym_DQUOTE, - ACTIONS(5205), 1, + ACTIONS(5144), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5207), 1, + ACTIONS(5147), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5209), 1, + ACTIONS(5150), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5211), 1, + ACTIONS(5153), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5215), 1, - sym__file_descriptor, - ACTIONS(5217), 1, + ACTIONS(5159), 1, sym__backtick_open, - ACTIONS(5219), 1, + ACTIONS(5162), 1, sym__dollar_literal, - ACTIONS(5221), 1, + ACTIONS(5165), 1, sym__brace_expr_start, - STATE(2670), 1, + STATE(1655), 1, sym_string, - STATE(2720), 1, - sym_heredoc_redirect, - STATE(3579), 1, + STATE(3533), 1, sym__word_part, - ACTIONS(2801), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5203), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5213), 2, + ACTIONS(5156), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2538), 2, - sym__word_like, - sym_concatenation, - STATE(2553), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2665), 2, - sym_brace_expression, - sym__expression, - STATE(2680), 2, + STATE(1672), 2, sym_simple_expansion, sym_expansion, - ACTIONS(5187), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(2671), 5, + STATE(1779), 2, + sym_brace_expression, + sym__expression, + ACTIONS(5135), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1817), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(1656), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2799), 6, - sym__backtick_close, + ACTIONS(2892), 7, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_done, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(2890), 16, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(5189), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95827,84 +96971,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [52026] = 30, - ACTIONS(2007), 1, + anon_sym_LT_LT_DASH, + [52373] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5185), 1, + ACTIONS(5087), 1, sym_word, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5195), 1, + ACTIONS(5097), 1, aux_sym_brace_expression_token1, - ACTIONS(5199), 1, + ACTIONS(5101), 1, anon_sym_DOLLAR, - ACTIONS(5201), 1, + ACTIONS(5103), 1, anon_sym_DQUOTE, - ACTIONS(5205), 1, + ACTIONS(5107), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5207), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5209), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5211), 1, + ACTIONS(5113), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - ACTIONS(5217), 1, + ACTIONS(5119), 1, sym__backtick_open, - ACTIONS(5219), 1, + ACTIONS(5121), 1, sym__dollar_literal, - ACTIONS(5221), 1, + ACTIONS(5123), 1, sym__brace_expr_start, - ACTIONS(5223), 1, + ACTIONS(5168), 1, sym_number, - STATE(2670), 1, + STATE(2631), 1, sym_string, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - STATE(3579), 1, + STATE(3563), 1, sym__word_part, - ACTIONS(2841), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5203), 2, + ACTIONS(5105), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5213), 2, + ACTIONS(5115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2592), 2, + STATE(2545), 2, sym__word_like, sym_concatenation, - STATE(2599), 2, + STATE(2546), 2, sym_redirect, aux_sym_subshell_repeat1, - STATE(2665), 2, + STATE(2608), 2, sym_brace_expression, sym__expression, - STATE(2680), 2, + STATE(2639), 2, sym_simple_expansion, sym_expansion, - ACTIONS(5187), 3, + ACTIONS(3054), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_done, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2671), 5, + STATE(2632), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2839), 6, - sym__backtick_close, + ACTIONS(3052), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95912,84 +97058,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [52141] = 30, - ACTIONS(2007), 1, + [52489] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5185), 1, + ACTIONS(3377), 1, sym_word, - ACTIONS(5191), 1, + ACTIONS(3383), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(3385), 1, anon_sym_LT_LT_DASH, - ACTIONS(5195), 1, + ACTIONS(3387), 1, aux_sym_brace_expression_token1, - ACTIONS(5199), 1, + ACTIONS(3391), 1, anon_sym_DOLLAR, - ACTIONS(5201), 1, + ACTIONS(3393), 1, anon_sym_DQUOTE, - ACTIONS(5205), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5207), 1, + ACTIONS(3399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5209), 1, + ACTIONS(3401), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5211), 1, + ACTIONS(3403), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5215), 1, + ACTIONS(3407), 1, sym__file_descriptor, - ACTIONS(5217), 1, + ACTIONS(3409), 1, sym__backtick_open, - ACTIONS(5219), 1, + ACTIONS(3411), 1, sym__dollar_literal, - ACTIONS(5221), 1, + ACTIONS(3413), 1, sym__brace_expr_start, - ACTIONS(5225), 1, + ACTIONS(3456), 1, sym_number, - STATE(2670), 1, + STATE(2104), 1, sym_string, - STATE(2720), 1, + STATE(2168), 1, sym_heredoc_redirect, - STATE(3579), 1, + STATE(3523), 1, sym__word_part, - ACTIONS(2847), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5203), 2, + ACTIONS(3395), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(5213), 2, + ACTIONS(3405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2465), 2, + STATE(2000), 2, sym__word_like, sym_concatenation, - STATE(2479), 2, + STATE(2001), 2, sym_redirect, aux_sym_subshell_repeat1, - STATE(2665), 2, + STATE(2100), 2, sym_brace_expression, sym__expression, - STATE(2680), 2, + STATE(2109), 2, sym_simple_expansion, sym_expansion, - ACTIONS(5187), 3, + ACTIONS(2778), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - STATE(2671), 5, + STATE(2108), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2845), 6, - sym__backtick_close, + ACTIONS(2776), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95997,76 +97144,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [52256] = 23, - ACTIONS(2007), 1, + [52605] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5227), 1, + ACTIONS(3377), 1, sym_word, - ACTIONS(5230), 1, - anon_sym_LPAREN, - ACTIONS(5232), 1, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3387), 1, aux_sym_brace_expression_token1, - ACTIONS(5238), 1, + ACTIONS(3391), 1, anon_sym_DOLLAR, - ACTIONS(5241), 1, + ACTIONS(3393), 1, anon_sym_DQUOTE, - ACTIONS(5244), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5247), 1, + ACTIONS(3399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5250), 1, + ACTIONS(3401), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5253), 1, + ACTIONS(3403), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5259), 1, + ACTIONS(3407), 1, + sym__file_descriptor, + ACTIONS(3409), 1, sym__backtick_open, - ACTIONS(5262), 1, + ACTIONS(3411), 1, sym__dollar_literal, - ACTIONS(5265), 1, + ACTIONS(3413), 1, sym__brace_expr_start, - STATE(1802), 1, + ACTIONS(3458), 1, + sym_number, + STATE(2104), 1, sym_string, - STATE(3580), 1, + STATE(2168), 1, + sym_heredoc_redirect, + STATE(3523), 1, sym__word_part, - ACTIONS(5256), 2, + ACTIONS(3395), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1756), 2, + STATE(2005), 2, + sym__word_like, + sym_concatenation, + STATE(2012), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2100), 2, sym_brace_expression, sym__expression, - STATE(1818), 2, + STATE(2109), 2, sym_simple_expansion, sym_expansion, - ACTIONS(5235), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1921), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(1804), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3029), 7, + ACTIONS(2977), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + anon_sym_fi, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(3027), 15, - sym__assignment_name, - sym__file_descriptor, + STATE(2108), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2975), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96074,69 +97230,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [52357] = 23, - ACTIONS(2007), 1, + [52721] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(4865), 1, + ACTIONS(5049), 1, anon_sym_LPAREN, - ACTIONS(5268), 1, + ACTIONS(5170), 1, sym_word, - ACTIONS(5271), 1, + ACTIONS(5173), 1, aux_sym_brace_expression_token1, - ACTIONS(5277), 1, + ACTIONS(5179), 1, anon_sym_DOLLAR, - ACTIONS(5280), 1, + ACTIONS(5182), 1, anon_sym_DQUOTE, - ACTIONS(5283), 1, + ACTIONS(5185), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5286), 1, + ACTIONS(5188), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5289), 1, + ACTIONS(5191), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5194), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5298), 1, + ACTIONS(5200), 1, sym__backtick_open, - ACTIONS(5301), 1, + ACTIONS(5203), 1, sym__dollar_literal, - ACTIONS(5304), 1, + ACTIONS(5206), 1, sym__brace_expr_start, - STATE(1764), 1, + STATE(1763), 1, sym_string, - STATE(3604), 1, + STATE(3539), 1, sym__word_part, - ACTIONS(5295), 2, + ACTIONS(5197), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1747), 2, - sym_brace_expression, - sym__expression, - STATE(1780), 2, + STATE(1667), 2, sym_simple_expansion, sym_expansion, - ACTIONS(5274), 3, + STATE(1777), 2, + sym_brace_expression, + sym__expression, + ACTIONS(5176), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1913), 3, + STATE(1809), 3, sym_array, sym__word_like, sym_concatenation, - STATE(1766), 5, + STATE(1652), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3029), 6, + ACTIONS(2937), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(3027), 16, + ACTIONS(2935), 17, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_close, @@ -96153,84 +97309,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [52458] = 30, - ACTIONS(2007), 1, + [52823] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(3377), 1, sym_word, - ACTIONS(3296), 1, + ACTIONS(3383), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(3385), 1, anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(3387), 1, aux_sym_brace_expression_token1, - ACTIONS(3304), 1, + ACTIONS(3389), 1, + sym_number, + ACTIONS(3391), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(3393), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(3399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(3401), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(3403), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, + ACTIONS(3407), 1, sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(3409), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(3411), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(3413), 1, sym__brace_expr_start, - ACTIONS(4700), 1, - sym_number, - STATE(2153), 1, + STATE(2104), 1, sym_string, - STATE(2283), 1, + STATE(2168), 1, sym_heredoc_redirect, - STATE(3605), 1, + STATE(3523), 1, sym__word_part, - ACTIONS(3308), 2, + ACTIONS(3395), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(3405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2062), 2, + STATE(2024), 2, sym__word_like, sym_concatenation, - STATE(2077), 2, + STATE(2030), 2, sym_redirect, aux_sym_subshell_repeat1, - STATE(2155), 2, - sym_simple_expansion, - sym_expansion, - STATE(2193), 2, + STATE(2100), 2, sym_brace_expression, sym__expression, - ACTIONS(2801), 3, + STATE(2109), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(3054), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, - ACTIONS(3292), 3, + anon_sym_fi, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2799), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(2154), 5, + STATE(2108), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, + ACTIONS(3052), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96238,84 +97395,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [52573] = 30, - ACTIONS(2007), 1, + [52939] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(3377), 1, sym_word, - ACTIONS(3296), 1, + ACTIONS(3383), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(3385), 1, anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(3387), 1, aux_sym_brace_expression_token1, - ACTIONS(3304), 1, + ACTIONS(3391), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(3393), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(3399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(3401), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(3403), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, + ACTIONS(3407), 1, sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(3409), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(3411), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(3413), 1, sym__brace_expr_start, - ACTIONS(3709), 1, + ACTIONS(3456), 1, sym_number, - STATE(2153), 1, + STATE(2104), 1, sym_string, - STATE(2283), 1, + STATE(2168), 1, sym_heredoc_redirect, - STATE(3605), 1, + STATE(3523), 1, sym__word_part, - ACTIONS(3308), 2, + ACTIONS(3395), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(3405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2085), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2086), 2, + STATE(2000), 2, sym__word_like, sym_concatenation, - STATE(2155), 2, - sym_simple_expansion, - sym_expansion, - STATE(2193), 2, + STATE(2001), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2100), 2, sym_brace_expression, sym__expression, - ACTIONS(2841), 3, + STATE(2109), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2778), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_then, - ACTIONS(3292), 3, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2839), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(2154), 5, + STATE(2108), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, + ACTIONS(2776), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96323,84 +97481,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [52688] = 30, - ACTIONS(2007), 1, + [53055] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(3377), 1, sym_word, - ACTIONS(3296), 1, + ACTIONS(3383), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(3385), 1, anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(3387), 1, aux_sym_brace_expression_token1, - ACTIONS(3302), 1, - sym_number, - ACTIONS(3304), 1, + ACTIONS(3391), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(3393), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(3399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(3401), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(3403), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, + ACTIONS(3407), 1, sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(3409), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(3411), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(3413), 1, sym__brace_expr_start, - STATE(2153), 1, + ACTIONS(3458), 1, + sym_number, + STATE(2104), 1, sym_string, - STATE(2283), 1, + STATE(2168), 1, sym_heredoc_redirect, - STATE(3605), 1, + STATE(3523), 1, sym__word_part, - ACTIONS(3308), 2, + ACTIONS(3395), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(3405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2033), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2053), 2, + STATE(2005), 2, sym__word_like, sym_concatenation, - STATE(2155), 2, - sym_simple_expansion, - sym_expansion, - STATE(2193), 2, + STATE(2012), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2100), 2, sym_brace_expression, sym__expression, - ACTIONS(2847), 3, + STATE(2109), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2977), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_then, - ACTIONS(3292), 3, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2845), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(2154), 5, + STATE(2108), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, + ACTIONS(2975), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96408,84 +97567,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [52803] = 30, - ACTIONS(2007), 1, + [53171] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3290), 1, + ACTIONS(3377), 1, sym_word, - ACTIONS(3296), 1, + ACTIONS(3383), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(3385), 1, anon_sym_LT_LT_DASH, - ACTIONS(3300), 1, + ACTIONS(3387), 1, aux_sym_brace_expression_token1, - ACTIONS(3302), 1, + ACTIONS(3389), 1, sym_number, - ACTIONS(3304), 1, + ACTIONS(3391), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(3393), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(3399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(3401), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(3403), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3320), 1, + ACTIONS(3407), 1, sym__file_descriptor, - ACTIONS(3322), 1, + ACTIONS(3409), 1, sym__backtick_open, - ACTIONS(3324), 1, + ACTIONS(3411), 1, sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(3413), 1, sym__brace_expr_start, - STATE(2153), 1, + STATE(2104), 1, sym_string, - STATE(2283), 1, + STATE(2168), 1, sym_heredoc_redirect, - STATE(3605), 1, + STATE(3523), 1, sym__word_part, - ACTIONS(3308), 2, + ACTIONS(3395), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(3318), 2, + ACTIONS(3405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2033), 2, - sym_redirect, - aux_sym_subshell_repeat1, - STATE(2053), 2, + STATE(2024), 2, sym__word_like, sym_concatenation, - STATE(2155), 2, - sym_simple_expansion, - sym_expansion, - STATE(2193), 2, + STATE(2030), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2100), 2, sym_brace_expression, sym__expression, - ACTIONS(2847), 3, + STATE(2109), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(3054), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - ACTIONS(3292), 3, + anon_sym_then, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(2845), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - STATE(2154), 5, + STATE(2108), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3294), 7, + ACTIONS(3052), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96493,61 +97653,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [52918] = 23, - ACTIONS(2007), 1, + [53287] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5230), 1, - anon_sym_LPAREN, - ACTIONS(5307), 1, + ACTIONS(5209), 1, sym_word, - ACTIONS(5310), 1, + ACTIONS(5212), 1, + anon_sym_LPAREN, + ACTIONS(5214), 1, aux_sym_brace_expression_token1, - ACTIONS(5316), 1, + ACTIONS(5220), 1, anon_sym_DOLLAR, - ACTIONS(5319), 1, + ACTIONS(5223), 1, anon_sym_DQUOTE, - ACTIONS(5322), 1, + ACTIONS(5226), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5325), 1, + ACTIONS(5229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5328), 1, + ACTIONS(5232), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5331), 1, + ACTIONS(5235), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5337), 1, + ACTIONS(5241), 1, sym__backtick_open, - ACTIONS(5340), 1, + ACTIONS(5244), 1, sym__dollar_literal, - ACTIONS(5343), 1, + ACTIONS(5247), 1, sym__brace_expr_start, - STATE(1802), 1, + STATE(1712), 1, sym_string, - STATE(3580), 1, + STATE(3537), 1, sym__word_part, - ACTIONS(5334), 2, + ACTIONS(5238), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1756), 2, - sym_brace_expression, - sym__expression, - STATE(1818), 2, + STATE(1724), 2, sym_simple_expansion, sym_expansion, - ACTIONS(5313), 3, + STATE(1791), 2, + sym_brace_expression, + sym__expression, + ACTIONS(5217), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1915), 3, + STATE(1821), 3, sym_array, sym__word_like, sym_concatenation, - STATE(1804), 5, + STATE(1714), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(2984), 7, + ACTIONS(2892), 7, anon_sym_AMP, anon_sym_PIPE, anon_sym_then, @@ -96555,7 +97715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(2982), 15, + ACTIONS(2890), 16, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, anon_sym_LF, @@ -96571,538 +97732,723 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [53019] = 24, - ACTIONS(3), 1, + [53389] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(5250), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5255), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(5261), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(5264), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(5267), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(5273), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5276), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5282), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(5285), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(5288), 1, sym__brace_expr_start, - ACTIONS(5350), 1, - anon_sym_RBRACE, - ACTIONS(5352), 1, - anon_sym_LBRACK, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - STATE(1935), 1, + STATE(1670), 1, sym_string, - STATE(3558), 1, + STATE(3540), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(5279), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1693), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + STATE(1783), 2, + sym_brace_expression, + sym__expression, + ACTIONS(5258), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1079), 3, + STATE(1830), 3, + sym_array, sym__word_like, sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1671), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5346), 6, - anon_sym_SEMI, + ACTIONS(2937), 7, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5348), 14, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_fi, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [53121] = 24, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(2935), 16, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [53491] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(5130), 1, + anon_sym_LPAREN, + ACTIONS(5291), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(5294), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(5300), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(5303), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(5306), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5309), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(5312), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5315), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5321), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(5324), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(5327), 1, sym__brace_expr_start, - ACTIONS(5352), 1, - anon_sym_LBRACK, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5364), 1, - anon_sym_RBRACE, - STATE(1935), 1, + STATE(1655), 1, sym_string, - STATE(3558), 1, + STATE(3533), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(5318), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1672), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + STATE(1779), 2, + sym_brace_expression, + sym__expression, + ACTIONS(5297), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1019), 3, + STATE(1846), 3, + sym_array, sym__word_like, sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1656), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5360), 6, - anon_sym_SEMI, + ACTIONS(2937), 7, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5362), 14, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_done, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [53223] = 24, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(2935), 16, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [53593] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(5212), 1, + anon_sym_LPAREN, + ACTIONS(5330), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(5333), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(5339), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(5342), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(5345), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5348), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(5351), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5354), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5360), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(5363), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(5366), 1, sym__brace_expr_start, - ACTIONS(5352), 1, - anon_sym_LBRACK, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5370), 1, - anon_sym_RBRACE, - STATE(1935), 1, + STATE(1712), 1, sym_string, - STATE(3558), 1, + STATE(3537), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(5357), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1724), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + STATE(1791), 2, + sym_brace_expression, + sym__expression, + ACTIONS(5336), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1020), 3, + STATE(1831), 3, + sym_array, sym__word_like, sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1714), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5366), 6, - anon_sym_SEMI, + ACTIONS(2937), 7, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5368), 14, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_then, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [53325] = 24, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(2935), 16, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [53695] = 30, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(3377), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3387), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(3391), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(3393), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(3397), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(3401), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3403), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3407), 1, + sym__file_descriptor, + ACTIONS(3409), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(3411), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(3413), 1, sym__brace_expr_start, - ACTIONS(5352), 1, - anon_sym_LBRACK, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5376), 1, - anon_sym_RBRACE, - STATE(1935), 1, + ACTIONS(3456), 1, + sym_number, + STATE(2104), 1, sym_string, - STATE(3558), 1, + STATE(2168), 1, + sym_heredoc_redirect, + STATE(3523), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(3395), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(2000), 2, + sym__word_like, + sym_concatenation, + STATE(2001), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2100), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(2109), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(2778), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_do, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2108), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2776), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [53811] = 30, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3377), 1, + sym_word, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3387), 1, + aux_sym_brace_expression_token1, + ACTIONS(3391), 1, + anon_sym_DOLLAR, + ACTIONS(3393), 1, + anon_sym_DQUOTE, + ACTIONS(3397), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3399), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3401), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3403), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3407), 1, + sym__file_descriptor, + ACTIONS(3409), 1, + sym__backtick_open, + ACTIONS(3411), 1, + sym__dollar_literal, + ACTIONS(3413), 1, + sym__brace_expr_start, + ACTIONS(3458), 1, sym_number, + STATE(2104), 1, + sym_string, + STATE(2168), 1, + sym_heredoc_redirect, + STATE(3523), 1, + sym__word_part, + ACTIONS(3395), 2, sym_raw_string, sym_ansi_c_string, - STATE(1128), 3, + ACTIONS(3405), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2005), 2, sym__word_like, sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, + STATE(2012), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2100), 2, + sym_brace_expression, + sym__expression, + STATE(2109), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2977), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_do, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(2108), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5372), 6, + ACTIONS(2975), 6, + sym__heredoc_newline, + anon_sym_LF, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [53927] = 30, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3377), 1, + sym_word, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3387), 1, + aux_sym_brace_expression_token1, + ACTIONS(3389), 1, + sym_number, + ACTIONS(3391), 1, + anon_sym_DOLLAR, + ACTIONS(3393), 1, + anon_sym_DQUOTE, + ACTIONS(3397), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3399), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3401), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3403), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3407), 1, + sym__file_descriptor, + ACTIONS(3409), 1, + sym__backtick_open, + ACTIONS(3411), 1, + sym__dollar_literal, + ACTIONS(3413), 1, + sym__brace_expr_start, + STATE(2104), 1, + sym_string, + STATE(2168), 1, + sym_heredoc_redirect, + STATE(3523), 1, + sym__word_part, + ACTIONS(3395), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(3405), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2024), 2, + sym__word_like, + sym_concatenation, + STATE(2030), 2, + sym_redirect, + aux_sym_subshell_repeat1, + STATE(2100), 2, + sym_brace_expression, + sym__expression, + STATE(2109), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(3054), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5374), 14, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_do, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [53427] = 24, - ACTIONS(3), 1, + anon_sym_AMP_GT, + STATE(2108), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(3052), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [54043] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5369), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(5372), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(5381), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(5384), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5387), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(5390), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5393), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5399), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(5402), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(5405), 1, sym__brace_expr_start, - ACTIONS(5352), 1, - anon_sym_LBRACK, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5382), 1, - anon_sym_RBRACE, - STATE(1935), 1, + STATE(1740), 1, sym_string, - STATE(3558), 1, + STATE(3515), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(5396), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1748), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + STATE(1801), 2, + sym_brace_expression, + sym__expression, + ACTIONS(5375), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(983), 3, + STATE(1840), 3, + sym_array, sym__word_like, sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1741), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5378), 6, - anon_sym_SEMI, + ACTIONS(2892), 7, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5380), 14, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_do, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [53529] = 24, - ACTIONS(3), 1, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(2890), 16, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [54145] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(5253), 1, + anon_sym_LPAREN, + ACTIONS(5408), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(5411), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(5417), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(5420), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(5423), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5426), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(5429), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5432), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5438), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(5441), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(5444), 1, sym__brace_expr_start, - ACTIONS(5352), 1, - anon_sym_LBRACK, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5388), 1, - anon_sym_RBRACE, - STATE(1935), 1, + STATE(1670), 1, sym_string, - STATE(3558), 1, + STATE(3540), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(5435), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, + STATE(1693), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + STATE(1783), 2, + sym_brace_expression, + sym__expression, + ACTIONS(5414), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1029), 3, + STATE(1815), 3, + sym_array, sym__word_like, sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1671), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5384), 6, - anon_sym_SEMI, + ACTIONS(2892), 7, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5386), 14, - anon_sym_BANG, - anon_sym_EQ, + anon_sym_fi, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [53631] = 24, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(2890), 16, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [54247] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5451), 1, + anon_sym_RBRACE, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5394), 1, - anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1030), 3, + STATE(1106), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5390), 6, + ACTIONS(5447), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5392), 14, + ACTIONS(5449), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -97117,70 +98463,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [53733] = 24, + [54349] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5465), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(984), 3, + STATE(982), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5396), 6, + ACTIONS(5461), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5398), 14, + ACTIONS(5463), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -97195,70 +98541,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [53835] = 24, + [54451] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5406), 1, + ACTIONS(5471), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1134), 3, + STATE(951), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5402), 6, + ACTIONS(5467), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5404), 14, + ACTIONS(5469), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -97273,70 +98619,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [53937] = 24, + [54553] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5412), 1, + ACTIONS(5477), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1038), 3, + STATE(1091), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5408), 6, + ACTIONS(5473), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5410), 14, + ACTIONS(5475), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -97351,70 +98697,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [54039] = 24, + [54655] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5418), 1, + ACTIONS(5483), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1039), 3, + STATE(1094), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5414), 6, + ACTIONS(5479), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5416), 14, + ACTIONS(5481), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -97429,70 +98775,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [54141] = 24, + [54757] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5424), 1, + ACTIONS(5489), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(900), 3, + STATE(1063), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5420), 6, + ACTIONS(5485), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5422), 14, + ACTIONS(5487), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -97507,70 +98853,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [54243] = 24, + [54859] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5430), 1, + ACTIONS(5495), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(965), 3, + STATE(972), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5426), 6, + ACTIONS(5491), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5428), 14, + ACTIONS(5493), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -97585,70 +98931,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [54345] = 24, + [54961] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5436), 1, + ACTIONS(5501), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1010), 3, + STATE(991), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5432), 6, + ACTIONS(5497), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5434), 14, + ACTIONS(5499), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -97663,70 +99009,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [54447] = 24, + [55063] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5442), 1, + ACTIONS(5507), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1050), 3, + STATE(1032), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5438), 6, + ACTIONS(5503), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5440), 14, + ACTIONS(5505), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -97741,70 +99087,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [54549] = 24, + [55165] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5448), 1, + ACTIONS(5513), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1103), 3, + STATE(988), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5444), 6, + ACTIONS(5509), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5446), 14, + ACTIONS(5511), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -97819,70 +99165,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [54651] = 24, + [55267] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5454), 1, + ACTIONS(5519), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1051), 3, + STATE(1092), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5450), 6, + ACTIONS(5515), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5452), 14, + ACTIONS(5517), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -97897,70 +99243,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [54753] = 24, + [55369] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5460), 1, + ACTIONS(5525), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(905), 3, + STATE(990), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5456), 6, + ACTIONS(5521), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5458), 14, + ACTIONS(5523), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -97975,70 +99321,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [54855] = 24, + [55471] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5466), 1, + ACTIONS(5531), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(906), 3, + STATE(1095), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5462), 6, + ACTIONS(5527), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5464), 14, + ACTIONS(5529), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -98053,70 +99399,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [54957] = 24, + [55573] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5472), 1, + ACTIONS(5537), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1059), 3, + STATE(1053), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5468), 6, + ACTIONS(5533), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5470), 14, + ACTIONS(5535), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -98131,70 +99477,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [55059] = 24, + [55675] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5478), 1, + ACTIONS(5543), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1060), 3, + STATE(973), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5474), 6, + ACTIONS(5539), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5476), 14, + ACTIONS(5541), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -98209,70 +99555,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [55161] = 24, + [55777] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5484), 1, + ACTIONS(5549), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1012), 3, + STATE(1049), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5480), 6, + ACTIONS(5545), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5482), 14, + ACTIONS(5547), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -98287,70 +99633,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [55263] = 24, + [55879] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5490), 1, + ACTIONS(5555), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(992), 3, + STATE(952), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5486), 6, + ACTIONS(5551), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5488), 14, + ACTIONS(5553), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -98365,70 +99711,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [55365] = 24, + [55981] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5496), 1, + ACTIONS(5561), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1069), 3, + STATE(948), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5492), 6, + ACTIONS(5557), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5494), 14, + ACTIONS(5559), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -98443,70 +99789,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [55467] = 24, + [56083] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5502), 1, + ACTIONS(5567), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1070), 3, + STATE(1064), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5498), 6, + ACTIONS(5563), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5500), 14, + ACTIONS(5565), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -98521,70 +99867,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [55569] = 24, + [56185] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5508), 1, + ACTIONS(5573), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1056), 3, + STATE(1002), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5504), 6, + ACTIONS(5569), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5506), 14, + ACTIONS(5571), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -98599,70 +99945,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [55671] = 24, + [56287] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5514), 1, + ACTIONS(5579), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(913), 3, + STATE(1014), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5510), 6, + ACTIONS(5575), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5512), 14, + ACTIONS(5577), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -98677,70 +100023,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [55773] = 24, + [56389] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5520), 1, + ACTIONS(5585), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1105), 3, + STATE(986), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5516), 6, + ACTIONS(5581), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5518), 14, + ACTIONS(5583), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -98755,70 +100101,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [55875] = 24, + [56491] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5526), 1, + ACTIONS(5591), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1080), 3, + STATE(1134), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5522), 6, + ACTIONS(5587), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5524), 14, + ACTIONS(5589), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -98833,70 +100179,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [55977] = 24, + [56593] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5532), 1, + ACTIONS(5597), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(914), 3, + STATE(1065), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5528), 6, + ACTIONS(5593), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5530), 14, + ACTIONS(5595), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -98911,70 +100257,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [56079] = 24, + [56695] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5538), 1, + ACTIONS(5603), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(924), 3, + STATE(936), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5534), 6, + ACTIONS(5599), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5536), 14, + ACTIONS(5601), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -98989,70 +100335,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [56181] = 24, + [56797] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5544), 1, + ACTIONS(5609), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(993), 3, + STATE(1026), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5540), 6, + ACTIONS(5605), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5542), 14, + ACTIONS(5607), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -99067,70 +100413,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [56283] = 24, + [56899] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5550), 1, + ACTIONS(5615), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1089), 3, + STATE(987), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5546), 6, + ACTIONS(5611), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5548), 14, + ACTIONS(5613), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -99145,70 +100491,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [56385] = 24, + [57001] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5556), 1, + ACTIONS(5621), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1090), 3, + STATE(1015), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5552), 6, + ACTIONS(5617), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5554), 14, + ACTIONS(5619), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -99223,70 +100569,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [56487] = 24, + [57103] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5562), 1, + ACTIONS(5627), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(922), 3, + STATE(962), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5558), 6, + ACTIONS(5623), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5560), 14, + ACTIONS(5625), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -99301,70 +100647,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [56589] = 24, + [57205] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5568), 1, + ACTIONS(5633), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(923), 3, + STATE(1055), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5564), 6, + ACTIONS(5629), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5566), 14, + ACTIONS(5631), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -99379,70 +100725,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [56691] = 24, + [57307] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5574), 1, + ACTIONS(5639), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(973), 3, + STATE(1154), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5570), 6, + ACTIONS(5635), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5572), 14, + ACTIONS(5637), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -99457,70 +100803,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [56793] = 24, + [57409] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5580), 1, + ACTIONS(5645), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1099), 3, + STATE(999), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5576), 6, + ACTIONS(5641), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5578), 14, + ACTIONS(5643), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -99535,70 +100881,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [56895] = 24, + [57511] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5586), 1, + ACTIONS(5651), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1107), 3, + STATE(1007), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5582), 6, + ACTIONS(5647), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5584), 14, + ACTIONS(5649), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -99613,70 +100959,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [56997] = 24, + [57613] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5592), 1, + ACTIONS(5657), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(926), 3, + STATE(1000), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5588), 6, + ACTIONS(5653), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5590), 14, + ACTIONS(5655), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -99691,70 +101037,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [57099] = 24, + [57715] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5598), 1, + ACTIONS(5663), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(975), 3, + STATE(1041), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5594), 6, + ACTIONS(5659), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5596), 14, + ACTIONS(5661), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -99769,70 +101115,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [57201] = 24, + [57817] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5604), 1, + ACTIONS(5669), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1043), 3, + STATE(1108), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5600), 6, + ACTIONS(5665), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5602), 14, + ACTIONS(5667), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -99847,70 +101193,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [57303] = 24, + [57919] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5610), 1, + ACTIONS(5675), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(933), 3, + STATE(1148), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5606), 6, + ACTIONS(5671), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5608), 14, + ACTIONS(5673), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -99925,70 +101271,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [57405] = 24, + [58021] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5616), 1, + ACTIONS(5681), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(982), 3, + STATE(1011), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5612), 6, + ACTIONS(5677), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5614), 14, + ACTIONS(5679), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -100003,70 +101349,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [57507] = 24, + [58123] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5622), 1, + ACTIONS(5687), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1118), 3, + STATE(1145), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5618), 6, + ACTIONS(5683), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5620), 14, + ACTIONS(5685), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -100081,70 +101427,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [57609] = 24, + [58225] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5628), 1, + ACTIONS(5693), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(999), 3, + STATE(937), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5624), 6, + ACTIONS(5689), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5626), 14, + ACTIONS(5691), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -100159,70 +101505,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [57711] = 24, + [58327] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5634), 1, + ACTIONS(5699), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1000), 3, + STATE(939), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5630), 6, + ACTIONS(5695), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5632), 14, + ACTIONS(5697), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -100237,70 +101583,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [57813] = 24, + [58429] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5640), 1, + ACTIONS(5705), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(934), 3, + STATE(1050), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5636), 6, + ACTIONS(5701), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5638), 14, + ACTIONS(5703), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -100315,70 +101661,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [57915] = 24, + [58531] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5646), 1, + ACTIONS(5711), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1119), 3, + STATE(1122), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5642), 6, + ACTIONS(5707), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5644), 14, + ACTIONS(5709), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -100393,226 +101739,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [58017] = 24, + [58633] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, - anon_sym_DOLLAR, - ACTIONS(3268), 1, - anon_sym_DQUOTE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(5352), 1, - anon_sym_LBRACK, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5652), 1, - anon_sym_RBRACE, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3282), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3270), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1046), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(5648), 6, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5650), 14, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [58119] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, - anon_sym_DOLLAR, - ACTIONS(3268), 1, - anon_sym_DQUOTE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(5352), 1, - anon_sym_LBRACK, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5658), 1, - anon_sym_RBRACE, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3282), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3270), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(942), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(5654), 6, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5656), 14, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [58221] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5664), 1, + ACTIONS(5717), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(952), 3, + STATE(1033), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5660), 6, + ACTIONS(5713), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5662), 14, + ACTIONS(5715), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -100627,70 +101817,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [58323] = 24, + [58735] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5670), 1, + ACTIONS(5723), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(943), 3, + STATE(1054), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5666), 6, + ACTIONS(5719), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5668), 14, + ACTIONS(5721), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -100705,70 +101895,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [58425] = 24, + [58837] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5676), 1, + ACTIONS(5729), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1110), 3, + STATE(1147), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5672), 6, + ACTIONS(5725), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5674), 14, + ACTIONS(5727), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -100783,70 +101973,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [58527] = 24, + [58939] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5682), 1, + ACTIONS(5735), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(954), 3, + STATE(1165), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5678), 6, + ACTIONS(5731), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5680), 14, + ACTIONS(5733), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -100861,70 +102051,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [58629] = 24, + [59041] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5741), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(899), 3, + STATE(1123), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5684), 6, + ACTIONS(5737), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5686), 14, + ACTIONS(5739), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -100939,70 +102129,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [58731] = 24, + [59143] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5694), 1, + ACTIONS(5747), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1072), 3, + STATE(1146), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5690), 6, + ACTIONS(5743), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5692), 14, + ACTIONS(5745), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -101017,70 +102207,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [58833] = 24, + [59245] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5700), 1, + ACTIONS(5753), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(974), 3, + STATE(941), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5696), 6, + ACTIONS(5749), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5698), 14, + ACTIONS(5751), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -101095,70 +102285,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [58935] = 24, + [59347] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5706), 1, + ACTIONS(5759), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(953), 3, + STATE(949), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5702), 6, + ACTIONS(5755), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5704), 14, + ACTIONS(5757), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -101173,49 +102363,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [59037] = 24, + [59449] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5712), 1, + ACTIONS(5765), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, @@ -101223,20 +102413,20 @@ static const uint16_t ts_small_parse_table[] = { sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5708), 6, + ACTIONS(5761), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5710), 14, + ACTIONS(5763), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -101251,70 +102441,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [59139] = 24, + [59551] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5718), 1, + ACTIONS(5771), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(985), 3, + STATE(1086), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5714), 6, + ACTIONS(5767), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5716), 14, + ACTIONS(5769), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -101329,70 +102519,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [59241] = 24, + [59653] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5724), 1, + ACTIONS(5777), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1008), 3, + STATE(1030), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5720), 6, + ACTIONS(5773), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5722), 14, + ACTIONS(5775), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -101407,70 +102597,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [59343] = 24, + [59755] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5730), 1, + ACTIONS(5783), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1009), 3, + STATE(1044), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5726), 6, + ACTIONS(5779), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5728), 14, + ACTIONS(5781), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -101485,70 +102675,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [59445] = 24, + [59857] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5736), 1, + ACTIONS(5789), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1124), 3, + STATE(978), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5732), 6, + ACTIONS(5785), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5734), 14, + ACTIONS(5787), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -101563,70 +102753,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [59547] = 24, + [59959] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5742), 1, + ACTIONS(5795), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1108), 3, + STATE(959), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5738), 6, + ACTIONS(5791), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5740), 14, + ACTIONS(5793), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -101641,70 +102831,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [59649] = 24, + [60061] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5748), 1, + ACTIONS(5801), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1127), 3, + STATE(1100), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5744), 6, + ACTIONS(5797), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5746), 14, + ACTIONS(5799), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -101719,70 +102909,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [59751] = 24, + [60163] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5754), 1, + ACTIONS(5807), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(961), 3, + STATE(1031), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5750), 6, + ACTIONS(5803), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5752), 14, + ACTIONS(5805), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -101797,70 +102987,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [59853] = 24, + [60265] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5760), 1, + ACTIONS(5813), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1129), 3, + STATE(1139), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5756), 6, + ACTIONS(5809), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5758), 14, + ACTIONS(5811), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -101875,70 +103065,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [59955] = 24, + [60367] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5766), 1, + ACTIONS(5819), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(962), 3, + STATE(1103), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5762), 6, + ACTIONS(5815), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5764), 14, + ACTIONS(5817), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -101953,70 +103143,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [60057] = 24, + [60469] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5772), 1, + ACTIONS(5825), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1100), 3, + STATE(932), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5768), 6, + ACTIONS(5821), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5770), 14, + ACTIONS(5823), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -102031,70 +103221,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [60159] = 24, + [60571] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5778), 1, + ACTIONS(5831), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1052), 3, + STATE(1036), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5774), 6, + ACTIONS(5827), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5776), 14, + ACTIONS(5829), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -102109,70 +103299,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [60261] = 24, + [60673] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5352), 1, + ACTIONS(5453), 1, anon_sym_LBRACK, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5784), 1, + ACTIONS(5837), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1098), 3, + STATE(1140), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5780), 6, + ACTIONS(5833), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5782), 14, + ACTIONS(5835), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -102187,68 +103377,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [60363] = 23, + [60775] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5453), 1, + anon_sym_LBRACK, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5790), 1, + ACTIONS(5843), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(960), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5839), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5841), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -102263,68 +103455,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [60462] = 23, + [60877] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5453), 1, + anon_sym_LBRACK, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5792), 1, + ACTIONS(5849), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1077), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5845), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5847), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -102339,68 +103533,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [60561] = 23, + [60979] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5453), 1, + anon_sym_LBRACK, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5460), 1, + ACTIONS(5855), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(905), 3, + STATE(1161), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5456), 6, + ACTIONS(5851), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5458), 14, + ACTIONS(5853), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -102415,68 +103611,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [60660] = 23, + [61081] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5453), 1, + anon_sym_LBRACK, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5794), 1, + ACTIONS(5861), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1158), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5857), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5859), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -102491,68 +103689,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [60759] = 23, + [61183] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5453), 1, + anon_sym_LBRACK, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5466), 1, + ACTIONS(5867), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(906), 3, + STATE(1068), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5462), 6, + ACTIONS(5863), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5464), 14, + ACTIONS(5865), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -102567,68 +103767,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [60858] = 23, + [61285] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5453), 1, + anon_sym_LBRACK, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5796), 1, + ACTIONS(5873), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1074), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5869), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5871), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -102643,68 +103845,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [60957] = 23, + [61387] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5453), 1, + anon_sym_LBRACK, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5798), 1, + ACTIONS(5879), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1162), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5875), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5877), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -102719,68 +103923,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [61056] = 23, + [61489] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5453), 1, + anon_sym_LBRACK, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5800), 1, + ACTIONS(5885), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1163), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5881), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5883), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -102795,68 +104001,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [61155] = 23, + [61591] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5453), 1, + anon_sym_LBRACK, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5538), 1, + ACTIONS(5891), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(924), 3, + STATE(1039), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5534), 6, + ACTIONS(5887), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5536), 14, + ACTIONS(5889), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -102871,68 +104079,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [61254] = 23, + [61693] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5453), 1, + anon_sym_LBRACK, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5802), 1, + ACTIONS(5897), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1012), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5893), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5895), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -102947,68 +104157,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [61353] = 23, + [61795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(5901), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5899), 37, + sym__backtick_open, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [61854] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5514), 1, + ACTIONS(5699), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(913), 3, + STATE(939), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5510), 6, + ACTIONS(5695), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5512), 14, + ACTIONS(5697), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -103023,10 +104289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [61452] = 3, + [61953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 14, + ACTIONS(5905), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -103041,7 +104307,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 37, + ACTIONS(5903), 37, sym__backtick_open, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -103079,68 +104345,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [61511] = 23, + [62012] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5532), 1, + ACTIONS(5911), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(914), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5528), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5530), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -103155,68 +104421,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [61610] = 23, + [62111] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5808), 1, + ACTIONS(5603), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(936), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5599), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5601), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -103231,68 +104497,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [61709] = 23, + [62210] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5810), 1, + ACTIONS(5913), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -103307,68 +104573,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [61808] = 23, + [62309] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5812), 1, + ACTIONS(5915), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -103383,68 +104649,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [61907] = 23, + [62408] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5592), 1, + ACTIONS(5917), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(926), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5588), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5590), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -103459,68 +104725,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [62006] = 23, + [62507] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5562), 1, + ACTIONS(5471), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(922), 3, + STATE(951), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5558), 6, + ACTIONS(5467), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5560), 14, + ACTIONS(5469), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -103535,68 +104801,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [62105] = 23, + [62606] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5814), 1, + ACTIONS(5693), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(937), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5689), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5691), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -103611,124 +104877,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [62204] = 3, + [62705] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 14, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [62263] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5820), 1, + ACTIONS(5919), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -103743,68 +104953,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [62362] = 23, + [62804] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5568), 1, + ACTIONS(5921), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(923), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5564), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5566), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -103819,68 +105029,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [62461] = 23, + [62903] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5822), 1, + ACTIONS(5923), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -103895,68 +105105,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [62560] = 23, + [63002] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5824), 1, + ACTIONS(5925), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -103971,68 +105181,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [62659] = 23, + [63101] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5826), 1, + ACTIONS(5927), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -104047,68 +105257,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [62758] = 23, + [63200] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5828), 1, + ACTIONS(5929), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -104123,124 +105333,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [62857] = 3, + [63299] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5832), 14, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [62916] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5834), 1, + ACTIONS(5931), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -104255,12 +105409,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [63015] = 3, + [63398] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 14, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5561), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(948), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5557), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5559), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -104270,109 +105480,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [63074] = 23, + anon_sym_AT, + [63497] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5610), 1, + ACTIONS(5933), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(933), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5606), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5608), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -104387,68 +105561,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [63173] = 23, + [63596] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5840), 1, + ACTIONS(5867), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1068), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5863), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5865), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -104463,124 +105637,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [63272] = 3, + [63695] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 14, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [63331] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5640), 1, + ACTIONS(5555), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(934), 3, + STATE(952), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5636), 6, + ACTIONS(5551), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5638), 14, + ACTIONS(5553), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -104595,68 +105713,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [63430] = 23, + [63794] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5846), 1, + ACTIONS(5759), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(949), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5755), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5757), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -104671,68 +105789,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [63529] = 23, + [63893] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5848), 1, + ACTIONS(5935), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -104747,68 +105865,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [63628] = 23, + [63992] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5850), 1, + ACTIONS(5937), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -104823,68 +105941,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [63727] = 23, + [64091] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5430), 1, + ACTIONS(5939), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(965), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5426), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5428), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -104899,68 +106017,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [63826] = 23, + [64190] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5658), 1, + ACTIONS(5941), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(942), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5654), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5656), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -104975,68 +106093,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [63925] = 23, + [64289] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5852), 1, + ACTIONS(5943), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -105051,68 +106169,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [64024] = 23, + [64388] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5854), 1, + ACTIONS(5945), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -105127,68 +106245,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [64123] = 23, + [64487] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5664), 1, + ACTIONS(5795), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(952), 3, + STATE(959), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5660), 6, + ACTIONS(5791), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5662), 14, + ACTIONS(5793), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -105203,68 +106321,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [64222] = 23, + [64586] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5670), 1, + ACTIONS(5947), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(943), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5666), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5668), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -105279,68 +106397,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [64321] = 23, + [64685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, - anon_sym_DOLLAR, - ACTIONS(3268), 1, - anon_sym_DQUOTE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5856), 1, - anon_sym_RBRACE, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3282), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3270), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1104), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(5786), 6, - anon_sym_SEMI, + ACTIONS(5951), 14, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5788), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -105350,73 +106412,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5949), 37, + sym__backtick_open, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_AT, - [64420] = 23, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [64744] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5858), 1, + ACTIONS(5609), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1026), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5605), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5607), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -105431,68 +106529,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [64519] = 23, + [64843] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5860), 1, + ACTIONS(5843), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(960), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5839), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5841), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -105507,68 +106605,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [64618] = 23, + [64942] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5862), 1, + ACTIONS(5953), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -105583,68 +106681,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [64717] = 23, + [65041] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5955), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(899), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5684), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5686), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -105659,68 +106757,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [64816] = 23, + [65140] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5864), 1, + ACTIONS(5957), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -105735,124 +106833,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [64915] = 3, + [65239] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5868), 14, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [64974] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5682), 1, + ACTIONS(5513), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(954), 3, + STATE(988), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5678), 6, + ACTIONS(5509), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5680), 14, + ACTIONS(5511), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -105867,68 +106909,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [65073] = 23, + [65338] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5870), 1, + ACTIONS(5959), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -105943,68 +106985,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [65172] = 23, + [65437] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5706), 1, + ACTIONS(5961), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(953), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5702), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5704), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -106019,68 +107061,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [65271] = 23, + [65536] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5872), 1, + ACTIONS(5789), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(978), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5785), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5787), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -106095,68 +107137,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [65370] = 23, + [65635] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5874), 1, + ACTIONS(5495), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(972), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5491), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5493), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -106171,68 +107213,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [65469] = 23, + [65734] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5876), 1, + ACTIONS(5963), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -106247,68 +107289,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [65568] = 23, + [65833] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5878), 1, + ACTIONS(5965), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -106323,10 +107365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [65667] = 3, + [65932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 14, + ACTIONS(5969), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -106341,7 +107383,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 37, + ACTIONS(5967), 37, sym__backtick_open, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -106379,68 +107421,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [65726] = 23, + [65991] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5754), 1, + ACTIONS(5971), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(961), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5750), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5752), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -106455,68 +107497,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [65825] = 23, + [66090] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5884), 1, + ACTIONS(5543), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(973), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5539), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5541), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -106531,124 +107573,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [65924] = 3, + [66189] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 14, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5886), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [65983] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5766), 1, + ACTIONS(5973), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(962), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5762), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5764), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -106663,68 +107649,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [66082] = 23, + [66288] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5890), 1, + ACTIONS(5975), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -106739,68 +107725,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [66181] = 23, + [66387] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5892), 1, + ACTIONS(5977), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -106815,68 +107801,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [66280] = 23, + [66486] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5894), 1, + ACTIONS(5525), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(990), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5521), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5523), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -106891,68 +107877,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [66379] = 23, + [66585] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5598), 1, + ACTIONS(5465), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(975), 3, + STATE(982), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5594), 6, + ACTIONS(5461), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5596), 14, + ACTIONS(5463), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -106967,68 +107953,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [66478] = 23, + [66684] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5896), 1, + ACTIONS(5573), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1002), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5569), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5571), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -107043,68 +108029,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [66577] = 23, + [66783] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5898), 1, + ACTIONS(5979), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -107119,68 +108105,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [66676] = 23, + [66882] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5400), 1, + ACTIONS(5981), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(984), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5396), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5398), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -107195,68 +108181,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [66775] = 23, + [66981] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5574), 1, + ACTIONS(5585), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(973), 3, + STATE(986), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5570), 6, + ACTIONS(5581), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5572), 14, + ACTIONS(5583), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -107271,68 +108257,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [66874] = 23, + [67080] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5900), 1, + ACTIONS(5983), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -107347,12 +108333,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [66973] = 3, + [67179] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5904), 14, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5985), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -107362,109 +108404,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [67032] = 23, + anon_sym_AT, + [67278] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5906), 1, + ACTIONS(5987), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -107479,68 +108485,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [67131] = 23, + [67377] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5700), 1, + ACTIONS(5989), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(974), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5696), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5698), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -107555,68 +108561,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [67230] = 23, + [67476] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5908), 1, + ACTIONS(5615), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(987), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5611), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5613), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -107631,68 +108637,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [67329] = 23, + [67575] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5910), 1, + ACTIONS(5991), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -107707,68 +108713,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [67428] = 23, + [67674] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5912), 1, + ACTIONS(5993), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -107783,68 +108789,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [67527] = 23, + [67773] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5914), 1, + ACTIONS(5995), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -107859,68 +108865,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [67626] = 23, + [67872] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5616), 1, + ACTIONS(5997), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(982), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5612), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5614), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -107935,68 +108941,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [67725] = 23, + [67971] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5916), 1, + ACTIONS(5507), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1032), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5503), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5505), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -108011,68 +109017,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [67824] = 23, + [68070] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5718), 1, + ACTIONS(5999), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(985), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5714), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5716), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -108087,68 +109093,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [67923] = 23, + [68169] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5918), 1, + ACTIONS(6001), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -108163,68 +109169,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [68022] = 23, + [68268] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5382), 1, + ACTIONS(5645), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(983), 3, + STATE(999), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5378), 6, + ACTIONS(5641), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5380), 14, + ACTIONS(5643), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -108239,68 +109245,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [68121] = 23, + [68367] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5920), 1, + ACTIONS(6003), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -108315,68 +109321,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [68220] = 23, + [68466] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5922), 1, + ACTIONS(5579), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1014), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5575), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5577), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -108391,68 +109397,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [68319] = 23, + [68565] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5924), 1, + ACTIONS(5651), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1007), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5647), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5649), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -108467,68 +109473,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [68418] = 23, + [68664] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5926), 1, + ACTIONS(6005), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -108543,68 +109549,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [68517] = 23, + [68763] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5928), 1, + ACTIONS(5657), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1000), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5653), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5655), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -108619,68 +109625,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [68616] = 23, + [68862] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5448), 1, + ACTIONS(6007), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1103), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5444), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5446), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -108695,68 +109701,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [68715] = 23, + [68961] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5490), 1, + ACTIONS(6009), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(992), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5486), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5488), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -108771,68 +109777,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [68814] = 23, + [69060] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5930), 1, + ACTIONS(6011), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -108847,124 +109853,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [68913] = 3, + [69159] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 14, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [68972] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5544), 1, + ACTIONS(6013), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(993), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5540), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5542), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -108979,68 +109929,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [69071] = 23, + [69258] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5936), 1, + ACTIONS(6015), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -109055,68 +110005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [69170] = 23, + [69357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, - anon_sym_DOLLAR, - ACTIONS(3268), 1, - anon_sym_DQUOTE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5938), 1, - anon_sym_RBRACE, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3282), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3270), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1104), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(5786), 6, - anon_sym_SEMI, + ACTIONS(6019), 14, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5788), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -109126,149 +110020,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6017), 37, + sym__backtick_open, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_AT, - [69269] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, - anon_sym_DOLLAR, - ACTIONS(3268), 1, + anon_sym_POUND, + sym_variable_name, anon_sym_DQUOTE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(5354), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5940), 1, - anon_sym_RBRACE, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3282), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3270), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1104), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(5786), 6, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5788), 14, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [69368] = 23, + [69416] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5628), 1, + ACTIONS(5681), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(999), 3, + STATE(1011), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5624), 6, + ACTIONS(5677), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5626), 14, + ACTIONS(5679), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -109283,68 +110137,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [69467] = 23, + [69515] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5942), 1, + ACTIONS(6021), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -109359,68 +110213,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [69566] = 23, + [69614] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5436), 1, + ACTIONS(5621), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1010), 3, + STATE(1015), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5432), 6, + ACTIONS(5617), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5434), 14, + ACTIONS(5619), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -109435,68 +110289,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [69665] = 23, + [69713] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5634), 1, + ACTIONS(6023), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1000), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5630), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5632), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -109511,68 +110365,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [69764] = 23, + [69812] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5944), 1, + ACTIONS(6025), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -109587,68 +110441,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [69863] = 23, + [69911] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5946), 1, + ACTIONS(5897), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1012), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5893), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5895), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -109663,68 +110517,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [69962] = 23, + [70010] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5948), 1, + ACTIONS(6027), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -109739,68 +110593,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [70061] = 23, + [70109] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5950), 1, + ACTIONS(6029), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -109815,68 +110669,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [70160] = 23, + [70208] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5484), 1, + ACTIONS(6031), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1012), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5480), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5482), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -109891,68 +110745,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [70259] = 23, + [70307] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5724), 1, + ACTIONS(6033), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1008), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5720), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5722), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -109967,68 +110821,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [70358] = 23, + [70406] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5952), 1, + ACTIONS(6035), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -110043,68 +110897,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [70457] = 23, + [70505] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5954), 1, + ACTIONS(6037), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -110119,68 +110973,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [70556] = 23, + [70604] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5730), 1, + ACTIONS(6039), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1009), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5726), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5728), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -110195,68 +111049,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [70655] = 23, + [70703] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5956), 1, + ACTIONS(5717), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1033), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5713), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5715), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -110271,68 +111125,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [70754] = 23, + [70802] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5958), 1, + ACTIONS(5663), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1041), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5659), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5661), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -110347,68 +111201,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [70853] = 23, + [70901] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5960), 1, + ACTIONS(5783), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1044), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5779), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5781), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -110423,68 +111277,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [70952] = 23, + [71000] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5962), 1, + ACTIONS(6041), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -110499,68 +111353,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [71051] = 23, + [71099] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5742), 1, + ACTIONS(6043), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1108), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5738), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5740), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -110575,68 +111429,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [71150] = 23, + [71198] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5964), 1, + ACTIONS(5777), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1030), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5773), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5775), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -110651,68 +111505,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [71249] = 23, + [71297] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5966), 1, + ACTIONS(6045), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -110727,68 +111581,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [71348] = 23, + [71396] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5364), 1, + ACTIONS(6047), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1019), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5360), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5362), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -110803,68 +111657,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [71447] = 23, + [71495] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5968), 1, + ACTIONS(5831), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1036), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5827), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5829), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -110879,68 +111733,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [71546] = 23, + [71594] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5778), 1, + ACTIONS(6049), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1052), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5774), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5776), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -110955,68 +111809,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [71645] = 23, + [71693] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5370), 1, + ACTIONS(6051), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1020), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5366), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5368), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -111031,68 +111885,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [71744] = 23, + [71792] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5970), 1, + ACTIONS(5807), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1031), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5803), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5805), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -111107,68 +111961,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [71843] = 23, + [71891] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5972), 1, + ACTIONS(6053), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -111183,68 +112037,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [71942] = 23, + [71990] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5974), 1, + ACTIONS(6055), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -111259,68 +112113,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [72041] = 23, + [72089] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5976), 1, + ACTIONS(6057), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -111335,124 +112189,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [72140] = 3, + [72188] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5980), 14, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [72199] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5982), 1, + ACTIONS(6059), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -111467,68 +112265,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [72298] = 23, + [72287] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5388), 1, + ACTIONS(6061), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1029), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5384), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5386), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -111543,68 +112341,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [72397] = 23, + [72386] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5984), 1, + ACTIONS(5891), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1039), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5887), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5889), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -111619,124 +112417,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [72496] = 3, + [72485] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5988), 14, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [72555] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5394), 1, + ACTIONS(6063), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1030), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5390), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5392), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -111751,68 +112493,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [72654] = 23, + [72584] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5990), 1, + ACTIONS(6065), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -111827,68 +112569,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [72753] = 23, + [72683] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5992), 1, + ACTIONS(5705), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1050), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5701), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5703), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -111903,68 +112645,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [72852] = 23, + [72782] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5994), 1, + ACTIONS(5849), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1077), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5845), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5847), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -111979,68 +112721,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [72951] = 23, + [72881] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5604), 1, + ACTIONS(6067), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1043), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5600), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5602), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -112055,68 +112797,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [73050] = 23, + [72980] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5996), 1, + ACTIONS(6069), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -112131,12 +112873,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [73149] = 3, + [73079] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6000), 14, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6071), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -112146,109 +112944,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [73208] = 23, + anon_sym_AT, + [73178] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5412), 1, + ACTIONS(5549), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1038), 3, + STATE(1049), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5408), 6, + ACTIONS(5545), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5410), 14, + ACTIONS(5547), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -112263,68 +113025,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [73307] = 23, + [73277] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6002), 1, + ACTIONS(6073), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -112339,68 +113101,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [73406] = 23, + [73376] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5418), 1, + ACTIONS(6075), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1039), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5414), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5416), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -112415,68 +113177,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [73505] = 23, + [73475] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6004), 1, + ACTIONS(5537), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1053), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5533), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5535), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -112491,68 +113253,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [73604] = 23, + [73574] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6006), 1, + ACTIONS(6077), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -112567,68 +113329,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [73703] = 23, + [73673] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6008), 1, + ACTIONS(6079), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -112643,68 +113405,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [73802] = 23, + [73772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, - anon_sym_DOLLAR, - ACTIONS(3268), 1, - anon_sym_DQUOTE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5508), 1, - anon_sym_RBRACE, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3282), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3270), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1056), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(5504), 6, - anon_sym_SEMI, + ACTIONS(6083), 14, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5506), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -112714,73 +113420,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6081), 37, + sym__backtick_open, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_AT, - [73901] = 23, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [73831] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5652), 1, + ACTIONS(6085), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1046), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5648), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5650), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -112795,68 +113537,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [74000] = 23, + [73930] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6010), 1, + ACTIONS(6087), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -112871,68 +113613,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [74099] = 23, + [74029] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6012), 1, + ACTIONS(5723), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1054), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5719), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5721), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -112947,68 +113689,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [74198] = 23, + [74128] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5442), 1, + ACTIONS(6089), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1050), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5438), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5440), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -113023,68 +113765,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [74297] = 23, + [74227] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6014), 1, + ACTIONS(6091), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -113099,68 +113841,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [74396] = 23, + [74326] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6016), 1, + ACTIONS(6093), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -113175,68 +113917,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [74495] = 23, + [74425] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6018), 1, + ACTIONS(6095), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -113251,68 +113993,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [74594] = 23, + [74524] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5454), 1, + ACTIONS(5489), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1051), 3, + STATE(1063), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5450), 6, + ACTIONS(5485), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5452), 14, + ACTIONS(5487), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -113327,68 +114069,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [74693] = 23, + [74623] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6020), 1, + ACTIONS(6097), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -113403,68 +114145,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [74792] = 23, + [74722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(6101), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, anon_sym_DOLLAR, - ACTIONS(3268), 1, - anon_sym_DQUOTE, - ACTIONS(3276), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(6099), 37, sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(5354), 1, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6022), 1, - anon_sym_RBRACE, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3282), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3270), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1104), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(5786), 6, - anon_sym_SEMI, + [74781] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6105), 14, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5788), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -113474,73 +114216,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6103), 37, + sym__backtick_open, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_AT, - [74891] = 23, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [74840] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6024), 1, + ACTIONS(5633), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1055), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5629), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5631), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -113555,86 +114333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [74990] = 23, + [74939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, - anon_sym_DOLLAR, - ACTIONS(3268), 1, - anon_sym_DQUOTE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6026), 1, - anon_sym_RBRACE, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3282), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3270), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1104), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(5786), 6, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5788), 14, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [75089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6030), 14, + ACTIONS(6109), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -113649,7 +114351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 37, + ACTIONS(6107), 37, sym__backtick_open, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -113687,68 +114389,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [75148] = 23, + [74998] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5472), 1, + ACTIONS(6111), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1059), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5468), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5470), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -113763,68 +114465,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [75247] = 23, + [75097] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6032), 1, + ACTIONS(6113), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -113839,68 +114541,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [75346] = 23, + [75196] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6034), 1, + ACTIONS(6115), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -113915,68 +114617,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [75445] = 23, + [75295] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5478), 1, + ACTIONS(6117), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1060), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5474), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5476), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -113991,68 +114693,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [75544] = 23, + [75394] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6036), 1, + ACTIONS(5765), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1073), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5761), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5763), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -114067,68 +114769,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [75643] = 23, + [75493] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6038), 1, + ACTIONS(6119), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -114143,68 +114845,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [75742] = 23, + [75592] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6040), 1, + ACTIONS(6121), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -114219,68 +114921,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [75841] = 23, + [75691] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5694), 1, + ACTIONS(5771), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1072), 3, + STATE(1086), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5690), 6, + ACTIONS(5767), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5692), 14, + ACTIONS(5769), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -114295,68 +114997,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [75940] = 23, + [75790] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6042), 1, + ACTIONS(5501), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(991), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5497), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5499), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -114371,124 +115073,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [76039] = 3, + [75889] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6046), 14, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [76098] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5496), 1, + ACTIONS(5873), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1069), 3, + STATE(1074), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5492), 6, + ACTIONS(5869), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5494), 14, + ACTIONS(5871), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -114503,68 +115149,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [76197] = 23, + [75988] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6048), 1, + ACTIONS(6123), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -114579,68 +115225,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [76296] = 23, + [76087] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5712), 1, + ACTIONS(6125), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1073), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5708), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5710), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -114655,68 +115301,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [76395] = 23, + [76186] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5502), 1, + ACTIONS(6127), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1070), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5498), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5500), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -114731,68 +115377,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [76494] = 23, + [76285] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6050), 1, + ACTIONS(5801), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1100), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5797), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5799), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -114807,68 +115453,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [76593] = 23, + [76384] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6052), 1, + ACTIONS(6129), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -114883,68 +115529,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [76692] = 23, + [76483] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6054), 1, + ACTIONS(6131), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -114959,68 +115605,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [76791] = 23, + [76582] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6056), 1, + ACTIONS(5483), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1094), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5479), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5481), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -115035,68 +115681,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [76890] = 23, + [76681] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6058), 1, + ACTIONS(6133), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -115111,68 +115757,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [76989] = 23, + [76780] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6060), 1, + ACTIONS(6135), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -115187,68 +115833,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [77088] = 23, + [76879] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5350), 1, - anon_sym_RBRACE, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - STATE(1935), 1, + ACTIONS(5753), 1, + anon_sym_RBRACE, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1079), 3, + STATE(941), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5346), 6, + ACTIONS(5749), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5348), 14, + ACTIONS(5751), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -115263,68 +115909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [77187] = 23, + [76978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, - anon_sym_DOLLAR, - ACTIONS(3268), 1, - anon_sym_DQUOTE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6062), 1, - anon_sym_RBRACE, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3282), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3270), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1104), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(5786), 6, - anon_sym_SEMI, + ACTIONS(6139), 14, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5788), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -115334,15 +115924,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6137), 37, + sym__backtick_open, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_AT, - [77286] = 3, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [77037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6066), 14, + ACTIONS(6143), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -115357,7 +115983,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 37, + ACTIONS(6141), 37, sym__backtick_open, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -115395,68 +116021,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [77345] = 23, + [77096] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5526), 1, + ACTIONS(5477), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1080), 3, + STATE(1091), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5522), 6, + ACTIONS(5473), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5524), 14, + ACTIONS(5475), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -115471,68 +116097,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [77444] = 23, + [77195] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6068), 1, + ACTIONS(6145), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -115547,68 +116173,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [77543] = 23, + [77294] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6070), 1, + ACTIONS(6147), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -115623,68 +116249,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [77642] = 23, + [77393] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6072), 1, + ACTIONS(6149), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -115699,12 +116325,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [77741] = 3, + [77492] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 14, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5519), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1092), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5515), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5517), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -115714,109 +116396,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [77800] = 23, + anon_sym_AT, + [77591] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5676), 1, + ACTIONS(5531), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1110), 3, + STATE(1095), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5672), 6, + ACTIONS(5527), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5674), 14, + ACTIONS(5529), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -115831,68 +116477,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [77899] = 23, + [77690] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5772), 1, + ACTIONS(6151), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1100), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5768), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5770), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -115907,68 +116553,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [77998] = 23, + [77789] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5550), 1, + ACTIONS(6153), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1089), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5546), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5548), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -115983,68 +116629,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [78097] = 23, + [77888] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6078), 1, + ACTIONS(6155), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -116059,68 +116705,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [78196] = 23, + [77987] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6080), 1, + ACTIONS(6157), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -116135,68 +116781,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [78295] = 23, + [78086] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5556), 1, + ACTIONS(6159), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1090), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5552), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5554), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -116211,68 +116857,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [78394] = 23, + [78185] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6082), 1, + ACTIONS(6161), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -116287,68 +116933,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [78493] = 23, + [78284] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6084), 1, + ACTIONS(5591), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1134), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5587), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5589), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -116363,68 +117009,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [78592] = 23, + [78383] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6086), 1, + ACTIONS(5819), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1103), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5815), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5817), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -116439,68 +117085,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [78691] = 23, + [78482] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6088), 1, + ACTIONS(6163), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -116515,68 +117161,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [78790] = 23, + [78581] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5520), 1, + ACTIONS(5567), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1105), 3, + STATE(1064), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5516), 6, + ACTIONS(5563), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5518), 14, + ACTIONS(5565), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -116591,68 +117237,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [78889] = 23, + [78680] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5784), 1, + ACTIONS(6165), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1098), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5780), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5782), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -116667,68 +117313,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [78988] = 23, + [78779] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5451), 1, + anon_sym_RBRACE, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6090), 1, - anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1106), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5447), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5449), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -116743,68 +117389,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [79087] = 23, + [78878] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6092), 1, + ACTIONS(6167), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -116819,68 +117465,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [79186] = 23, + [78977] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5580), 1, + ACTIONS(6169), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1099), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5576), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5578), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -116895,68 +117541,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [79285] = 23, + [79076] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6094), 1, + ACTIONS(5669), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1108), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5665), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5667), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -116971,68 +117617,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [79384] = 23, + [79175] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6096), 1, + ACTIONS(6171), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -117047,68 +117693,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [79483] = 23, + [79274] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6098), 1, + ACTIONS(6173), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -117123,68 +117769,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [79582] = 23, + [79373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(6177), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6175), 37, + sym__backtick_open, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [79432] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6100), 1, + ACTIONS(6179), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -117199,68 +117901,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [79681] = 23, + [79531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(6183), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6181), 37, + sym__backtick_open, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [79590] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5586), 1, + ACTIONS(6185), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1107), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5582), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5584), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -117275,68 +118033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [79780] = 23, + [79689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, - anon_sym_DOLLAR, - ACTIONS(3268), 1, - anon_sym_DQUOTE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(5354), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6102), 1, - anon_sym_RBRACE, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3282), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3270), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1104), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(5786), 6, - anon_sym_SEMI, + ACTIONS(6189), 14, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5788), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -117346,149 +118048,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6187), 37, + sym__backtick_open, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_AT, - [79879] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, - sym_word, - ACTIONS(3262), 1, - aux_sym_brace_expression_token1, - ACTIONS(3266), 1, - anon_sym_DOLLAR, - ACTIONS(3268), 1, + anon_sym_POUND, + sym_variable_name, anon_sym_DQUOTE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3286), 1, - sym__dollar_literal, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(5354), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6104), 1, - anon_sym_RBRACE, - STATE(1935), 1, - sym_string, - STATE(3558), 1, - sym__word_part, - ACTIONS(3282), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, - sym_brace_expression, - sym__expression, - STATE(1951), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3270), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1104), 3, - sym__word_like, - sym_concatenation, - aux_sym__expansion_tail, - STATE(1937), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(5786), 6, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_POUND, - ACTIONS(5788), 14, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_AT, - [79978] = 23, + [79748] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6106), 1, + ACTIONS(6191), 1, sym_word, - ACTIONS(6115), 1, + ACTIONS(6200), 1, anon_sym_RBRACE, - ACTIONS(6117), 1, + ACTIONS(6202), 1, aux_sym_brace_expression_token1, - ACTIONS(6123), 1, + ACTIONS(6208), 1, anon_sym_DOLLAR, - ACTIONS(6126), 1, + ACTIONS(6211), 1, anon_sym_DQUOTE, - ACTIONS(6129), 1, + ACTIONS(6214), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6132), 1, + ACTIONS(6217), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6135), 1, + ACTIONS(6220), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6138), 1, + ACTIONS(6223), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6144), 1, + ACTIONS(6229), 1, sym__backtick_open, - ACTIONS(6147), 1, + ACTIONS(6232), 1, sym__dollar_literal, - ACTIONS(6150), 1, + ACTIONS(6235), 1, sym__brace_expr_start, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(6141), 2, + ACTIONS(6226), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(6120), 3, + ACTIONS(6205), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(6109), 6, + ACTIONS(6194), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(6112), 14, + ACTIONS(6197), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -117503,68 +118165,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [80077] = 23, + [79847] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6153), 1, + ACTIONS(5711), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1122), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5707), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5709), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -117579,124 +118241,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [80176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6157), 14, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6155), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [80235] = 23, + [79946] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6159), 1, + ACTIONS(6238), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -117711,68 +118317,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [80334] = 23, + [80045] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6161), 1, + ACTIONS(6240), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -117787,10 +118393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [80433] = 3, + [80144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6165), 14, + ACTIONS(6244), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -117805,7 +118411,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 37, + ACTIONS(6242), 37, sym__backtick_open, anon_sym_SEMI, anon_sym_AMP_AMP, @@ -117843,68 +118449,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [80492] = 23, + [80203] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6167), 1, + ACTIONS(5639), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1154), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5635), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5637), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -117919,68 +118525,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [80591] = 23, + [80302] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5736), 1, + ACTIONS(5741), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1124), 3, + STATE(1123), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5732), 6, + ACTIONS(5737), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5734), 14, + ACTIONS(5739), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -117995,68 +118601,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [80690] = 23, + [80401] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6169), 1, + ACTIONS(6246), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -118071,68 +118677,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [80789] = 23, + [80500] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5622), 1, + ACTIONS(5687), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1118), 3, + STATE(1145), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5618), 6, + ACTIONS(5683), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5620), 14, + ACTIONS(5685), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -118147,68 +118753,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [80888] = 23, + [80599] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6171), 1, + ACTIONS(6248), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -118223,124 +118829,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [80987] = 3, + [80698] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6175), 14, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 37, - sym__backtick_open, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [81046] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5646), 1, + ACTIONS(6250), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1119), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5642), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5644), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -118355,68 +118905,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [81145] = 23, + [80797] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6177), 1, + ACTIONS(6252), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -118431,68 +118981,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [81244] = 23, + [80896] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6179), 1, + ACTIONS(5729), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1147), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5725), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5727), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -118507,68 +119057,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [81343] = 23, + [80995] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6181), 1, + ACTIONS(6254), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -118583,68 +119133,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [81442] = 23, + [81094] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5760), 1, + ACTIONS(6256), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1129), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5756), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5758), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -118659,68 +119209,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [81541] = 23, + [81193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(6260), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6258), 37, + sym__backtick_open, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [81252] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6183), 1, + ACTIONS(5735), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1165), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5731), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5733), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -118735,68 +119341,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [81640] = 23, + [81351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(6264), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6262), 37, + sym__backtick_open, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [81410] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5748), 1, + ACTIONS(6266), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1127), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5744), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5746), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -118811,68 +119473,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [81739] = 23, + [81509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(6270), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6268), 37, + sym__backtick_open, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [81568] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6185), 1, + ACTIONS(5813), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1139), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5809), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5811), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -118887,68 +119605,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [81838] = 23, + [81667] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6187), 1, + ACTIONS(6272), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -118963,68 +119681,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [81937] = 23, + [81766] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5376), 1, + ACTIONS(6274), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1128), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5372), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5374), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119039,68 +119757,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [82036] = 23, + [81865] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6189), 1, + ACTIONS(5825), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(932), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5821), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5823), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119115,68 +119833,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [82135] = 23, + [81964] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6191), 1, + ACTIONS(5675), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1148), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5671), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5673), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119191,68 +119909,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [82234] = 23, + [82063] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6193), 1, + ACTIONS(5837), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1140), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5833), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5835), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119267,68 +119985,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [82333] = 23, + [82162] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6195), 1, + ACTIONS(6276), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119343,68 +120061,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [82432] = 23, + [82261] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5406), 1, + ACTIONS(6278), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1134), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5402), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5404), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119419,68 +120137,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [82531] = 23, + [82360] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6197), 1, + ACTIONS(6280), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119495,68 +120213,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [82630] = 23, + [82459] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5424), 1, + ACTIONS(6282), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(900), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5420), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5422), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119571,68 +120289,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [82729] = 23, + [82558] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6199), 1, + ACTIONS(5747), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1146), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5743), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5745), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119647,68 +120365,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [82828] = 23, + [82657] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6201), 1, + ACTIONS(6284), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119723,68 +120441,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [82927] = 23, + [82756] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 1, + ACTIONS(4036), 1, sym_word, - ACTIONS(3262), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(3286), 1, + ACTIONS(4072), 1, sym__dollar_literal, - ACTIONS(3288), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6203), 1, + ACTIONS(6286), 1, anon_sym_RBRACE, - STATE(1935), 1, + STATE(1879), 1, sym_string, - STATE(3558), 1, + STATE(3534), 1, sym__word_part, - ACTIONS(3282), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1926), 2, + STATE(1868), 2, sym_brace_expression, sym__expression, - STATE(1951), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1104), 3, + STATE(1112), 3, sym__word_like, sym_concatenation, aux_sym__expansion_tail, - STATE(1937), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(5786), 6, + ACTIONS(5907), 6, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_POUND, - ACTIONS(5788), 14, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119799,12 +120517,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_COMMA, anon_sym_AT, - [83026] = 3, + [82855] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6000), 14, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6288), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119814,51 +120588,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 35, - sym__backtick_open, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, + anon_sym_AT, + [82954] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6290), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6076), 14, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119868,51 +120664,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 35, - sym__backtick_open, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, + anon_sym_AT, + [83053] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6292), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5806), 14, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119922,51 +120740,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 35, - sym__backtick_open, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, + anon_sym_AT, + [83152] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6294), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5904), 14, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -119976,51 +120816,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 35, - sym__backtick_open, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, + anon_sym_AT, + [83251] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5861), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83254] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5934), 14, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1158), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5857), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5859), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -120030,51 +120892,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 35, - sym__backtick_open, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, + anon_sym_AT, + [83350] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6296), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6165), 14, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -120084,51 +120968,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 35, - sym__backtick_open, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, + anon_sym_AT, + [83449] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6298), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83368] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6175), 14, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -120138,49 +121044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 35, - sym__backtick_open, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [83425] = 3, + anon_sym_AT, + [83548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5980), 14, + ACTIONS(6302), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -120195,12 +121067,14 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 35, + ACTIONS(6300), 37, sym__backtick_open, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_GT_GT, anon_sym_LT_LT, @@ -120231,12 +121105,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83482] = 3, + [83607] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6030), 14, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5855), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1161), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5851), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5853), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -120246,51 +121176,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 35, - sym__backtick_open, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, + anon_sym_AT, + [83706] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6304), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6046), 14, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -120300,51 +121252,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 35, - sym__backtick_open, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, + anon_sym_AT, + [83805] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6306), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6066), 14, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -120354,51 +121328,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 35, - sym__backtick_open, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, + anon_sym_AT, + [83904] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5885), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 14, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1163), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5881), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5883), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -120408,51 +121404,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 35, - sym__backtick_open, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, + anon_sym_AT, + [84003] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6308), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83710] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5838), 14, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -120462,51 +121480,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 35, - sym__backtick_open, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, + anon_sym_AT, + [84102] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6310), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5844), 14, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -120516,51 +121556,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 35, - sym__backtick_open, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_GT_GT, - anon_sym_LT_LT, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - aux_sym__arithmetic_token1, - anon_sym_STAR_STAR, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_TILDE, anon_sym_CARET, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_COLON, anon_sym_COMMA, - anon_sym_POUND, - sym_variable_name, + anon_sym_AT, + [84201] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5879), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5882), 14, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1162), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5875), 6, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5877), 14, anon_sym_BANG, anon_sym_EQ, anon_sym_LT, @@ -120570,15 +121632,341 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 35, - sym__backtick_open, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [84300] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6312), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [84399] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6314), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [84498] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6316), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [84597] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6318), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [84696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6322), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6320), 37, + sym__backtick_open, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_RBRACK, anon_sym_PLUS_EQ, anon_sym_GT_GT, anon_sym_LT_LT, @@ -120609,10 +121997,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83881] = 3, + [84755] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6324), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1112), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5907), 6, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5909), 14, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [84854] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5627), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(962), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5623), 6, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5625), 14, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [84953] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4036), 1, + sym_word, + ACTIONS(4048), 1, + aux_sym_brace_expression_token1, + ACTIONS(4052), 1, + anon_sym_DOLLAR, + ACTIONS(4054), 1, + anon_sym_DQUOTE, + ACTIONS(4062), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4070), 1, + sym__backtick_open, + ACTIONS(4072), 1, + sym__dollar_literal, + ACTIONS(4074), 1, + sym__brace_expr_start, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5597), 1, + anon_sym_RBRACE, + STATE(1879), 1, + sym_string, + STATE(3534), 1, + sym__word_part, + ACTIONS(4068), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1868), 2, + sym_brace_expression, + sym__expression, + STATE(1869), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(4056), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1065), 3, + sym__word_like, + sym_concatenation, + aux_sym__expansion_tail, + STATE(1886), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(5593), 6, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_POUND, + ACTIONS(5595), 14, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_AT, + [85052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5888), 14, + ACTIONS(6177), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -120627,7 +122243,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5886), 35, + ACTIONS(6175), 35, sym__backtick_open, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120663,10 +122279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83938] = 3, + [85109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 14, + ACTIONS(6322), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -120681,7 +122297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 35, + ACTIONS(6320), 35, sym__backtick_open, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120717,10 +122333,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [83995] = 3, + [85166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5868), 14, + ACTIONS(6264), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -120735,7 +122351,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 35, + ACTIONS(6262), 35, sym__backtick_open, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120771,10 +122387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84052] = 3, + [85223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5988), 14, + ACTIONS(6260), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -120789,7 +122405,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 35, + ACTIONS(6258), 35, sym__backtick_open, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120825,10 +122441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84109] = 3, + [85280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6157), 14, + ACTIONS(6139), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -120843,7 +122459,7 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6155), 35, + ACTIONS(6137), 35, sym__backtick_open, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -120879,538 +122495,886 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84166] = 28, - ACTIONS(49), 1, - anon_sym_LT_LT, - ACTIONS(51), 1, - anon_sym_LT_LT_DASH, - ACTIONS(73), 1, - sym__assignment_name, - ACTIONS(75), 1, - sym__file_descriptor, - ACTIONS(259), 1, - aux_sym_brace_expression_token1, - ACTIONS(263), 1, + [85337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6189), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, anon_sym_DOLLAR, - ACTIONS(265), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6187), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, anon_sym_DQUOTE, - ACTIONS(267), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(269), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(271), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(273), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(281), 1, - sym__backtick_open, - ACTIONS(283), 1, - sym__dollar_literal, - ACTIONS(285), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2247), 1, - sym_word, - STATE(1250), 1, - sym_string, - STATE(1552), 1, - sym_heredoc_redirect, - STATE(3557), 1, - sym__word_part, - ACTIONS(275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(636), 2, - sym__word_like, - sym_concatenation, - STATE(1224), 2, - sym_brace_expression, - sym__expression, - STATE(1291), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(45), 3, + [85394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6183), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(261), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1999), 3, - sym_variable_assignment, - sym_redirect, - aux_sym_command_repeat1, - STATE(1251), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(47), 7, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6181), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [84271] = 28, - ACTIONS(49), 1, anon_sym_LT_LT, - ACTIONS(51), 1, - anon_sym_LT_LT_DASH, - ACTIONS(73), 1, - sym__assignment_name, - ACTIONS(75), 1, - sym__file_descriptor, - ACTIONS(201), 1, - aux_sym_brace_expression_token1, - ACTIONS(205), 1, - anon_sym_DOLLAR, - ACTIONS(207), 1, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, anon_sym_DQUOTE, - ACTIONS(209), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(211), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(213), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(215), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(223), 1, - sym__backtick_open, - ACTIONS(225), 1, - sym__dollar_literal, - ACTIONS(227), 1, - sym__brace_expr_start, - ACTIONS(1991), 1, - sym_word, - ACTIONS(2007), 1, - sym_comment, - STATE(1214), 1, - sym_string, - STATE(1552), 1, - sym_heredoc_redirect, - STATE(3585), 1, - sym__word_part, - ACTIONS(217), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(598), 2, - sym__word_like, - sym_concatenation, - STATE(1201), 2, - sym_brace_expression, - sym__expression, - STATE(1206), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(45), 3, + [85451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6302), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(203), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1999), 3, - sym_variable_assignment, - sym_redirect, - aux_sym_command_repeat1, - STATE(1183), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(47), 7, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6300), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [84376] = 28, - ACTIONS(49), 1, anon_sym_LT_LT, - ACTIONS(51), 1, - anon_sym_LT_LT_DASH, - ACTIONS(73), 1, - sym__assignment_name, - ACTIONS(75), 1, - sym__file_descriptor, - ACTIONS(339), 1, - aux_sym_brace_expression_token1, - ACTIONS(343), 1, - anon_sym_DOLLAR, - ACTIONS(345), 1, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, anon_sym_DQUOTE, - ACTIONS(347), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(351), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(353), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(361), 1, - sym__backtick_open, - ACTIONS(363), 1, - sym__dollar_literal, - ACTIONS(365), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2851), 1, - sym_word, - STATE(1552), 1, - sym_heredoc_redirect, - STATE(1664), 1, - sym_string, - STATE(3622), 1, - sym__word_part, - ACTIONS(355), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(684), 2, - sym__word_like, - sym_concatenation, - STATE(1648), 2, - sym_brace_expression, - sym__expression, - STATE(1674), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(45), 3, + [85508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6109), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(341), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1999), 3, - sym_variable_assignment, - sym_redirect, - aux_sym_command_repeat1, - STATE(1665), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(47), 7, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6107), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [84481] = 28, - ACTIONS(49), 1, anon_sym_LT_LT, - ACTIONS(51), 1, - anon_sym_LT_LT_DASH, - ACTIONS(55), 1, - aux_sym_brace_expression_token1, - ACTIONS(59), 1, - anon_sym_DOLLAR, - ACTIONS(61), 1, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, anon_sym_DQUOTE, - ACTIONS(63), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(65), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(67), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(73), 1, - sym__assignment_name, - ACTIONS(75), 1, - sym__file_descriptor, - ACTIONS(77), 1, - sym__backtick_open, - ACTIONS(79), 1, - sym__dollar_literal, - ACTIONS(81), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2093), 1, - sym_word, - STATE(1314), 1, - sym_string, - STATE(1552), 1, - sym_heredoc_redirect, - STATE(3594), 1, - sym__word_part, - ACTIONS(71), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(607), 2, - sym__word_like, - sym_concatenation, - STATE(1311), 2, - sym_brace_expression, - sym__expression, - STATE(1350), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(45), 3, + [85565] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6101), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(57), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1999), 3, - sym_variable_assignment, - sym_redirect, - aux_sym_command_repeat1, - STATE(1333), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(47), 7, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6099), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [84586] = 28, - ACTIONS(49), 1, anon_sym_LT_LT, - ACTIONS(51), 1, - anon_sym_LT_LT_DASH, - ACTIONS(73), 1, - sym__assignment_name, - ACTIONS(75), 1, - sym__file_descriptor, - ACTIONS(565), 1, - aux_sym_brace_expression_token1, - ACTIONS(569), 1, - anon_sym_DOLLAR, - ACTIONS(571), 1, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, anon_sym_DQUOTE, - ACTIONS(573), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(575), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(579), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(587), 1, - sym__backtick_open, - ACTIONS(589), 1, - sym__dollar_literal, - ACTIONS(591), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2698), 1, - sym_word, - STATE(1535), 1, - sym_string, - STATE(1552), 1, - sym_heredoc_redirect, - STATE(3575), 1, - sym__word_part, - ACTIONS(581), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(691), 2, - sym__word_like, - sym_concatenation, - STATE(1512), 2, - sym_brace_expression, - sym__expression, - STATE(1538), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(45), 3, + [85622] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6270), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(567), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1999), 3, - sym_variable_assignment, - sym_redirect, - aux_sym_command_repeat1, - STATE(1537), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(47), 7, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6268), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [84691] = 28, - ACTIONS(49), 1, anon_sym_LT_LT, - ACTIONS(51), 1, - anon_sym_LT_LT_DASH, - ACTIONS(73), 1, - sym__assignment_name, - ACTIONS(75), 1, - sym__file_descriptor, - ACTIONS(433), 1, - aux_sym_brace_expression_token1, - ACTIONS(437), 1, - anon_sym_DOLLAR, - ACTIONS(439), 1, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, anon_sym_DQUOTE, - ACTIONS(441), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(443), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(445), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(455), 1, - sym__backtick_open, - ACTIONS(457), 1, - sym__dollar_literal, - ACTIONS(459), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3124), 1, - sym_word, - STATE(1519), 1, - sym_string, - STATE(1552), 1, - sym_heredoc_redirect, - STATE(3560), 1, - sym__word_part, - ACTIONS(449), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(694), 2, - sym__word_like, - sym_concatenation, - STATE(1513), 2, - sym_brace_expression, - sym__expression, - STATE(1522), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(45), 3, + [85679] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6083), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(435), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1999), 3, - sym_variable_assignment, - sym_redirect, - aux_sym_command_repeat1, - STATE(1521), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(47), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [84796] = 28, - ACTIONS(49), 1, - anon_sym_LT_LT, - ACTIONS(51), 1, - anon_sym_LT_LT_DASH, - ACTIONS(73), 1, - sym__assignment_name, - ACTIONS(75), 1, - sym__file_descriptor, - ACTIONS(499), 1, - aux_sym_brace_expression_token1, - ACTIONS(503), 1, anon_sym_DOLLAR, - ACTIONS(505), 1, - anon_sym_DQUOTE, - ACTIONS(507), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(509), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(511), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(513), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(521), 1, + ACTIONS(6081), 35, sym__backtick_open, - ACTIONS(523), 1, - sym__dollar_literal, - ACTIONS(525), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2712), 1, - sym_word, - STATE(1552), 1, - sym_heredoc_redirect, - STATE(1585), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6019), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6017), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5969), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5967), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6244), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6242), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85907] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5901), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5899), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [85964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5951), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5949), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86021] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6105), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6103), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86078] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5905), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5903), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6143), 14, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + sym_number, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6141), 35, + sym__backtick_open, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + aux_sym__arithmetic_token1, + anon_sym_STAR_STAR, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_POUND, + sym_variable_name, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86192] = 28, + ACTIONS(409), 1, + aux_sym_brace_expression_token1, + ACTIONS(413), 1, + anon_sym_DOLLAR, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(419), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(421), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(423), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(431), 1, + sym__backtick_open, + ACTIONS(433), 1, + sym__dollar_literal, + ACTIONS(435), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3038), 1, + sym_word, + ACTIONS(6330), 1, + anon_sym_LT_LT, + ACTIONS(6332), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6334), 1, + sym__assignment_name, + ACTIONS(6336), 1, + sym__file_descriptor, + STATE(1599), 1, sym_string, - STATE(3569), 1, + STATE(2106), 1, + sym_heredoc_redirect, + STATE(3555), 1, sym__word_part, - ACTIONS(515), 2, + ACTIONS(425), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(671), 2, + STATE(689), 2, sym__word_like, sym_concatenation, - STATE(1580), 2, + STATE(1485), 2, sym_brace_expression, sym__expression, - STATE(1589), 2, + STATE(1487), 2, sym_simple_expansion, sym_expansion, - ACTIONS(45), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(501), 3, + ACTIONS(411), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1999), 3, + ACTIONS(6326), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1923), 3, sym_variable_assignment, sym_redirect, aux_sym_command_repeat1, - STATE(1588), 5, + STATE(1603), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(47), 7, + ACTIONS(6328), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121418,76 +123382,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [84901] = 28, - ACTIONS(49), 1, - anon_sym_LT_LT, - ACTIONS(51), 1, - anon_sym_LT_LT_DASH, - ACTIONS(73), 1, - sym__assignment_name, - ACTIONS(75), 1, - sym__file_descriptor, - ACTIONS(113), 1, + [86297] = 28, + ACTIONS(55), 1, aux_sym_brace_expression_token1, - ACTIONS(117), 1, + ACTIONS(59), 1, anon_sym_DOLLAR, - ACTIONS(119), 1, + ACTIONS(61), 1, anon_sym_DQUOTE, - ACTIONS(121), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(123), 1, + ACTIONS(65), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(127), 1, + ACTIONS(69), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(135), 1, + ACTIONS(77), 1, sym__backtick_open, - ACTIONS(137), 1, + ACTIONS(79), 1, sym__dollar_literal, - ACTIONS(139), 1, + ACTIONS(81), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2222), 1, + ACTIONS(2253), 1, sym_word, - STATE(1317), 1, + ACTIONS(6330), 1, + anon_sym_LT_LT, + ACTIONS(6332), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6334), 1, + sym__assignment_name, + ACTIONS(6336), 1, + sym__file_descriptor, + STATE(1265), 1, sym_string, - STATE(1552), 1, + STATE(2106), 1, sym_heredoc_redirect, - STATE(3574), 1, + STATE(3512), 1, sym__word_part, - ACTIONS(129), 2, + ACTIONS(71), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(624), 2, + STATE(643), 2, sym__word_like, sym_concatenation, - STATE(1232), 2, + STATE(1331), 2, sym_brace_expression, sym__expression, - STATE(1326), 2, + STATE(1342), 2, sym_simple_expansion, sym_expansion, - ACTIONS(45), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(115), 3, + ACTIONS(57), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1999), 3, + ACTIONS(6326), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1923), 3, sym_variable_assignment, sym_redirect, aux_sym_command_repeat1, - STATE(1318), 5, + STATE(1338), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(47), 7, + ACTIONS(6328), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121495,76 +123459,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [85006] = 28, - ACTIONS(49), 1, + [86402] = 28, + ACTIONS(315), 1, + aux_sym_brace_expression_token1, + ACTIONS(319), 1, + anon_sym_DOLLAR, + ACTIONS(321), 1, + anon_sym_DQUOTE, + ACTIONS(323), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(325), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(329), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(337), 1, + sym__backtick_open, + ACTIONS(339), 1, + sym__dollar_literal, + ACTIONS(341), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3200), 1, + sym_word, + ACTIONS(6330), 1, anon_sym_LT_LT, - ACTIONS(51), 1, + ACTIONS(6332), 1, anon_sym_LT_LT_DASH, - ACTIONS(73), 1, + ACTIONS(6334), 1, sym__assignment_name, - ACTIONS(75), 1, + ACTIONS(6336), 1, sym__file_descriptor, - ACTIONS(659), 1, + STATE(1622), 1, + sym_string, + STATE(2106), 1, + sym_heredoc_redirect, + STATE(3529), 1, + sym__word_part, + ACTIONS(331), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(705), 2, + sym__word_like, + sym_concatenation, + STATE(1596), 2, + sym_brace_expression, + sym__expression, + STATE(1626), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(317), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6326), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1923), 3, + sym_variable_assignment, + sym_redirect, + aux_sym_command_repeat1, + STATE(1625), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6328), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [86507] = 28, + ACTIONS(599), 1, aux_sym_brace_expression_token1, - ACTIONS(663), 1, + ACTIONS(603), 1, anon_sym_DOLLAR, - ACTIONS(665), 1, + ACTIONS(605), 1, anon_sym_DQUOTE, - ACTIONS(667), 1, + ACTIONS(607), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(669), 1, + ACTIONS(609), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(671), 1, + ACTIONS(611), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(673), 1, + ACTIONS(613), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(681), 1, + ACTIONS(621), 1, sym__backtick_open, - ACTIONS(683), 1, + ACTIONS(623), 1, sym__dollar_literal, - ACTIONS(685), 1, + ACTIONS(625), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2783), 1, + ACTIONS(2816), 1, sym_word, - STATE(1552), 1, - sym_heredoc_redirect, - STATE(1688), 1, + ACTIONS(6330), 1, + anon_sym_LT_LT, + ACTIONS(6332), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6334), 1, + sym__assignment_name, + ACTIONS(6336), 1, + sym__file_descriptor, + STATE(1586), 1, sym_string, - STATE(3600), 1, + STATE(2106), 1, + sym_heredoc_redirect, + STATE(3543), 1, sym__word_part, - ACTIONS(675), 2, + ACTIONS(615), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(698), 2, + STATE(687), 2, sym__word_like, sym_concatenation, - STATE(1501), 2, - sym_simple_expansion, - sym_expansion, - STATE(1654), 2, + STATE(1617), 2, sym_brace_expression, sym__expression, - ACTIONS(45), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(661), 3, + STATE(1618), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(601), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1999), 3, + ACTIONS(6326), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1923), 3, sym_variable_assignment, sym_redirect, aux_sym_command_repeat1, - STATE(1689), 5, + STATE(1588), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(47), 7, + ACTIONS(6328), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121572,39 +123613,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [85111] = 5, - ACTIONS(2007), 1, + [86612] = 28, + ACTIONS(201), 1, + aux_sym_brace_expression_token1, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_DQUOTE, + ACTIONS(209), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(213), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(215), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(223), 1, + sym__backtick_open, + ACTIONS(225), 1, + sym__dollar_literal, + ACTIONS(227), 1, + sym__brace_expr_start, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6209), 1, - sym_heredoc_body, - ACTIONS(6211), 1, - sym_heredoc_end, - ACTIONS(6205), 14, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, + ACTIONS(6330), 1, + anon_sym_LT_LT, + ACTIONS(6332), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6334), 1, + sym__assignment_name, + ACTIONS(6336), 1, + sym__file_descriptor, + STATE(1216), 1, + sym_string, + STATE(2106), 1, + sym_heredoc_redirect, + STATE(3506), 1, + sym__word_part, + ACTIONS(217), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(345), 2, + sym__word_like, + sym_concatenation, + STATE(1209), 2, + sym_brace_expression, + sym__expression, + STATE(1224), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(203), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6326), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, + STATE(1923), 3, + sym_variable_assignment, + sym_redirect, + aux_sym_command_repeat1, + STATE(1217), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6328), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [86717] = 28, + ACTIONS(665), 1, + aux_sym_brace_expression_token1, + ACTIONS(669), 1, anon_sym_DOLLAR, + ACTIONS(671), 1, + anon_sym_DQUOTE, + ACTIONS(673), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 28, - sym__file_descriptor, + ACTIONS(677), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(679), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(687), 1, sym__backtick_open, + ACTIONS(689), 1, sym__dollar_literal, + ACTIONS(691), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3115), 1, + sym_word, + ACTIONS(6330), 1, + anon_sym_LT_LT, + ACTIONS(6332), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6334), 1, + sym__assignment_name, + ACTIONS(6336), 1, + sym__file_descriptor, + STATE(1517), 1, + sym_string, + STATE(2106), 1, + sym_heredoc_redirect, + STATE(3511), 1, + sym__word_part, + ACTIONS(681), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(699), 2, + sym__word_like, + sym_concatenation, + STATE(1500), 2, + sym_brace_expression, + sym__expression, + STATE(1607), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(667), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6326), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1923), 3, + sym_variable_assignment, + sym_redirect, + aux_sym_command_repeat1, + STATE(1518), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6328), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121612,50 +123767,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + [86822] = 28, + ACTIONS(479), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(483), 1, + anon_sym_DOLLAR, + ACTIONS(485), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(487), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(489), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(491), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(493), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(501), 1, + sym__backtick_open, + ACTIONS(503), 1, + sym__dollar_literal, + ACTIONS(505), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3129), 1, + sym_word, + ACTIONS(6330), 1, + anon_sym_LT_LT, + ACTIONS(6332), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6334), 1, + sym__assignment_name, + ACTIONS(6336), 1, + sym__file_descriptor, + STATE(1555), 1, + sym_string, + STATE(2106), 1, + sym_heredoc_redirect, + STATE(3561), 1, + sym__word_part, + ACTIONS(495), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85167] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6217), 1, - sym_heredoc_body, - ACTIONS(6219), 1, - sym_heredoc_end, - ACTIONS(6213), 14, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, + STATE(695), 2, + sym__word_like, + sym_concatenation, + STATE(1552), 2, + sym_brace_expression, + sym__expression, + STATE(1558), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(481), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6326), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, + STATE(1923), 3, + sym_variable_assignment, + sym_redirect, + aux_sym_command_repeat1, + STATE(1557), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6328), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [86927] = 28, + ACTIONS(259), 1, + aux_sym_brace_expression_token1, + ACTIONS(263), 1, anon_sym_DOLLAR, + ACTIONS(265), 1, + anon_sym_DQUOTE, + ACTIONS(267), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 28, - sym__file_descriptor, + ACTIONS(271), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(273), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(281), 1, sym__backtick_open, + ACTIONS(283), 1, sym__dollar_literal, + ACTIONS(285), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2239), 1, + sym_word, + ACTIONS(6330), 1, + anon_sym_LT_LT, + ACTIONS(6332), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6334), 1, + sym__assignment_name, + ACTIONS(6336), 1, + sym__file_descriptor, + STATE(1301), 1, + sym_string, + STATE(2106), 1, + sym_heredoc_redirect, + STATE(3548), 1, + sym__word_part, + ACTIONS(275), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(622), 2, + sym__word_like, + sym_concatenation, + STATE(1263), 2, + sym_brace_expression, + sym__expression, + STATE(1319), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(261), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6326), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1923), 3, + sym_variable_assignment, + sym_redirect, + aux_sym_command_repeat1, + STATE(1302), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6328), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121663,25 +123921,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + [87032] = 28, + ACTIONS(113), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(119), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(121), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(127), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(135), 1, + sym__backtick_open, + ACTIONS(137), 1, + sym__dollar_literal, + ACTIONS(139), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2324), 1, + sym_word, + ACTIONS(6330), 1, + anon_sym_LT_LT, + ACTIONS(6332), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6334), 1, + sym__assignment_name, + ACTIONS(6336), 1, + sym__file_descriptor, + STATE(1292), 1, + sym_string, + STATE(2106), 1, + sym_heredoc_redirect, + STATE(3526), 1, + sym__word_part, + ACTIONS(129), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85223] = 5, - ACTIONS(2007), 1, + STATE(626), 2, + sym__word_like, + sym_concatenation, + STATE(1242), 2, + sym_simple_expansion, + sym_expansion, + STATE(1273), 2, + sym_brace_expression, + sym__expression, + ACTIONS(115), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6326), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1923), 3, + sym_variable_assignment, + sym_redirect, + aux_sym_command_repeat1, + STATE(1334), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6328), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [87137] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6225), 1, + ACTIONS(6342), 1, anon_sym_LPAREN, - ACTIONS(6227), 1, + ACTIONS(6344), 1, sym__concat, - ACTIONS(6221), 14, + ACTIONS(6338), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -121696,7 +124020,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 28, + ACTIONS(6340), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -121725,39 +124050,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85279] = 5, - ACTIONS(2007), 1, + [87194] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6233), 1, - sym__concat, - STATE(1169), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 14, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6346), 1, sym_word, + ACTIONS(6349), 1, + anon_sym_LPAREN, + ACTIONS(6351), 1, + aux_sym_brace_expression_token1, + ACTIONS(6357), 1, anon_sym_DOLLAR, + ACTIONS(6360), 1, + anon_sym_DQUOTE, + ACTIONS(6363), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6366), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 28, - sym__file_descriptor, + ACTIONS(6369), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6372), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6378), 1, sym__backtick_open, + ACTIONS(6381), 1, sym__dollar_literal, + ACTIONS(6384), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + STATE(2055), 1, + sym_string, + STATE(3551), 1, + sym__word_part, + ACTIONS(6375), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2040), 2, + sym_brace_expression, + sym__expression, + STATE(2059), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6354), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2099), 3, + sym_array, + sym__word_like, + sym_concatenation, + ACTIONS(2937), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + STATE(2057), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2935), 10, + sym__assignment_name, + sym__file_descriptor, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121766,24 +124120,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, + [87287] = 23, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6349), 1, + anon_sym_LPAREN, + ACTIONS(6387), 1, + sym_word, + ACTIONS(6390), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(6396), 1, + anon_sym_DOLLAR, + ACTIONS(6399), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6402), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6405), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6408), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6411), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6417), 1, + sym__backtick_open, + ACTIONS(6420), 1, + sym__dollar_literal, + ACTIONS(6423), 1, + sym__brace_expr_start, + STATE(2055), 1, + sym_string, + STATE(3551), 1, + sym__word_part, + ACTIONS(6414), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85335] = 5, - ACTIONS(2007), 1, + STATE(2040), 2, + sym_brace_expression, + sym__expression, + STATE(2059), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6393), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2080), 3, + sym_array, + sym__word_like, + sym_concatenation, + ACTIONS(2892), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + STATE(2057), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2890), 10, + sym__assignment_name, + sym__file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [87380] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6239), 1, + ACTIONS(6430), 1, sym__concat, - STATE(1169), 1, + STATE(1200), 1, aux_sym_concatenation_repeat1, - ACTIONS(6235), 14, + ACTIONS(6426), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -121798,7 +124212,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 28, + ACTIONS(6428), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -121827,18 +124242,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85391] = 5, - ACTIONS(2007), 1, + [87437] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6242), 1, - sym_heredoc_body, - ACTIONS(6244), 1, - sym_heredoc_end, - ACTIONS(6205), 13, + ACTIONS(6437), 1, + sym__concat, + STATE(1200), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, @@ -121848,7 +124264,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 28, + ACTIONS(6435), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -121877,14 +124294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85446] = 5, - ACTIONS(2007), 1, + [87494] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6246), 1, + ACTIONS(6344), 1, sym__concat, - STATE(1177), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 11, + ACTIONS(6439), 1, + anon_sym_LPAREN, + ACTIONS(6338), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -121896,7 +124313,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 30, + ACTIONS(6340), 31, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -121927,19 +124345,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85501] = 5, - ACTIONS(2007), 1, + [87550] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6248), 1, - sym_heredoc_body, - ACTIONS(6250), 1, - sym_heredoc_end, - ACTIONS(6213), 12, + ACTIONS(6449), 1, + sym__assignment_name, + STATE(2939), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6445), 5, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_esac, anon_sym_SEMI_SEMI, + ACTIONS(6441), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -121947,18 +124367,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 29, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(6443), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + ACTIONS(6447), 22, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121977,15 +124398,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85556] = 3, - ACTIONS(2007), 1, + [87610] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 14, + ACTIONS(6342), 1, + anon_sym_LPAREN, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, @@ -121995,8 +124419,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 29, - sym__concat, + ACTIONS(6340), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -122025,66 +124449,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85607] = 3, - ACTIONS(2007), 1, + [87666] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 14, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6452), 1, sym_word, + ACTIONS(6454), 1, + anon_sym_LPAREN, + ACTIONS(6456), 1, + aux_sym_brace_expression_token1, + ACTIONS(6460), 1, anon_sym_DOLLAR, + ACTIONS(6462), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 29, - sym__concat, - sym__file_descriptor, + ACTIONS(6468), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6470), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6474), 1, sym__backtick_open, + ACTIONS(6476), 1, sym__dollar_literal, + ACTIONS(6478), 1, sym__brace_expr_start, + STATE(2973), 1, + sym_string, + STATE(3542), 1, + sym__word_part, + ACTIONS(6472), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2946), 2, + sym_simple_expansion, + sym_expansion, + STATE(2966), 2, + sym_brace_expression, + sym__expression, + ACTIONS(6458), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3002), 3, + sym_array, + sym__word_like, + sym_concatenation, + ACTIONS(2892), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + STATE(2978), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2890), 8, + sym__heredoc_newline, + sym__assignment_name, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [85658] = 4, - ACTIONS(2007), 1, + [87758] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6256), 1, - sym_heredoc_end, - ACTIONS(6252), 14, - anon_sym_SEMI, + ACTIONS(6480), 1, + sym__concat, + STATE(1207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -122093,17 +124540,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, + ACTIONS(6435), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122122,18 +124569,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85711] = 4, - ACTIONS(2007), 1, + [87814] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6262), 1, - sym_heredoc_end, - ACTIONS(6258), 14, - anon_sym_SEMI, + ACTIONS(6482), 1, + sym__concat, + STATE(1207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -122142,17 +124591,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, + ACTIONS(6428), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122171,17 +124620,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85764] = 5, - ACTIONS(2007), 1, + [87870] = 23, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6452), 1, + sym_word, + ACTIONS(6454), 1, + anon_sym_LPAREN, + ACTIONS(6456), 1, + aux_sym_brace_expression_token1, + ACTIONS(6460), 1, + anon_sym_DOLLAR, + ACTIONS(6462), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6468), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6470), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6474), 1, + sym__backtick_open, + ACTIONS(6476), 1, + sym__dollar_literal, + ACTIONS(6478), 1, + sym__brace_expr_start, + STATE(2973), 1, + sym_string, + STATE(3542), 1, + sym__word_part, + ACTIONS(6472), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2946), 2, + sym_simple_expansion, + sym_expansion, + STATE(2966), 2, + sym_brace_expression, + sym__expression, + ACTIONS(6458), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2995), 3, + sym_array, + sym__word_like, + sym_concatenation, + ACTIONS(2937), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + STATE(2978), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2935), 8, + sym__heredoc_newline, + sym__assignment_name, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [87962] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6264), 1, + ACTIONS(6344), 1, sym__concat, - STATE(1177), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 11, + ACTIONS(6338), 14, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -122190,19 +124709,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 30, + ACTIONS(6340), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122221,28 +124739,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85819] = 7, - ACTIONS(2007), 1, + [88016] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6275), 1, - sym__assignment_name, - STATE(3004), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6271), 5, + ACTIONS(6426), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_esac, anon_sym_SEMI_SEMI, - ACTIONS(6269), 6, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(6267), 7, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -122250,11 +124757,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6273), 22, + ACTIONS(6428), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122273,20 +124788,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85878] = 5, - ACTIONS(2007), 1, + [88068] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6278), 1, - sym__concat, - STATE(1208), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 14, + ACTIONS(6485), 14, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -122295,16 +124806,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 27, + ACTIONS(6487), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122323,18 +124837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85933] = 5, - ACTIONS(2007), 1, + [88120] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6280), 1, - sym_heredoc_body, - ACTIONS(6282), 1, - sym_heredoc_end, - ACTIONS(6213), 13, + ACTIONS(6489), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, @@ -122344,7 +124855,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 28, + ACTIONS(6491), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -122373,80 +124886,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85988] = 25, - ACTIONS(2007), 1, + [88172] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6284), 1, - sym_word, - ACTIONS(6292), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6294), 1, - anon_sym_EQ_TILDE, - ACTIONS(6296), 1, - aux_sym_brace_expression_token1, - ACTIONS(6300), 1, - anon_sym_DOLLAR, - ACTIONS(6302), 1, - anon_sym_DQUOTE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6314), 1, - sym__backtick_open, - ACTIONS(6316), 1, - sym__dollar_literal, - ACTIONS(6318), 1, - sym__brace_expr_start, - STATE(2114), 1, - sym_string, - STATE(3578), 1, - sym__word_part, - ACTIONS(6286), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(6312), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2116), 2, - sym_simple_expansion, - sym_expansion, - STATE(2138), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6290), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - ACTIONS(6298), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1196), 3, - aux_sym__conditional, - sym__word_like, - sym_concatenation, - STATE(2115), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(6288), 6, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - [86083] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6066), 14, + ACTIONS(6493), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -122461,7 +124904,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 29, + ACTIONS(6495), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -122491,17 +124935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86134] = 3, - ACTIONS(2007), 1, + [88224] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 14, + ACTIONS(6497), 1, + sym__concat, + STATE(1215), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -122509,8 +124955,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 29, - sym__concat, + ACTIONS(6435), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -122539,17 +124986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86185] = 3, - ACTIONS(2007), 1, + [88280] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 14, + ACTIONS(6499), 1, + sym__concat, + STATE(1215), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -122557,8 +125006,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 29, - sym__concat, + ACTIONS(6428), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -122587,10 +125037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86236] = 3, - ACTIONS(2007), 1, + [88336] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 14, + ACTIONS(6302), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -122605,7 +125055,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 29, + ACTIONS(6300), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -122635,18 +125086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86287] = 5, - ACTIONS(2007), 1, + [88388] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6320), 1, - sym__concat, - STATE(1190), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 13, + ACTIONS(6109), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, @@ -122656,7 +125104,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 28, + ACTIONS(6107), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -122685,16 +125135,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86342] = 3, - ACTIONS(2007), 1, + [88440] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 14, - anon_sym_SEMI, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6439), 1, + anon_sym_LPAREN, + ACTIONS(6338), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -122703,18 +125157,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 29, - sym__concat, + ACTIONS(6340), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122733,15 +125186,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86393] = 3, - ACTIONS(2007), 1, + [88496] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 14, + ACTIONS(6502), 1, + sym__concat, + STATE(1222), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, @@ -122751,8 +125207,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 29, - sym__concat, + ACTIONS(6435), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -122781,20 +125237,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86444] = 5, - ACTIONS(2007), 1, + [88552] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6322), 1, - sym_heredoc_body, - ACTIONS(6324), 1, - sym_heredoc_end, - ACTIONS(6205), 14, + ACTIONS(6177), 14, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -122803,16 +125255,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 27, + ACTIONS(6175), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122831,18 +125286,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86499] = 5, - ACTIONS(2007), 1, + [88604] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6326), 1, - sym__concat, - STATE(1190), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 13, + ACTIONS(6264), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, @@ -122852,7 +125304,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 28, + ACTIONS(6262), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -122881,157 +125335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86554] = 25, - ACTIONS(2007), 1, + [88656] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6284), 1, - sym_word, - ACTIONS(6294), 1, - anon_sym_EQ_TILDE, - ACTIONS(6296), 1, - aux_sym_brace_expression_token1, - ACTIONS(6300), 1, - anon_sym_DOLLAR, - ACTIONS(6302), 1, - anon_sym_DQUOTE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6314), 1, - sym__backtick_open, - ACTIONS(6316), 1, - sym__dollar_literal, - ACTIONS(6318), 1, - sym__brace_expr_start, - ACTIONS(6329), 1, - anon_sym_RBRACK_RBRACK, - STATE(2114), 1, - sym_string, - STATE(3578), 1, - sym__word_part, - ACTIONS(6286), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(6312), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2116), 2, - sym_simple_expansion, - sym_expansion, - STATE(2138), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6290), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - ACTIONS(6298), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1196), 3, - aux_sym__conditional, - sym__word_like, - sym_concatenation, - STATE(2115), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(6288), 6, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - [86649] = 25, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6284), 1, - sym_word, - ACTIONS(6294), 1, - anon_sym_EQ_TILDE, - ACTIONS(6296), 1, - aux_sym_brace_expression_token1, - ACTIONS(6300), 1, - anon_sym_DOLLAR, - ACTIONS(6302), 1, - anon_sym_DQUOTE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6314), 1, - sym__backtick_open, - ACTIONS(6316), 1, - sym__dollar_literal, - ACTIONS(6318), 1, - sym__brace_expr_start, - ACTIONS(6331), 1, - anon_sym_RBRACK_RBRACK, - STATE(2114), 1, - sym_string, - STATE(3578), 1, - sym__word_part, - ACTIONS(6286), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(6312), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2116), 2, - sym_simple_expansion, - sym_expansion, - STATE(2138), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6290), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - ACTIONS(6298), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1196), 3, - aux_sym__conditional, - sym__word_like, - sym_concatenation, - STATE(2115), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(6288), 6, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - [86744] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6333), 1, - sym_heredoc_body, - ACTIONS(6335), 1, - sym_heredoc_end, - ACTIONS(6205), 11, + ACTIONS(6504), 1, + sym__concat, + STATE(1222), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 13, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -123040,19 +125356,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 30, + ACTIONS(6428), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123071,20 +125386,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86799] = 5, - ACTIONS(2007), 1, + [88712] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6337), 1, - anon_sym_LPAREN, - ACTIONS(6221), 14, + ACTIONS(6189), 14, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -123093,16 +125404,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 27, + ACTIONS(6187), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123121,17 +125435,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86854] = 5, - ACTIONS(2007), 1, + [88764] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6337), 1, - anon_sym_LPAREN, - ACTIONS(6221), 11, + ACTIONS(5951), 14, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -123140,19 +125453,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 30, + ACTIONS(5949), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123171,150 +125484,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [86909] = 25, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6339), 1, - sym_word, - ACTIONS(6351), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6353), 1, - anon_sym_EQ_TILDE, - ACTIONS(6356), 1, - aux_sym_brace_expression_token1, - ACTIONS(6362), 1, - anon_sym_DOLLAR, - ACTIONS(6365), 1, - anon_sym_DQUOTE, - ACTIONS(6368), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6371), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6374), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6377), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6383), 1, - sym__backtick_open, - ACTIONS(6386), 1, - sym__dollar_literal, - ACTIONS(6389), 1, - sym__brace_expr_start, - STATE(2114), 1, - sym_string, - STATE(3578), 1, - sym__word_part, - ACTIONS(6342), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(6380), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2116), 2, - sym_simple_expansion, - sym_expansion, - STATE(2138), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6348), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - ACTIONS(6359), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1196), 3, - aux_sym__conditional, - sym__word_like, - sym_concatenation, - STATE(2115), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(6345), 6, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - [87004] = 25, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6284), 1, - sym_word, - ACTIONS(6294), 1, - anon_sym_EQ_TILDE, - ACTIONS(6296), 1, - aux_sym_brace_expression_token1, - ACTIONS(6300), 1, - anon_sym_DOLLAR, - ACTIONS(6302), 1, - anon_sym_DQUOTE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6314), 1, - sym__backtick_open, - ACTIONS(6316), 1, - sym__dollar_literal, - ACTIONS(6318), 1, - sym__brace_expr_start, - ACTIONS(6392), 1, - anon_sym_RBRACK_RBRACK, - STATE(2114), 1, - sym_string, - STATE(3578), 1, - sym__word_part, - ACTIONS(6286), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(6312), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2116), 2, - sym_simple_expansion, - sym_expansion, - STATE(2138), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6290), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - ACTIONS(6298), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1196), 3, - aux_sym__conditional, - sym__word_like, - sym_concatenation, - STATE(2115), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(6288), 6, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - [87099] = 3, - ACTIONS(2007), 1, + [88816] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 14, + ACTIONS(6322), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -123329,7 +125502,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 29, + ACTIONS(6320), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -123359,10 +125533,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87150] = 3, - ACTIONS(2007), 1, + [88868] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 14, + ACTIONS(5969), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -123377,7 +125551,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 29, + ACTIONS(5967), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -123407,10 +125582,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87201] = 3, - ACTIONS(2007), 1, + [88920] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 14, + ACTIONS(6019), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -123425,7 +125600,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 29, + ACTIONS(6017), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -123455,12 +125631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87252] = 4, - ACTIONS(2007), 1, + [88972] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 14, + ACTIONS(6143), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -123475,7 +125649,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 28, + ACTIONS(6141), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -123504,19 +125680,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87305] = 5, - ACTIONS(2007), 1, + [89024] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6394), 1, - sym__concat, - STATE(1209), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 12, + ACTIONS(6183), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -123524,8 +125698,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 29, - sym__assignment_name, + ACTIONS(6181), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -123554,19 +125729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87360] = 5, - ACTIONS(2007), 1, + [89076] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6396), 1, - sym_heredoc_body, - ACTIONS(6398), 1, - sym_heredoc_end, - ACTIONS(6205), 12, + ACTIONS(6244), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -123574,8 +125747,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 29, - sym__assignment_name, + ACTIONS(6242), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -123604,10 +125778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87415] = 3, - ACTIONS(2007), 1, + [89128] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 14, + ACTIONS(6260), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -123622,7 +125796,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 29, + ACTIONS(6258), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -123652,78 +125827,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87466] = 23, - ACTIONS(2007), 1, + [89180] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6400), 1, + ACTIONS(6270), 14, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6402), 1, - anon_sym_LPAREN, - ACTIONS(6404), 1, - aux_sym_brace_expression_token1, - ACTIONS(6408), 1, anon_sym_DOLLAR, - ACTIONS(6410), 1, - anon_sym_DQUOTE, - ACTIONS(6412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6414), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6416), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6422), 1, + ACTIONS(6268), 30, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, sym__backtick_open, - ACTIONS(6424), 1, sym__dollar_literal, - ACTIONS(6426), 1, sym__brace_expr_start, - STATE(3028), 1, - sym_string, - STATE(3556), 1, - sym__word_part, - ACTIONS(6420), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3020), 2, - sym_brace_expression, - sym__expression, - STATE(3032), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(6406), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3045), 3, - sym_array, - sym__word_like, - sym_concatenation, - ACTIONS(2984), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, - STATE(3030), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2982), 7, - sym__assignment_name, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [87557] = 3, - ACTIONS(2007), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [89232] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 14, + ACTIONS(6083), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -123738,7 +125894,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 29, + ACTIONS(6081), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -123768,10 +125925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87608] = 3, - ACTIONS(2007), 1, + [89284] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 14, + ACTIONS(6101), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -123786,7 +125943,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 29, + ACTIONS(6099), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -123816,20 +125974,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87659] = 5, - ACTIONS(2007), 1, + [89336] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6428), 1, - sym__concat, - STATE(1208), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 14, + ACTIONS(6105), 14, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -123838,16 +125992,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 27, + ACTIONS(6103), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123866,19 +126023,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87714] = 5, - ACTIONS(2007), 1, + [89388] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6431), 1, + ACTIONS(6507), 1, sym__concat, - STATE(1209), 1, + STATE(1237), 1, aux_sym_concatenation_repeat1, - ACTIONS(6235), 12, - anon_sym_SEMI, + ACTIONS(6433), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -123886,18 +126042,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 29, - sym__assignment_name, + ACTIONS(6435), 31, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123916,16 +126074,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87769] = 3, - ACTIONS(2007), 1, + [89444] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 14, - anon_sym_SEMI, + ACTIONS(6509), 1, + sym__concat, + STATE(1237), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -123934,18 +126093,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 29, - sym__concat, + ACTIONS(6428), 31, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123964,18 +126125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87820] = 5, - ACTIONS(2007), 1, + [89500] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 13, + ACTIONS(5905), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, @@ -123985,7 +126143,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 28, + ACTIONS(5903), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -124014,20 +126174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87875] = 5, - ACTIONS(2007), 1, + [89552] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6438), 1, - sym_heredoc_body, - ACTIONS(6440), 1, - sym_heredoc_end, - ACTIONS(6213), 14, + ACTIONS(6244), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -124036,16 +126189,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 27, + ACTIONS(6242), 32, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124064,16 +126222,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87930] = 3, - ACTIONS(2007), 1, + [89603] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 14, - anon_sym_SEMI, + ACTIONS(6264), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -124082,18 +126240,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 29, + ACTIONS(6262), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124112,16 +126270,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [87981] = 3, - ACTIONS(2007), 1, + [89654] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 14, - anon_sym_SEMI, + ACTIONS(6189), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -124130,18 +126288,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 29, + ACTIONS(6187), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124160,17 +126318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88032] = 5, - ACTIONS(2007), 1, + [89705] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6442), 1, - sym_heredoc_body, - ACTIONS(6444), 1, - sym_heredoc_end, - ACTIONS(6213), 11, + ACTIONS(5951), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -124179,19 +126336,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 30, + ACTIONS(5949), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124210,16 +126366,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88087] = 3, - ACTIONS(2007), 1, + [89756] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 14, - anon_sym_SEMI, + ACTIONS(6322), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -124228,18 +126384,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 29, + ACTIONS(6320), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124258,16 +126414,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88138] = 3, - ACTIONS(2007), 1, + [89807] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 14, - anon_sym_SEMI, + ACTIONS(5969), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -124276,18 +126432,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 29, + ACTIONS(5967), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124306,84 +126462,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88189] = 23, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6400), 1, - sym_word, - ACTIONS(6402), 1, - anon_sym_LPAREN, - ACTIONS(6404), 1, - aux_sym_brace_expression_token1, - ACTIONS(6408), 1, - anon_sym_DOLLAR, - ACTIONS(6410), 1, - anon_sym_DQUOTE, - ACTIONS(6412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6414), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6416), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6422), 1, - sym__backtick_open, - ACTIONS(6424), 1, - sym__dollar_literal, - ACTIONS(6426), 1, - sym__brace_expr_start, - STATE(3028), 1, - sym_string, - STATE(3556), 1, - sym__word_part, - ACTIONS(6420), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3020), 2, - sym_brace_expression, - sym__expression, - STATE(3032), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(6406), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3049), 3, - sym_array, - sym__word_like, - sym_concatenation, - ACTIONS(3029), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, - STATE(3030), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3027), 7, - sym__assignment_name, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [88280] = 3, - ACTIONS(2007), 1, + [89858] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 14, - anon_sym_SEMI, + ACTIONS(6019), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -124392,18 +126480,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 29, + ACTIONS(6017), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124422,17 +126510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88331] = 3, - ACTIONS(2007), 1, + [89909] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 14, - anon_sym_SEMI, + ACTIONS(6512), 1, + sym__concat, + STATE(1251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -124440,18 +126530,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 29, - sym__concat, + ACTIONS(6435), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124470,16 +126560,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88382] = 3, - ACTIONS(2007), 1, + [89964] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 14, - anon_sym_SEMI, + ACTIONS(6143), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -124488,18 +126578,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 29, + ACTIONS(6141), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124518,10 +126608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88433] = 3, - ACTIONS(2007), 1, + [90015] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 14, + ACTIONS(6183), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -124536,7 +126626,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 28, + ACTIONS(6181), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -124565,27 +126656,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88483] = 7, - ACTIONS(2007), 1, + [90066] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6454), 1, - sym__assignment_name, - STATE(3017), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6269), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(6271), 5, + ACTIONS(6244), 14, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_fi, anon_sym_elif, anon_sym_else, - ACTIONS(6267), 7, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -124593,11 +126674,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6273), 22, + ACTIONS(6242), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124616,17 +126704,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88541] = 4, - ACTIONS(2007), 1, + [90117] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 13, - anon_sym_SEMI, + ACTIONS(6260), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -124635,17 +126722,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 28, + ACTIONS(6258), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124664,15 +126752,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88593] = 3, - ACTIONS(2007), 1, + [90168] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 12, - anon_sym_SEMI, + ACTIONS(6514), 1, + sym__concat, + STATE(1251), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -124680,19 +126772,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 30, - sym__concat, + ACTIONS(6428), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124711,15 +126802,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88643] = 4, - ACTIONS(2007), 1, + [90223] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6457), 1, - sym_heredoc_end, - ACTIONS(6258), 11, + ACTIONS(6270), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -124728,19 +126820,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 30, + ACTIONS(6268), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124759,16 +126850,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88695] = 5, - ACTIONS(2007), 1, + [90274] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6459), 1, - sym_heredoc_body, - ACTIONS(6461), 1, - sym_heredoc_end, - ACTIONS(6205), 9, + ACTIONS(6083), 14, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -124776,20 +126868,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 31, - sym__assignment_name, + ACTIONS(6081), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124808,15 +126898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88749] = 3, - ACTIONS(2007), 1, + [90325] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 12, - anon_sym_SEMI, + ACTIONS(6101), 14, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -124824,19 +126916,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 30, + ACTIONS(6099), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124855,15 +126946,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88799] = 3, - ACTIONS(2007), 1, + [90376] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 13, - anon_sym_SEMI, + ACTIONS(6105), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -124872,18 +126964,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 29, + ACTIONS(6103), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124902,15 +126994,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88849] = 3, - ACTIONS(2007), 1, + [90427] = 25, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 13, - anon_sym_SEMI, + ACTIONS(6517), 1, + sym_word, + ACTIONS(6525), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6527), 1, + anon_sym_EQ_TILDE, + ACTIONS(6529), 1, + aux_sym_brace_expression_token1, + ACTIONS(6533), 1, + anon_sym_DOLLAR, + ACTIONS(6535), 1, + anon_sym_DQUOTE, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6539), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6541), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6543), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6547), 1, + sym__backtick_open, + ACTIONS(6549), 1, + sym__dollar_literal, + ACTIONS(6551), 1, + sym__brace_expr_start, + STATE(2078), 1, + sym_string, + STATE(3544), 1, + sym__word_part, + ACTIONS(6519), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(6545), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2082), 2, + sym_brace_expression, + sym__expression, + STATE(2098), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6523), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + ACTIONS(6531), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1339), 3, + aux_sym__conditional, + sym__word_like, + sym_concatenation, + STATE(2068), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6521), 6, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + [90522] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6322), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -124919,18 +127079,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 29, + ACTIONS(6320), 32, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124949,15 +127112,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88899] = 3, - ACTIONS(2007), 1, + [90573] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 12, + ACTIONS(6553), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -124965,9 +127130,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 30, - sym__concat, - sym__assignment_name, + ACTIONS(6555), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -124996,19 +127160,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88949] = 4, - ACTIONS(2007), 1, + [90624] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 14, + ACTIONS(6557), 1, + sym__assignment_name, + STATE(2941), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6445), 4, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_LBRACE_RBRACE, + anon_sym_SEMI_SEMI, + ACTIONS(6441), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -125016,16 +127181,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 27, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(6443), 7, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(6447), 22, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125044,15 +127212,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89001] = 3, - ACTIONS(2007), 1, + [90683] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 13, - anon_sym_SEMI, + ACTIONS(5905), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -125061,18 +127227,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 29, + ACTIONS(5903), 32, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125091,16 +127260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89051] = 5, - ACTIONS(2007), 1, + [90734] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6463), 1, - sym_heredoc_body, - ACTIONS(6465), 1, - sym_heredoc_end, - ACTIONS(6213), 9, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -125108,20 +127278,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 31, + ACTIONS(6340), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125140,16 +127309,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89105] = 3, - ACTIONS(2007), 1, + [90787] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 13, + ACTIONS(6426), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -125157,8 +127325,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 29, + ACTIONS(6428), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -125187,13 +127357,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89155] = 3, - ACTIONS(2007), 1, + [90838] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 11, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 13, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -125202,20 +127376,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 31, - sym__concat, + ACTIONS(6340), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125234,27 +127406,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89205] = 7, - ACTIONS(2007), 1, + [90891] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6467), 1, - sym__assignment_name, - STATE(3043), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6271), 4, + ACTIONS(6485), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_esac, anon_sym_SEMI_SEMI, - ACTIONS(6269), 6, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(6267), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -125262,11 +127422,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6273), 22, + ACTIONS(6487), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125285,16 +127454,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89263] = 3, - ACTIONS(2007), 1, + [90942] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 14, + ACTIONS(6302), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -125303,17 +127469,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 28, + ACTIONS(6300), 32, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125332,15 +127502,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89313] = 3, - ACTIONS(2007), 1, + [90993] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 12, + ACTIONS(6426), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, + anon_sym_BANG, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -125348,9 +127519,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 30, + ACTIONS(6428), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -125379,15 +127550,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89363] = 3, - ACTIONS(2007), 1, + [91044] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 12, - anon_sym_SEMI, + ACTIONS(5969), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -125395,19 +127565,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 30, + ACTIONS(5967), 32, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125426,10 +127598,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89413] = 3, - ACTIONS(2007), 1, + [91095] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 12, + ACTIONS(6489), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -125442,7 +127614,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 30, + ACTIONS(6491), 31, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -125473,17 +127646,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89463] = 5, - ACTIONS(2007), 1, + [91146] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6470), 1, - sym__concat, - STATE(1246), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 11, + ACTIONS(6493), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, @@ -125492,7 +127662,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 29, + ACTIONS(6495), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -125522,15 +127694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89517] = 3, - ACTIONS(2007), 1, + [91197] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 12, + ACTIONS(6485), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, + anon_sym_BANG, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -125538,9 +127711,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 30, + ACTIONS(6487), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -125569,153 +127742,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89567] = 3, - ACTIONS(2007), 1, + [91248] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 12, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6560), 1, sym_word, + ACTIONS(6562), 1, + anon_sym_LPAREN, + ACTIONS(6564), 1, + aux_sym_brace_expression_token1, + ACTIONS(6568), 1, anon_sym_DOLLAR, + ACTIONS(6570), 1, + anon_sym_DQUOTE, + ACTIONS(6572), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6574), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 30, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6576), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6578), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6582), 1, sym__backtick_open, + ACTIONS(6584), 1, sym__dollar_literal, + ACTIONS(6586), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + STATE(2816), 1, + sym_string, + STATE(3570), 1, + sym__word_part, + ACTIONS(6580), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2768), 2, + sym_brace_expression, + sym__expression, + STATE(2852), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6566), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [89617] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6175), 11, + STATE(2888), 3, + sym_array, + sym__word_like, + sym_concatenation, + ACTIONS(2892), 5, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 31, - sym__concat, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - ts_builtin_sym_end, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + STATE(2848), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2890), 7, + sym__heredoc_newline, + sym__assignment_name, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + [91339] = 23, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6560), 1, + sym_word, + ACTIONS(6562), 1, + anon_sym_LPAREN, + ACTIONS(6564), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(6568), 1, + anon_sym_DOLLAR, + ACTIONS(6570), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6572), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6574), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6576), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6578), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6582), 1, + sym__backtick_open, + ACTIONS(6584), 1, + sym__dollar_literal, + ACTIONS(6586), 1, + sym__brace_expr_start, + STATE(2816), 1, + sym_string, + STATE(3570), 1, + sym__word_part, + ACTIONS(6580), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89667] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6472), 1, - sym__concat, - STATE(1246), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 11, - anon_sym_SEMI, + STATE(2768), 2, + sym_brace_expression, + sym__expression, + STATE(2852), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6566), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2900), 3, + sym_array, + sym__word_like, + sym_concatenation, + ACTIONS(2937), 5, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 29, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + STATE(2848), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2935), 7, + sym__heredoc_newline, sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [89721] = 3, - ACTIONS(2007), 1, + [91430] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 14, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -125730,8 +127898,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 28, - sym__concat, + ACTIONS(6340), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -125759,15 +127927,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89771] = 3, - ACTIONS(2007), 1, + [91483] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 12, + ACTIONS(6588), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -125775,9 +127945,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 30, - sym__concat, - sym__assignment_name, + ACTIONS(6590), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -125806,62 +127975,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89821] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6475), 1, - sym_heredoc_end, - ACTIONS(6252), 11, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 30, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [89873] = 3, - ACTIONS(2007), 1, + [91534] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 13, + ACTIONS(6592), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, @@ -125871,8 +127993,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 29, - sym__concat, + ACTIONS(6594), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -125901,15 +128023,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89923] = 3, - ACTIONS(2007), 1, + [91585] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 13, - anon_sym_SEMI, + ACTIONS(6426), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -125918,18 +128041,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 29, + ACTIONS(6428), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125948,15 +128071,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89973] = 3, - ACTIONS(2007), 1, + [91636] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 12, - anon_sym_SEMI, + ACTIONS(6596), 1, + sym__concat, + STATE(1279), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -125964,19 +128088,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 30, - sym__concat, + ACTIONS(6435), 32, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125995,15 +128121,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90023] = 3, - ACTIONS(2007), 1, + [91691] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 12, + ACTIONS(6489), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, + anon_sym_BANG, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126011,9 +128138,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 30, + ACTIONS(6491), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -126042,16 +128169,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90073] = 3, - ACTIONS(2007), 1, + [91742] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 13, - anon_sym_SEMI, + ACTIONS(6598), 1, + sym__concat, + STATE(1279), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126059,18 +128186,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 29, - sym__concat, + ACTIONS(6428), 32, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126089,15 +128219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90123] = 3, - ACTIONS(2007), 1, + [91797] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 12, + ACTIONS(6493), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, + anon_sym_BANG, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126105,9 +128236,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 30, + ACTIONS(6495), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -126136,15 +128267,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90173] = 3, - ACTIONS(2007), 1, + [91848] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 12, - anon_sym_SEMI, + ACTIONS(6485), 14, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126152,19 +128285,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 30, + ACTIONS(6487), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126183,10 +128315,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90223] = 3, - ACTIONS(2007), 1, + [91899] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 11, + ACTIONS(6019), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -126198,7 +128330,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 31, + ACTIONS(6017), 32, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -126230,15 +128363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90273] = 3, - ACTIONS(2007), 1, + [91950] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 12, - anon_sym_SEMI, + ACTIONS(6489), 14, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126246,19 +128381,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 30, + ACTIONS(6491), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126277,15 +128411,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90323] = 3, - ACTIONS(2007), 1, + [92001] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 13, - anon_sym_SEMI, + ACTIONS(6493), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -126294,18 +128429,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 29, + ACTIONS(6495), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126324,10 +128459,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90373] = 3, - ACTIONS(2007), 1, + [92052] = 23, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6452), 1, + sym_word, + ACTIONS(6454), 1, + anon_sym_LPAREN, + ACTIONS(6456), 1, + aux_sym_brace_expression_token1, + ACTIONS(6460), 1, + anon_sym_DOLLAR, + ACTIONS(6462), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6468), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6470), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6474), 1, + sym__backtick_open, + ACTIONS(6476), 1, + sym__dollar_literal, + ACTIONS(6478), 1, + sym__brace_expr_start, + STATE(2973), 1, + sym_string, + STATE(3542), 1, + sym__word_part, + ACTIONS(6472), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2946), 2, + sym_simple_expansion, + sym_expansion, + STATE(2966), 2, + sym_brace_expression, + sym__expression, + ACTIONS(6458), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3002), 3, + sym_array, + sym__word_like, + sym_concatenation, + ACTIONS(2892), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + STATE(2978), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2890), 8, + sym__heredoc_newline, + sym__assignment_name, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [92143] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6477), 14, + ACTIONS(6452), 1, + sym_word, + ACTIONS(6454), 1, + anon_sym_LPAREN, + ACTIONS(6456), 1, + aux_sym_brace_expression_token1, + ACTIONS(6460), 1, + anon_sym_DOLLAR, + ACTIONS(6462), 1, + anon_sym_DQUOTE, + ACTIONS(6464), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6466), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6468), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6470), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6474), 1, + sym__backtick_open, + ACTIONS(6476), 1, + sym__dollar_literal, + ACTIONS(6478), 1, + sym__brace_expr_start, + STATE(2973), 1, + sym_string, + STATE(3542), 1, + sym__word_part, + ACTIONS(6472), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2946), 2, + sym_simple_expansion, + sym_expansion, + STATE(2966), 2, + sym_brace_expression, + sym__expression, + ACTIONS(6458), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2995), 3, + sym_array, + sym__word_like, + sym_concatenation, + ACTIONS(2937), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + STATE(2978), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2935), 8, + sym__heredoc_newline, + sym__assignment_name, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [92234] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6601), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -126342,7 +128613,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6479), 28, + ACTIONS(6603), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -126371,10 +128643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90423] = 3, - ACTIONS(2007), 1, + [92285] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6481), 14, + ACTIONS(6605), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -126389,7 +128661,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6483), 28, + ACTIONS(6607), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -126418,15 +128691,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90473] = 3, - ACTIONS(2007), 1, + [92336] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 12, + ACTIONS(6609), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126434,9 +128709,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 30, - sym__concat, - sym__assignment_name, + ACTIONS(6611), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -126465,15 +128739,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90523] = 3, - ACTIONS(2007), 1, + [92387] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 12, + ACTIONS(6613), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126481,9 +128757,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 30, - sym__concat, - sym__assignment_name, + ACTIONS(6615), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -126512,17 +128787,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90573] = 4, - ACTIONS(2007), 1, + [92438] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6485), 1, - sym_heredoc_end, - ACTIONS(6252), 12, + ACTIONS(6617), 14, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126530,8 +128805,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 29, - sym__assignment_name, + ACTIONS(6619), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -126560,15 +128835,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90625] = 3, - ACTIONS(2007), 1, + [92489] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 12, - anon_sym_SEMI, + ACTIONS(6302), 14, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126576,19 +128853,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 30, + ACTIONS(6300), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126607,17 +128883,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90675] = 3, - ACTIONS(2007), 1, + [92540] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6487), 14, + ACTIONS(6302), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126625,7 +128899,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6489), 28, + ACTIONS(6300), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -126654,81 +128931,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90725] = 23, - ACTIONS(2007), 1, + [92591] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6491), 1, + ACTIONS(6109), 12, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6493), 1, - anon_sym_LPAREN, - ACTIONS(6495), 1, - aux_sym_brace_expression_token1, - ACTIONS(6499), 1, anon_sym_DOLLAR, - ACTIONS(6501), 1, - anon_sym_DQUOTE, - ACTIONS(6503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6507), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6509), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6513), 1, + ACTIONS(6107), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(6515), 1, sym__dollar_literal, - ACTIONS(6517), 1, sym__brace_expr_start, - STATE(2916), 1, - sym_string, - STATE(3573), 1, - sym__word_part, - ACTIONS(3029), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2941), 2, - sym_simple_expansion, - sym_expansion, - STATE(2945), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6497), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2957), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(2917), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3027), 9, - sym__assignment_name, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - [90815] = 3, - ACTIONS(2007), 1, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [92642] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 11, + ACTIONS(5905), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126736,20 +128995,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 31, + ACTIONS(5903), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126768,14 +129027,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90865] = 3, - ACTIONS(2007), 1, + [92693] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 11, + ACTIONS(6621), 1, + sym__concat, + STATE(1358), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126783,20 +129046,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 31, - sym__concat, + ACTIONS(6435), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126815,16 +129077,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90915] = 3, - ACTIONS(2007), 1, + [92748] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 13, + ACTIONS(6177), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126832,8 +129093,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 29, + ACTIONS(6175), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -126862,16 +129125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90965] = 3, - ACTIONS(2007), 1, + [92799] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 13, + ACTIONS(6264), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -126879,8 +129141,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 29, + ACTIONS(6262), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -126909,78 +129173,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91015] = 24, - ACTIONS(2007), 1, + [92850] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6284), 1, + ACTIONS(6485), 11, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6294), 1, - anon_sym_EQ_TILDE, - ACTIONS(6296), 1, - aux_sym_brace_expression_token1, - ACTIONS(6300), 1, anon_sym_DOLLAR, - ACTIONS(6302), 1, - anon_sym_DQUOTE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6314), 1, + ACTIONS(6487), 32, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, sym__backtick_open, - ACTIONS(6316), 1, sym__dollar_literal, - ACTIONS(6318), 1, sym__brace_expr_start, - STATE(2114), 1, - sym_string, - STATE(3578), 1, - sym__word_part, - ACTIONS(6286), 2, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(6312), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2116), 2, - sym_simple_expansion, - sym_expansion, - STATE(2138), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6298), 3, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(6521), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - STATE(1197), 3, - aux_sym__conditional, - sym__word_like, - sym_concatenation, - STATE(2115), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(6519), 6, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - [91107] = 3, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [92901] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 12, + ACTIONS(6189), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -126993,7 +129237,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 30, + ACTIONS(6187), 31, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -127024,13 +129269,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91157] = 3, - ACTIONS(2007), 1, + [92952] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 11, + ACTIONS(6302), 13, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -127039,20 +129286,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 31, + ACTIONS(6300), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127071,15 +129317,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91207] = 3, - ACTIONS(2007), 1, + [93003] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 12, + ACTIONS(6109), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, + anon_sym_BANG, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -127087,9 +129334,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 30, + ACTIONS(6107), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -127118,10 +129365,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91257] = 3, - ACTIONS(2007), 1, + [93054] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 12, + ACTIONS(5951), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -127134,7 +129381,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 30, + ACTIONS(5949), 31, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -127165,14 +129413,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91307] = 3, - ACTIONS(2007), 1, + [93105] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 11, + ACTIONS(6322), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -127180,20 +129429,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 31, + ACTIONS(6320), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127212,13 +129461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91357] = 3, - ACTIONS(2007), 1, + [93156] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 11, + ACTIONS(5905), 13, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -127227,20 +129478,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 31, + ACTIONS(5903), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127259,12 +129509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91407] = 4, - ACTIONS(2007), 1, + [93207] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6523), 1, - sym_heredoc_end, - ACTIONS(6258), 12, + ACTIONS(5969), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -127277,7 +129525,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 29, + ACTIONS(5967), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -127307,84 +129557,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91459] = 24, - ACTIONS(2007), 1, + [93258] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6284), 1, + ACTIONS(6019), 12, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6294), 1, - anon_sym_EQ_TILDE, - ACTIONS(6296), 1, - aux_sym_brace_expression_token1, - ACTIONS(6300), 1, anon_sym_DOLLAR, - ACTIONS(6302), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6017), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, anon_sym_DQUOTE, - ACTIONS(6304), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6308), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6310), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6314), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93309] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6143), 12, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6141), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(6316), 1, sym__dollar_literal, - ACTIONS(6318), 1, sym__brace_expr_start, - STATE(2114), 1, - sym_string, - STATE(3578), 1, - sym__word_part, - ACTIONS(6286), 2, + anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(6312), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2116), 2, - sym_simple_expansion, - sym_expansion, - STATE(2138), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6298), 3, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(6527), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - STATE(1191), 3, - aux_sym__conditional, - sym__word_like, - sym_concatenation, - STATE(2115), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(6525), 6, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - [91551] = 3, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93360] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 14, + ACTIONS(6177), 13, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -127393,17 +129670,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 28, + ACTIONS(6175), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127422,16 +129701,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91601] = 5, - ACTIONS(2007), 1, + [93411] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6529), 1, - sym__concat, - STATE(1342), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 9, + ACTIONS(6183), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -127439,20 +129717,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 31, + ACTIONS(6181), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127471,17 +129749,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91655] = 3, - ACTIONS(2007), 1, + [93462] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 14, + ACTIONS(6244), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_LBRACE_RBRACE, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -127489,17 +129765,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 28, + ACTIONS(6242), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127518,14 +129797,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91705] = 3, - ACTIONS(2007), 1, + [93513] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 11, + ACTIONS(6260), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -127533,20 +129813,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 31, + ACTIONS(6258), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127565,15 +129845,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91755] = 3, - ACTIONS(2007), 1, + [93564] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 12, + ACTIONS(6264), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, + anon_sym_BANG, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -127581,9 +129862,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 30, + ACTIONS(6262), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -127612,148 +129893,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [91805] = 23, - ACTIONS(2007), 1, + [93615] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6400), 1, - sym_word, - ACTIONS(6402), 1, - anon_sym_LPAREN, - ACTIONS(6404), 1, - aux_sym_brace_expression_token1, - ACTIONS(6408), 1, - anon_sym_DOLLAR, - ACTIONS(6410), 1, - anon_sym_DQUOTE, - ACTIONS(6412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6414), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6416), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6422), 1, - sym__backtick_open, - ACTIONS(6424), 1, - sym__dollar_literal, - ACTIONS(6426), 1, - sym__brace_expr_start, - STATE(3028), 1, - sym_string, - STATE(3556), 1, - sym__word_part, - ACTIONS(6420), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3020), 2, - sym_brace_expression, - sym__expression, - STATE(3032), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(6406), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3045), 3, - sym_array, - sym__word_like, - sym_concatenation, - ACTIONS(2984), 4, + ACTIONS(6189), 13, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - STATE(3030), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2982), 7, - sym__assignment_name, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [91895] = 24, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6284), 1, - sym_word, - ACTIONS(6294), 1, - anon_sym_EQ_TILDE, - ACTIONS(6296), 1, - aux_sym_brace_expression_token1, - ACTIONS(6300), 1, - anon_sym_DOLLAR, - ACTIONS(6302), 1, - anon_sym_DQUOTE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6314), 1, - sym__backtick_open, - ACTIONS(6316), 1, - sym__dollar_literal, - ACTIONS(6318), 1, - sym__brace_expr_start, - STATE(2114), 1, - sym_string, - STATE(3578), 1, - sym__word_part, - ACTIONS(6286), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(6312), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2116), 2, - sym_simple_expansion, - sym_expansion, - STATE(2138), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6298), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6533), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - STATE(1192), 3, - aux_sym__conditional, - sym__word_like, - sym_concatenation, - STATE(2115), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(6531), 6, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - [91987] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6446), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -127762,20 +129910,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 31, + ACTIONS(6187), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127794,87 +129941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92037] = 24, - ACTIONS(2007), 1, + [93666] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6284), 1, - sym_word, - ACTIONS(6294), 1, - anon_sym_EQ_TILDE, - ACTIONS(6296), 1, - aux_sym_brace_expression_token1, - ACTIONS(6300), 1, - anon_sym_DOLLAR, - ACTIONS(6302), 1, - anon_sym_DQUOTE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6314), 1, - sym__backtick_open, - ACTIONS(6316), 1, - sym__dollar_literal, - ACTIONS(6318), 1, - sym__brace_expr_start, - STATE(2114), 1, - sym_string, - STATE(3578), 1, - sym__word_part, - ACTIONS(6286), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(6312), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2116), 2, - sym_simple_expansion, - sym_expansion, - STATE(2138), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6298), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6537), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - STATE(1181), 3, - aux_sym__conditional, - sym__word_like, - sym_concatenation, - STATE(2115), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(6535), 6, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - [92129] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6539), 1, - sym_heredoc_body, - ACTIONS(6541), 1, - sym_heredoc_end, - ACTIONS(6205), 12, + ACTIONS(6270), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -127882,17 +129957,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 28, + ACTIONS(6268), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -127911,16 +129989,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92183] = 3, - ACTIONS(2007), 1, + [93717] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 13, + ACTIONS(6083), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -127928,8 +130005,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 29, + ACTIONS(6081), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -127958,16 +130037,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92233] = 3, - ACTIONS(2007), 1, + [93768] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 13, + ACTIONS(6101), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -127975,8 +130053,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 29, + ACTIONS(6099), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -128005,14 +130085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92283] = 3, - ACTIONS(2007), 1, + [93819] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 11, + ACTIONS(6105), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -128020,20 +130101,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 31, + ACTIONS(6103), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128052,15 +130133,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92333] = 3, - ACTIONS(2007), 1, + [93870] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(5951), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, + anon_sym_BANG, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -128068,9 +130150,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 30, + ACTIONS(5949), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -128099,13 +130181,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92383] = 3, - ACTIONS(2007), 1, + [93921] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 11, + ACTIONS(6322), 13, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -128114,20 +130198,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 31, + ACTIONS(6320), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128146,10 +130229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92433] = 3, - ACTIONS(2007), 1, + [93972] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 13, + ACTIONS(5969), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -128163,7 +130246,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 29, + ACTIONS(5967), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -128193,80 +130277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92483] = 23, - ACTIONS(2007), 1, + [94023] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6400), 1, - sym_word, - ACTIONS(6402), 1, - anon_sym_LPAREN, - ACTIONS(6404), 1, - aux_sym_brace_expression_token1, - ACTIONS(6408), 1, - anon_sym_DOLLAR, - ACTIONS(6410), 1, - anon_sym_DQUOTE, - ACTIONS(6412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6414), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6416), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6422), 1, - sym__backtick_open, - ACTIONS(6424), 1, - sym__dollar_literal, - ACTIONS(6426), 1, - sym__brace_expr_start, - STATE(3028), 1, - sym_string, - STATE(3556), 1, - sym__word_part, - ACTIONS(6420), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3020), 2, - sym_brace_expression, - sym__expression, - STATE(3032), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(6406), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3049), 3, - sym_array, - sym__word_like, - sym_concatenation, - ACTIONS(3029), 4, + ACTIONS(6019), 13, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - STATE(3030), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3027), 7, - sym__assignment_name, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [92573] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5806), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -128275,20 +130294,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 31, + ACTIONS(6017), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128307,13 +130325,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92623] = 3, - ACTIONS(2007), 1, + [94074] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 11, + ACTIONS(6143), 13, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -128322,20 +130342,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 31, + ACTIONS(6141), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128354,10 +130373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92673] = 3, - ACTIONS(2007), 1, + [94125] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 13, + ACTIONS(6183), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -128371,7 +130390,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 29, + ACTIONS(6181), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -128401,13 +130421,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92723] = 3, - ACTIONS(2007), 1, + [94176] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 11, + ACTIONS(6244), 13, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -128416,20 +130438,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 31, + ACTIONS(6242), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128448,13 +130469,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92773] = 3, - ACTIONS(2007), 1, + [94227] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 11, + ACTIONS(6260), 13, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -128463,20 +130486,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 31, + ACTIONS(6258), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128495,15 +130517,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92823] = 3, - ACTIONS(2007), 1, + [94278] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 14, + ACTIONS(6270), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, @@ -128513,7 +130534,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 28, + ACTIONS(6268), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -128542,15 +130565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92873] = 3, - ACTIONS(2007), 1, + [94329] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 14, + ACTIONS(6083), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, @@ -128560,7 +130582,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 28, + ACTIONS(6081), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -128589,15 +130613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92923] = 3, - ACTIONS(2007), 1, + [94380] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 14, + ACTIONS(6101), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, @@ -128607,7 +130630,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 28, + ACTIONS(6099), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -128636,10 +130661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [92973] = 3, - ACTIONS(2007), 1, + [94431] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 13, + ACTIONS(6105), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -128653,7 +130678,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 29, + ACTIONS(6103), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -128683,15 +130709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93023] = 3, - ACTIONS(2007), 1, + [94482] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 13, - anon_sym_SEMI, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -128700,18 +130726,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 29, - sym__concat, + ACTIONS(6340), 31, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128730,62 +130758,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93073] = 3, - ACTIONS(2007), 1, + [94535] = 25, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 11, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6517), 1, sym_word, + ACTIONS(6527), 1, + anon_sym_EQ_TILDE, + ACTIONS(6529), 1, + aux_sym_brace_expression_token1, + ACTIONS(6533), 1, anon_sym_DOLLAR, + ACTIONS(6535), 1, + anon_sym_DQUOTE, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6539), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 31, - sym__concat, - sym__file_descriptor, + ACTIONS(6541), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6543), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6547), 1, sym__backtick_open, + ACTIONS(6549), 1, sym__dollar_literal, + ACTIONS(6551), 1, sym__brace_expr_start, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(6623), 1, + anon_sym_RBRACK_RBRACK, + STATE(2078), 1, + sym_string, + STATE(3544), 1, + sym__word_part, + ACTIONS(6519), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(6545), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2082), 2, + sym_brace_expression, + sym__expression, + STATE(2098), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6523), 3, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + anon_sym_BANG_EQ, + ACTIONS(6531), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + STATE(1339), 3, + aux_sym__conditional, + sym__word_like, + sym_concatenation, + STATE(2068), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6521), 6, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + [94630] = 25, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6517), 1, + sym_word, + ACTIONS(6527), 1, + anon_sym_EQ_TILDE, + ACTIONS(6529), 1, + aux_sym_brace_expression_token1, + ACTIONS(6533), 1, + anon_sym_DOLLAR, + ACTIONS(6535), 1, + anon_sym_DQUOTE, + ACTIONS(6537), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6539), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6541), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6543), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6547), 1, + sym__backtick_open, + ACTIONS(6549), 1, + sym__dollar_literal, + ACTIONS(6551), 1, + sym__brace_expr_start, + ACTIONS(6625), 1, + anon_sym_RBRACK_RBRACK, + STATE(2078), 1, + sym_string, + STATE(3544), 1, + sym__word_part, + ACTIONS(6519), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(6545), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93123] = 3, - ACTIONS(2007), 1, + STATE(2082), 2, + sym_brace_expression, + sym__expression, + STATE(2098), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6523), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + ACTIONS(6531), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1339), 3, + aux_sym__conditional, + sym__word_like, + sym_concatenation, + STATE(2068), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6521), 6, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + [94725] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 13, - anon_sym_SEMI, + ACTIONS(6109), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -128794,18 +130916,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 29, + ACTIONS(6107), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128824,16 +130946,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93173] = 3, - ACTIONS(2007), 1, + [94776] = 25, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 14, - anon_sym_SEMI, + ACTIONS(6517), 1, + sym_word, + ACTIONS(6527), 1, + anon_sym_EQ_TILDE, + ACTIONS(6529), 1, + aux_sym_brace_expression_token1, + ACTIONS(6533), 1, + anon_sym_DOLLAR, + ACTIONS(6535), 1, + anon_sym_DQUOTE, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6539), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6541), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6543), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6547), 1, + sym__backtick_open, + ACTIONS(6549), 1, + sym__dollar_literal, + ACTIONS(6551), 1, + sym__brace_expr_start, + ACTIONS(6627), 1, + anon_sym_RBRACK_RBRACK, + STATE(2078), 1, + sym_string, + STATE(3544), 1, + sym__word_part, + ACTIONS(6519), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(6545), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2082), 2, + sym_brace_expression, + sym__expression, + STATE(2098), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6523), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + ACTIONS(6531), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1339), 3, + aux_sym__conditional, + sym__word_like, + sym_concatenation, + STATE(2068), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6521), 6, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + [94871] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6143), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -128842,17 +131031,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, + ACTIONS(6141), 32, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128871,16 +131064,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93223] = 4, - ACTIONS(2007), 1, + [94922] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 11, + ACTIONS(6629), 1, + sym__assignment_name, + ACTIONS(6445), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + STATE(2960), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6441), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -128888,11 +131083,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 30, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(6443), 9, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -128901,6 +131093,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_RPAREN, anon_sym_RBRACE, + ACTIONS(6447), 22, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128919,16 +131116,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93275] = 3, - ACTIONS(2007), 1, + [94981] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 14, - anon_sym_SEMI, + ACTIONS(6109), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -128937,17 +131131,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, + ACTIONS(6107), 32, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128966,10 +131164,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93325] = 3, - ACTIONS(2007), 1, + [95032] = 25, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6632), 1, + sym_word, + ACTIONS(6644), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(6646), 1, + anon_sym_EQ_TILDE, + ACTIONS(6649), 1, + aux_sym_brace_expression_token1, + ACTIONS(6655), 1, + anon_sym_DOLLAR, + ACTIONS(6658), 1, + anon_sym_DQUOTE, + ACTIONS(6661), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6664), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6667), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6670), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6676), 1, + sym__backtick_open, + ACTIONS(6679), 1, + sym__dollar_literal, + ACTIONS(6682), 1, + sym__brace_expr_start, + STATE(2078), 1, + sym_string, + STATE(3544), 1, + sym__word_part, + ACTIONS(6635), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(6673), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2082), 2, + sym_brace_expression, + sym__expression, + STATE(2098), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6641), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + ACTIONS(6652), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1339), 3, + aux_sym__conditional, + sym__word_like, + sym_concatenation, + STATE(2068), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6638), 6, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + [95127] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 11, + ACTIONS(6177), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -128981,7 +131249,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 31, + ACTIONS(6175), 32, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -129013,10 +131282,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93375] = 3, - ACTIONS(2007), 1, + [95178] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 11, + ACTIONS(6183), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -129028,7 +131297,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 31, + ACTIONS(6181), 32, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -129060,16 +131330,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93425] = 3, - ACTIONS(2007), 1, + [95229] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 14, - anon_sym_SEMI, + ACTIONS(5951), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -129078,17 +131345,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 28, + ACTIONS(5949), 32, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129107,16 +131378,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93475] = 3, - ACTIONS(2007), 1, + [95280] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 14, - anon_sym_SEMI, + ACTIONS(6105), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_esac, - anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -129125,17 +131393,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 28, + ACTIONS(6103), 32, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129154,16 +131426,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93525] = 3, - ACTIONS(2007), 1, + [95331] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 14, + ACTIONS(6260), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -129172,17 +131441,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 28, + ACTIONS(6258), 32, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129201,16 +131474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93575] = 3, - ACTIONS(2007), 1, + [95382] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 14, + ACTIONS(6264), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -129219,17 +131489,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 28, + ACTIONS(6262), 32, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129248,18 +131522,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93625] = 5, - ACTIONS(2007), 1, + [95433] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6563), 1, - sym_heredoc_body, - ACTIONS(6565), 1, - sym_heredoc_end, - ACTIONS(6205), 11, - anon_sym_SEMI, + ACTIONS(6426), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -129267,18 +131537,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 29, - sym__assignment_name, + ACTIONS(6428), 32, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129297,10 +131570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93679] = 3, - ACTIONS(2007), 1, + [95484] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 14, + ACTIONS(5905), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -129315,7 +131588,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 28, + ACTIONS(5903), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -129344,10 +131618,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93729] = 3, - ACTIONS(2007), 1, + [95535] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 11, + ACTIONS(6489), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -129359,7 +131633,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 31, + ACTIONS(6491), 32, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -129391,18 +131666,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93779] = 5, - ACTIONS(2007), 1, + [95586] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6567), 1, - sym_heredoc_body, - ACTIONS(6569), 1, - sym_heredoc_end, - ACTIONS(6213), 11, - anon_sym_SEMI, + ACTIONS(6177), 14, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -129410,18 +131684,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 29, - sym__assignment_name, + ACTIONS(6175), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129440,17 +131714,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93833] = 3, - ACTIONS(2007), 1, + [95637] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 14, + ACTIONS(6685), 1, + sym__assignment_name, + STATE(2967), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6445), 5, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, anon_sym_elif, anon_sym_else, - anon_sym_LBRACE_RBRACE, + ACTIONS(6443), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(6441), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -129458,17 +131743,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 28, - sym__concat, + ACTIONS(6447), 22, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129487,15 +131766,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93883] = 3, - ACTIONS(2007), 1, + [95696] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 13, + ACTIONS(6560), 1, + sym_word, + ACTIONS(6562), 1, + anon_sym_LPAREN, + ACTIONS(6564), 1, + aux_sym_brace_expression_token1, + ACTIONS(6568), 1, + anon_sym_DOLLAR, + ACTIONS(6570), 1, + anon_sym_DQUOTE, + ACTIONS(6572), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6574), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6576), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6578), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6582), 1, + sym__backtick_open, + ACTIONS(6584), 1, + sym__dollar_literal, + ACTIONS(6586), 1, + sym__brace_expr_start, + STATE(2816), 1, + sym_string, + STATE(3570), 1, + sym__word_part, + ACTIONS(2892), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6580), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2768), 2, + sym_brace_expression, + sym__expression, + STATE(2852), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6566), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2888), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(2848), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2890), 10, + sym__heredoc_newline, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + [95787] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6189), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -129504,18 +131849,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 29, + ACTIONS(6187), 32, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129534,16 +131882,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93933] = 3, - ACTIONS(2007), 1, + [95838] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 14, + ACTIONS(6270), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -129552,17 +131897,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 28, + ACTIONS(6268), 32, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129581,16 +131930,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93983] = 3, - ACTIONS(2007), 1, + [95889] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 14, + ACTIONS(6083), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -129599,17 +131945,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 28, + ACTIONS(6081), 32, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129628,83 +131978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94033] = 23, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6491), 1, - sym_word, - ACTIONS(6493), 1, - anon_sym_LPAREN, - ACTIONS(6495), 1, - aux_sym_brace_expression_token1, - ACTIONS(6499), 1, - anon_sym_DOLLAR, - ACTIONS(6501), 1, - anon_sym_DQUOTE, - ACTIONS(6503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6505), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6507), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6509), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6513), 1, - sym__backtick_open, - ACTIONS(6515), 1, - sym__dollar_literal, - ACTIONS(6517), 1, - sym__brace_expr_start, - STATE(2916), 1, - sym_string, - STATE(3573), 1, - sym__word_part, - ACTIONS(6511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2941), 2, - sym_simple_expansion, - sym_expansion, - STATE(2945), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6497), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2959), 3, - sym_array, - sym__word_like, - sym_concatenation, - ACTIONS(2984), 5, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - STATE(2917), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2982), 6, - sym__assignment_name, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [94123] = 3, - ACTIONS(2007), 1, + [95940] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 14, + ACTIONS(6101), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -129713,17 +131993,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 28, + ACTIONS(6099), 32, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129742,18 +132026,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94173] = 7, - ACTIONS(2007), 1, + [95991] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6571), 1, - sym__assignment_name, - ACTIONS(6271), 2, + ACTIONS(6493), 11, anon_sym_AMP, anon_sym_PIPE, - STATE(3029), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6267), 7, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -129761,7 +132041,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6269), 8, + ACTIONS(6495), 32, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -129770,11 +132056,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(6273), 22, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129793,17 +132074,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94231] = 3, - ACTIONS(2007), 1, + [96042] = 23, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6560), 1, + sym_word, + ACTIONS(6562), 1, + anon_sym_LPAREN, + ACTIONS(6564), 1, + aux_sym_brace_expression_token1, + ACTIONS(6568), 1, + anon_sym_DOLLAR, + ACTIONS(6570), 1, + anon_sym_DQUOTE, + ACTIONS(6572), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6574), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6576), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6578), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6582), 1, + sym__backtick_open, + ACTIONS(6584), 1, + sym__dollar_literal, + ACTIONS(6586), 1, + sym__brace_expr_start, + STATE(2816), 1, + sym_string, + STATE(3570), 1, + sym__word_part, + ACTIONS(2937), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6580), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2768), 2, + sym_brace_expression, + sym__expression, + STATE(2852), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6566), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2900), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(2848), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2935), 10, + sym__heredoc_newline, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + [96133] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 14, + ACTIONS(6688), 1, + sym__concat, + STATE(1358), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_LBRACE_RBRACE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -129811,17 +132161,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 28, - sym__concat, + ACTIONS(6428), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129840,17 +132192,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94281] = 3, - ACTIONS(2007), 1, + [96188] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 14, + ACTIONS(6264), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -129858,17 +132205,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 28, + ACTIONS(6262), 33, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129887,14 +132239,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94331] = 5, - ACTIONS(2007), 1, + [96238] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6574), 1, - sym__concat, - STATE(1346), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 12, + ACTIONS(6426), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_fi, @@ -129907,7 +132255,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 28, + ACTIONS(6428), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -129936,14 +132286,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94385] = 3, - ACTIONS(2007), 1, + [96288] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 11, + ACTIONS(6189), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -129951,8 +132299,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 31, + ACTIONS(6187), 33, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -129983,16 +132333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94435] = 3, - ACTIONS(2007), 1, + [96338] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 13, - anon_sym_SEMI, + ACTIONS(6270), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130000,18 +132346,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 29, + ACTIONS(6268), 33, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130030,16 +132380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94485] = 3, - ACTIONS(2007), 1, + [96388] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 13, - anon_sym_SEMI, + ACTIONS(6083), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130047,18 +132393,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 29, + ACTIONS(6081), 33, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130077,16 +132427,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94535] = 3, - ACTIONS(2007), 1, + [96438] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 13, - anon_sym_SEMI, + ACTIONS(6101), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130094,18 +132440,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 29, + ACTIONS(6099), 33, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130124,151 +132474,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94585] = 23, - ACTIONS(2007), 1, + [96488] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6491), 1, + ACTIONS(6485), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6493), 1, - anon_sym_LPAREN, - ACTIONS(6495), 1, - aux_sym_brace_expression_token1, - ACTIONS(6499), 1, anon_sym_DOLLAR, - ACTIONS(6501), 1, - anon_sym_DQUOTE, - ACTIONS(6503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6507), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6509), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6513), 1, + ACTIONS(6487), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(6515), 1, sym__dollar_literal, - ACTIONS(6517), 1, sym__brace_expr_start, - STATE(2916), 1, - sym_string, - STATE(3573), 1, - sym__word_part, - ACTIONS(2984), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2941), 2, - sym_simple_expansion, - sym_expansion, - STATE(2945), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6497), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2959), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(2917), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2982), 9, - sym__assignment_name, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - [94675] = 23, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6491), 1, - sym_word, - ACTIONS(6493), 1, - anon_sym_LPAREN, - ACTIONS(6495), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, - ACTIONS(6499), 1, - anon_sym_DOLLAR, - ACTIONS(6501), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(6503), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6505), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6513), 1, - sym__backtick_open, - ACTIONS(6515), 1, - sym__dollar_literal, - ACTIONS(6517), 1, - sym__brace_expr_start, - STATE(2916), 1, - sym_string, - STATE(3573), 1, - sym__word_part, - ACTIONS(6511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2941), 2, - sym_simple_expansion, - sym_expansion, - STATE(2945), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6497), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2957), 3, - sym_array, - sym__word_like, - sym_concatenation, - ACTIONS(3029), 5, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - STATE(2917), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3027), 6, - sym__assignment_name, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [94765] = 3, - ACTIONS(2007), 1, + [96538] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 14, + ACTIONS(6489), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, anon_sym_elif, anon_sym_else, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130276,8 +132537,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 28, + ACTIONS(6491), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -130305,16 +132568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94815] = 3, - ACTIONS(2007), 1, + [96588] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 13, - anon_sym_SEMI, + ACTIONS(6493), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130322,18 +132584,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 29, + ACTIONS(6495), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130352,18 +132615,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94865] = 4, - ACTIONS(2007), 1, + [96638] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6576), 1, - sym_heredoc_end, - ACTIONS(6252), 13, - anon_sym_SEMI, + ACTIONS(6105), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130371,17 +132628,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, + ACTIONS(6103), 33, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130400,16 +132662,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94917] = 5, - ACTIONS(2007), 1, + [96688] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6578), 1, - sym__concat, - STATE(1342), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 9, + ACTIONS(6302), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130417,20 +132678,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 31, + ACTIONS(6300), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130449,17 +132709,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [94971] = 3, - ACTIONS(2007), 1, + [96738] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 14, + ACTIONS(6109), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, anon_sym_elif, anon_sym_else, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130467,8 +132725,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 28, + ACTIONS(6107), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -130496,17 +132756,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95021] = 3, - ACTIONS(2007), 1, + [96788] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 14, + ACTIONS(5905), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, anon_sym_elif, anon_sym_else, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130514,8 +132772,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 28, + ACTIONS(5903), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -130543,17 +132803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95071] = 3, - ACTIONS(2007), 1, + [96838] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 14, + ACTIONS(6177), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, anon_sym_elif, anon_sym_else, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130561,8 +132819,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 28, + ACTIONS(6175), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -130590,14 +132850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95121] = 5, - ACTIONS(2007), 1, + [96888] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6581), 1, - sym__concat, - STATE(1346), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 12, + ACTIONS(6264), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_fi, @@ -130610,7 +132866,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 28, + ACTIONS(6262), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -130639,18 +132897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95175] = 4, - ACTIONS(2007), 1, + [96938] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6584), 1, - sym_heredoc_end, - ACTIONS(6258), 13, - anon_sym_SEMI, + ACTIONS(6189), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130658,17 +132913,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, + ACTIONS(6187), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130687,17 +132944,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95227] = 3, - ACTIONS(2007), 1, + [96988] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 14, + ACTIONS(6426), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130705,17 +132957,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 28, + ACTIONS(6428), 33, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130734,17 +132991,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95277] = 3, - ACTIONS(2007), 1, + [97038] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 14, + ACTIONS(5951), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, anon_sym_elif, anon_sym_else, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130752,8 +133007,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 28, + ACTIONS(5949), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -130781,14 +133038,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95327] = 3, - ACTIONS(2007), 1, + [97088] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 11, + ACTIONS(6322), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130796,20 +133054,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 31, + ACTIONS(6320), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130828,17 +133085,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95377] = 3, - ACTIONS(2007), 1, + [97138] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 14, + ACTIONS(5969), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, anon_sym_elif, anon_sym_else, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130846,8 +133101,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 28, + ACTIONS(5967), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -130875,17 +133132,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95427] = 3, - ACTIONS(2007), 1, + [97188] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 14, + ACTIONS(6019), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, anon_sym_elif, anon_sym_else, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130893,8 +133148,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 28, + ACTIONS(6017), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -130922,19 +133179,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95477] = 4, - ACTIONS(2007), 1, + [97238] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6586), 1, - sym_heredoc_end, - ACTIONS(6252), 14, + ACTIONS(6143), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, anon_sym_elif, anon_sym_else, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130942,7 +133195,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 27, + ACTIONS(6141), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -130970,19 +133226,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95529] = 4, - ACTIONS(2007), 1, + [97288] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6588), 1, - sym_heredoc_end, - ACTIONS(6258), 14, + ACTIONS(6183), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, anon_sym_elif, anon_sym_else, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -130990,7 +133242,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 27, + ACTIONS(6181), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -131018,17 +133273,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95581] = 4, - ACTIONS(2007), 1, + [97338] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 12, - anon_sym_SEMI, + ACTIONS(6244), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131036,18 +133289,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 29, + ACTIONS(6242), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131066,14 +133320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95633] = 5, - ACTIONS(2007), 1, + [97388] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6590), 1, - sym_heredoc_body, - ACTIONS(6592), 1, - sym_heredoc_end, - ACTIONS(6213), 12, + ACTIONS(6260), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_fi, @@ -131086,7 +133336,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 28, + ACTIONS(6258), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -131115,13 +133367,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95687] = 3, - ACTIONS(2007), 1, + [97438] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 11, + ACTIONS(6691), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, @@ -131130,8 +133383,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 30, - sym__concat, + ACTIONS(6693), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -131161,19 +133414,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95736] = 5, - ACTIONS(2007), 1, + [97488] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6337), 1, - anon_sym_LPAREN, - ACTIONS(6221), 12, + ACTIONS(6270), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131181,7 +133430,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 27, + ACTIONS(6268), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -131209,19 +133461,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95789] = 5, - ACTIONS(2007), 1, + [97538] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6594), 1, - sym_heredoc_body, - ACTIONS(6596), 1, - sym_heredoc_end, - ACTIONS(6205), 12, + ACTIONS(6083), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131229,7 +133477,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 27, + ACTIONS(6081), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -131257,17 +133508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95842] = 3, - ACTIONS(2007), 1, + [97588] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6487), 14, + ACTIONS(6101), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, anon_sym_elif, anon_sym_else, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131275,7 +133524,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6489), 27, + ACTIONS(6099), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -131303,19 +133555,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95891] = 5, - ACTIONS(2007), 1, + [97638] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6598), 1, - sym_heredoc_body, - ACTIONS(6600), 1, - sym_heredoc_end, - ACTIONS(6205), 12, + ACTIONS(6105), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131323,7 +133571,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 27, + ACTIONS(6103), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -131351,12 +133602,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95944] = 3, - ACTIONS(2007), 1, + [97688] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 9, + ACTIONS(6695), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131364,21 +133618,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 32, - sym__concat, + ACTIONS(6697), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131397,19 +133649,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [95993] = 5, - ACTIONS(2007), 1, + [97738] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6602), 1, - sym_heredoc_body, - ACTIONS(6604), 1, - sym_heredoc_end, - ACTIONS(6205), 12, + ACTIONS(6699), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131417,16 +133665,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 27, + ACTIONS(6701), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131445,14 +133696,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96046] = 3, - ACTIONS(2007), 1, + [97788] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 11, + ACTIONS(6703), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131460,19 +133712,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 30, + ACTIONS(6705), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131491,12 +133743,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96095] = 3, - ACTIONS(2007), 1, + [97838] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 9, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131504,21 +133760,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 32, - sym__concat, + ACTIONS(6340), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131537,12 +133791,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96144] = 3, - ACTIONS(2007), 1, + [97890] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 9, + ACTIONS(6601), 14, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131550,21 +133809,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 32, - sym__concat, - sym__assignment_name, + ACTIONS(6603), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131583,13 +133838,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96193] = 3, - ACTIONS(2007), 1, + [97940] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 11, + ACTIONS(6605), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -131598,19 +133856,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 30, + ACTIONS(6607), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131629,14 +133885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96242] = 3, - ACTIONS(2007), 1, + [97990] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 11, - anon_sym_SEMI, + ACTIONS(6609), 14, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131644,19 +133903,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 30, - sym__concat, - sym__assignment_name, + ACTIONS(6611), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131675,17 +133932,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96291] = 4, - ACTIONS(2007), 1, + [98040] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6606), 1, - sym_heredoc_end, - ACTIONS(6252), 12, + ACTIONS(6426), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131693,17 +133947,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, + ACTIONS(6428), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131722,18 +133979,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96342] = 5, - ACTIONS(2007), 1, + [98090] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6608), 1, - sym_heredoc_body, - ACTIONS(6610), 1, - sym_heredoc_end, - ACTIONS(6213), 12, + ACTIONS(6613), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -131742,7 +133997,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 27, + ACTIONS(6615), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -131770,18 +134026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96395] = 5, - ACTIONS(2007), 1, + [98140] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6612), 1, - sym__concat, - STATE(1406), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 12, + ACTIONS(6617), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_done, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -131790,7 +134044,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 27, + ACTIONS(6619), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -131818,17 +134073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96448] = 4, - ACTIONS(2007), 1, + [98190] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6614), 1, - sym_heredoc_end, - ACTIONS(6258), 12, + ACTIONS(6489), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131836,17 +134086,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, + ACTIONS(6491), 33, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131865,14 +134120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96499] = 3, - ACTIONS(2007), 1, + [98240] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 12, + ACTIONS(6485), 11, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, @@ -131881,7 +134135,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 29, + ACTIONS(6487), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -131911,19 +134167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96548] = 5, - ACTIONS(2007), 1, + [98290] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6616), 1, - sym__concat, - STATE(1392), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 12, + ACTIONS(6493), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -131931,16 +134180,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 27, + ACTIONS(6495), 33, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131959,10 +134214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96601] = 3, - ACTIONS(2007), 1, + [98340] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 9, + ACTIONS(6485), 9, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, @@ -131972,7 +134227,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 32, + ACTIONS(6487), 33, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -132005,14 +134261,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96650] = 3, - ACTIONS(2007), 1, + [98390] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6618), 12, + ACTIONS(6489), 11, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, @@ -132021,7 +134276,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6620), 29, + ACTIONS(6491), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -132051,19 +134308,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96699] = 5, - ACTIONS(2007), 1, + [98440] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6622), 1, - sym_heredoc_body, - ACTIONS(6624), 1, - sym_heredoc_end, - ACTIONS(6213), 12, + ACTIONS(6601), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -132071,16 +134324,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 27, + ACTIONS(6603), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132099,12 +134355,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96752] = 3, - ACTIONS(2007), 1, + [98490] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 9, + ACTIONS(6493), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -132112,21 +134370,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 32, + ACTIONS(6495), 31, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132145,14 +134402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96801] = 3, - ACTIONS(2007), 1, + [98540] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 11, + ACTIONS(6605), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -132160,19 +134418,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 30, + ACTIONS(6607), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132191,13 +134449,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96850] = 3, - ACTIONS(2007), 1, + [98590] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 11, + ACTIONS(6609), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, @@ -132206,8 +134465,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 30, - sym__concat, + ACTIONS(6611), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -132237,12 +134496,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96899] = 3, - ACTIONS(2007), 1, + [98640] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 9, + ACTIONS(6707), 1, + sym__concat, + STATE(1411), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -132250,21 +134516,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 32, - sym__concat, - sym__assignment_name, + ACTIONS(6435), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132283,17 +134545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96948] = 3, - ACTIONS(2007), 1, + [98694] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6477), 14, + ACTIONS(6613), 12, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_LBRACE_RBRACE, + anon_sym_esac, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -132301,16 +134561,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6479), 27, + ACTIONS(6615), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132329,10 +134592,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [96997] = 3, - ACTIONS(2007), 1, + [98744] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6626), 12, + ACTIONS(6617), 12, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -132345,7 +134608,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6628), 29, + ACTIONS(6619), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -132375,14 +134639,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97046] = 5, - ACTIONS(2007), 1, + [98794] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6630), 1, - sym_heredoc_body, - ACTIONS(6632), 1, - sym_heredoc_end, - ACTIONS(6213), 12, + ACTIONS(6709), 1, + sym__concat, + STATE(1411), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -132395,7 +134659,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 27, + ACTIONS(6428), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -132423,10 +134688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97099] = 3, - ACTIONS(2007), 1, + [98848] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 9, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 9, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, @@ -132436,8 +134703,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 32, - sym__concat, + ACTIONS(6340), 32, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -132469,14 +134736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97148] = 3, - ACTIONS(2007), 1, + [98900] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6487), 11, + ACTIONS(6302), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -132484,7 +134749,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6489), 30, + ACTIONS(6300), 33, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -132515,10 +134783,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97197] = 3, - ACTIONS(2007), 1, + [98950] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 9, + ACTIONS(6441), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6716), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6714), 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(6712), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(6719), 9, + sym__file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6447), 14, + sym__assignment_name, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [99008] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6109), 9, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, @@ -132528,7 +134847,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 32, + ACTIONS(6107), 33, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -132561,33 +134881,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97246] = 7, - ACTIONS(2007), 1, + [99058] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6267), 3, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6638), 4, + ACTIONS(5951), 9, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6636), 5, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(6634), 6, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5949), 33, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(6641), 9, - sym__file_descriptor, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132596,11 +134918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(6273), 14, - sym__assignment_name, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -132611,10 +134928,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97303] = 3, - ACTIONS(2007), 1, + [99108] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 9, + ACTIONS(6322), 9, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, @@ -132624,7 +134941,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 32, + ACTIONS(6320), 33, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -132657,19 +134975,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97352] = 5, - ACTIONS(2007), 1, + [99158] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6644), 1, - sym__concat, - STATE(1397), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 12, + ACTIONS(5905), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -132677,16 +134988,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 27, + ACTIONS(5903), 33, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132705,10 +135022,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97405] = 3, - ACTIONS(2007), 1, + [99208] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 9, + ACTIONS(5969), 9, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, @@ -132718,7 +135035,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 32, + ACTIONS(5967), 33, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -132751,19 +135069,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97454] = 5, - ACTIONS(2007), 1, + [99258] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6646), 1, - sym__concat, - STATE(1392), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 12, + ACTIONS(6302), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -132771,16 +135084,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 27, + ACTIONS(6300), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132799,14 +135116,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97507] = 4, - ACTIONS(2007), 1, + [99308] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6649), 1, - sym_heredoc_end, - ACTIONS(6252), 9, + ACTIONS(6109), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -132814,20 +135131,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 31, + ACTIONS(6107), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132846,12 +135163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97558] = 4, - ACTIONS(2007), 1, + [99358] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6651), 1, - sym_heredoc_end, - ACTIONS(6252), 11, + ACTIONS(5905), 11, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -132863,7 +135178,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 29, + ACTIONS(5903), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -132893,14 +135210,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97609] = 4, - ACTIONS(2007), 1, + [99408] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, + ACTIONS(6344), 1, sym__concat, - ACTIONS(6221), 9, + ACTIONS(6439), 1, + anon_sym_LPAREN, + ACTIONS(6338), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_fi, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -132908,20 +135230,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 31, - sym__assignment_name, + ACTIONS(6340), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132940,19 +135259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97660] = 5, - ACTIONS(2007), 1, + [99462] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6653), 1, - sym__concat, - STATE(1396), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 12, + ACTIONS(6264), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -132960,16 +135274,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 27, + ACTIONS(6262), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132988,19 +135306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97713] = 5, - ACTIONS(2007), 1, + [99512] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6656), 1, - sym__concat, - STATE(1397), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 12, + ACTIONS(6189), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -133008,16 +135321,67 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 27, + ACTIONS(6187), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [99562] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(5951), 11, anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5949), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133036,14 +135400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97766] = 3, - ACTIONS(2007), 1, + [99612] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 11, + ACTIONS(6322), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -133051,19 +135415,67 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 30, + ACTIONS(6320), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [99662] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(5969), 11, anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5967), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133082,12 +135494,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97815] = 4, - ACTIONS(2007), 1, + [99712] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6659), 1, - sym_heredoc_end, - ACTIONS(6258), 11, + ACTIONS(6019), 11, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -133099,7 +135509,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 29, + ACTIONS(6017), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -133129,14 +135541,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97866] = 3, - ACTIONS(2007), 1, + [99762] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 12, + ACTIONS(6143), 11, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, @@ -133145,7 +135556,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 29, + ACTIONS(6141), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -133175,17 +135588,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97915] = 4, - ACTIONS(2007), 1, + [99812] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 12, + ACTIONS(6183), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -133193,17 +135603,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 28, + ACTIONS(6181), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133222,16 +135635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97966] = 3, - ACTIONS(2007), 1, + [99862] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 13, + ACTIONS(6244), 11, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -133239,7 +135650,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 28, + ACTIONS(6242), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -133268,19 +135682,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98015] = 5, - ACTIONS(2007), 1, + [99912] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6661), 1, - anon_sym_LPAREN, - ACTIONS(6221), 12, + ACTIONS(6260), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -133288,16 +135697,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 27, + ACTIONS(6258), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133316,16 +135729,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98068] = 3, - ACTIONS(2007), 1, + [99962] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 13, + ACTIONS(6270), 11, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -133333,7 +135744,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 28, + ACTIONS(6268), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -133362,14 +135776,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98117] = 3, - ACTIONS(2007), 1, + [100012] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6663), 12, + ACTIONS(6083), 11, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, @@ -133378,7 +135791,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6665), 29, + ACTIONS(6081), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -133408,19 +135823,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98166] = 5, - ACTIONS(2007), 1, + [100062] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6667), 1, - sym__concat, - STATE(1406), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 12, + ACTIONS(6101), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -133428,16 +135838,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 27, + ACTIONS(6099), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133456,14 +135870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98219] = 3, - ACTIONS(2007), 1, + [100112] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6670), 12, + ACTIONS(6105), 11, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, @@ -133472,7 +135885,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6672), 29, + ACTIONS(6103), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -133502,14 +135917,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98268] = 3, - ACTIONS(2007), 1, + [100162] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 11, - anon_sym_SEMI, + ACTIONS(6722), 1, + sym__concat, + STATE(1444), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -133517,19 +135936,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 30, - sym__concat, - sym__assignment_name, + ACTIONS(6435), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133548,10 +135966,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98317] = 3, - ACTIONS(2007), 1, + [100216] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 9, + ACTIONS(6019), 9, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, @@ -133561,7 +135979,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 32, + ACTIONS(6017), 33, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -133594,14 +136013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98366] = 3, - ACTIONS(2007), 1, + [100266] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 11, - anon_sym_SEMI, + ACTIONS(6724), 1, + sym__concat, + STATE(1449), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_fi, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -133609,19 +136033,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 30, - sym__concat, - sym__assignment_name, + ACTIONS(6435), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133640,16 +136062,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98415] = 3, - ACTIONS(2007), 1, + [100320] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 14, + ACTIONS(6553), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -133658,16 +136077,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 27, + ACTIONS(6555), 31, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133686,15 +136109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98464] = 3, - ACTIONS(2007), 1, + [100370] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 13, - anon_sym_SEMI, + ACTIONS(6588), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -133703,17 +136124,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 28, + ACTIONS(6590), 31, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133732,18 +136156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98513] = 5, - ACTIONS(2007), 1, + [100420] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6674), 1, - sym_heredoc_body, - ACTIONS(6676), 1, - sym_heredoc_end, - ACTIONS(6213), 12, + ACTIONS(6592), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -133752,16 +136171,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 27, + ACTIONS(6594), 31, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133780,15 +136203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98566] = 3, - ACTIONS(2007), 1, + [100470] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 12, - anon_sym_SEMI, + ACTIONS(6726), 1, + sym__concat, + STATE(1444), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -133796,18 +136222,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 29, - sym__assignment_name, + ACTIONS(6428), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133826,18 +136252,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98615] = 5, - ACTIONS(2007), 1, + [100524] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, + ACTIONS(6344), 1, sym__concat, - ACTIONS(6337), 1, + ACTIONS(6729), 1, anon_sym_LPAREN, - ACTIONS(6221), 12, + ACTIONS(6338), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -133846,9 +136271,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 27, + ACTIONS(6340), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -133874,14 +136301,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98668] = 3, - ACTIONS(2007), 1, + [100578] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 11, - anon_sym_SEMI, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6439), 1, + anon_sym_LPAREN, + ACTIONS(6338), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_then, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -133889,19 +136321,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 30, - sym__concat, - sym__assignment_name, + ACTIONS(6340), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133920,15 +136350,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98717] = 3, - ACTIONS(2007), 1, + [100632] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 12, - anon_sym_SEMI, + ACTIONS(6731), 1, + sym__concat, + STATE(1448), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_then, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -133936,18 +136370,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 29, - sym__assignment_name, + ACTIONS(6435), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133966,17 +136399,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98766] = 5, - ACTIONS(2007), 1, + [100686] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, + ACTIONS(6733), 1, sym__concat, - ACTIONS(6678), 1, - anon_sym_LPAREN, - ACTIONS(6221), 11, + STATE(1448), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -133985,10 +136419,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 28, + ACTIONS(6428), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -134014,15 +136448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98819] = 3, - ACTIONS(2007), 1, + [100740] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 12, - anon_sym_SEMI, + ACTIONS(6736), 1, + sym__concat, + STATE(1449), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_fi, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -134030,18 +136468,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 29, - sym__assignment_name, + ACTIONS(6428), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134060,13 +136497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98868] = 3, - ACTIONS(2007), 1, + [100794] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 11, + ACTIONS(6553), 13, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -134075,19 +136514,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 30, + ACTIONS(6555), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134106,12 +136544,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98917] = 3, - ACTIONS(2007), 1, + [100844] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 9, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -134119,21 +136562,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 32, - sym__concat, + ACTIONS(6340), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134152,15 +136592,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98966] = 3, - ACTIONS(2007), 1, + [100896] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 12, + ACTIONS(6601), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, + anon_sym_BANG, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -134168,8 +136609,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 29, - sym__assignment_name, + ACTIONS(6603), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -134198,58 +136639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99015] = 3, - ACTIONS(2007), 1, + [100946] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 9, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 32, + ACTIONS(6344), 1, sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [99064] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5806), 9, + ACTIONS(6439), 1, + anon_sym_LPAREN, + ACTIONS(6338), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -134257,21 +136659,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 32, - sym__concat, - sym__assignment_name, + ACTIONS(6340), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134290,12 +136688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99113] = 3, - ACTIONS(2007), 1, + [101000] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 9, + ACTIONS(6588), 13, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -134303,21 +136705,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 32, - sym__concat, - sym__assignment_name, + ACTIONS(6590), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134336,10 +136735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99162] = 3, - ACTIONS(2007), 1, + [101050] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 13, + ACTIONS(6605), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -134353,7 +136752,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, + ACTIONS(6607), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -134382,10 +136782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99211] = 3, - ACTIONS(2007), 1, + [101100] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6477), 13, + ACTIONS(6609), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -134399,7 +136799,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6479), 28, + ACTIONS(6611), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -134428,16 +136829,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99260] = 4, - ACTIONS(2007), 1, + [101150] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 11, + ACTIONS(6592), 13, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -134445,8 +136846,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 29, - sym__assignment_name, + ACTIONS(6594), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -134475,14 +136876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99311] = 3, - ACTIONS(2007), 1, + [101200] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 11, - anon_sym_SEMI, + ACTIONS(6143), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -134490,19 +136889,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 30, + ACTIONS(6141), 33, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134521,17 +136923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99360] = 5, - ACTIONS(2007), 1, + [101250] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6680), 1, - sym__concat, - STATE(1440), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 11, + ACTIONS(6553), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -134540,10 +136941,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 28, + ACTIONS(6555), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -134569,13 +136970,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99413] = 3, - ACTIONS(2007), 1, + [101300] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 11, + ACTIONS(6588), 14, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -134584,19 +136988,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 30, + ACTIONS(6590), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134615,14 +137017,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99462] = 3, - ACTIONS(2007), 1, + [101350] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 11, - anon_sym_SEMI, + ACTIONS(6592), 14, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -134630,19 +137035,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 30, - sym__concat, - sym__assignment_name, + ACTIONS(6594), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134661,14 +137064,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99511] = 3, - ACTIONS(2007), 1, + [101400] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 11, - anon_sym_SEMI, + ACTIONS(6739), 1, + sym__concat, + STATE(1469), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -134676,19 +137084,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 30, - sym__concat, - sym__assignment_name, + ACTIONS(6435), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134707,15 +137113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99560] = 3, - ACTIONS(2007), 1, + [101454] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6177), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -134723,18 +137126,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 29, + ACTIONS(6175), 33, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134753,16 +137160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99609] = 3, - ACTIONS(2007), 1, + [101504] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 14, + ACTIONS(6613), 13, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_SEMI_SEMI, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -134771,16 +137177,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 27, + ACTIONS(6615), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134799,14 +137207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99658] = 4, - ACTIONS(2007), 1, + [101554] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6682), 1, - sym_heredoc_end, - ACTIONS(6258), 9, + ACTIONS(6617), 13, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_SEMI_SEMI, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -134814,20 +137224,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 31, - sym__assignment_name, + ACTIONS(6619), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134846,15 +137254,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99709] = 3, - ACTIONS(2007), 1, + [101604] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 12, + ACTIONS(6183), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -134862,18 +137267,22 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 29, + ACTIONS(6181), 33, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134892,109 +137301,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99758] = 3, - ACTIONS(2007), 1, + [101654] = 24, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 13, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6517), 1, sym_word, + ACTIONS(6527), 1, + anon_sym_EQ_TILDE, + ACTIONS(6529), 1, + aux_sym_brace_expression_token1, + ACTIONS(6533), 1, anon_sym_DOLLAR, + ACTIONS(6535), 1, + anon_sym_DQUOTE, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6539), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, - sym__file_descriptor, + ACTIONS(6541), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6543), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6547), 1, sym__backtick_open, + ACTIONS(6549), 1, sym__dollar_literal, + ACTIONS(6551), 1, sym__brace_expr_start, - anon_sym_LF, + STATE(2078), 1, + sym_string, + STATE(3544), 1, + sym__word_part, + ACTIONS(6519), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(6545), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2082), 2, + sym_brace_expression, + sym__expression, + STATE(2098), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6531), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [99807] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5988), 11, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, + ACTIONS(6743), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + STATE(1256), 3, + aux_sym__conditional, + sym__word_like, + sym_concatenation, + STATE(2068), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6741), 6, + anon_sym_BANG, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + [101746] = 24, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6517), 1, sym_word, + ACTIONS(6527), 1, + anon_sym_EQ_TILDE, + ACTIONS(6529), 1, + aux_sym_brace_expression_token1, + ACTIONS(6533), 1, anon_sym_DOLLAR, + ACTIONS(6535), 1, + anon_sym_DQUOTE, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6539), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 30, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6541), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6543), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6547), 1, sym__backtick_open, + ACTIONS(6549), 1, sym__dollar_literal, + ACTIONS(6551), 1, sym__brace_expr_start, - anon_sym_LF, + STATE(2078), 1, + sym_string, + STATE(3544), 1, + sym__word_part, + ACTIONS(6519), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(6545), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2082), 2, + sym_brace_expression, + sym__expression, + STATE(2098), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6531), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [99856] = 5, - ACTIONS(2007), 1, + ACTIONS(6747), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + STATE(1332), 3, + aux_sym__conditional, + sym__word_like, + sym_concatenation, + STATE(2068), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6745), 6, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + [101838] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6684), 1, + ACTIONS(6749), 1, sym__concat, - STATE(1440), 1, + STATE(1469), 1, aux_sym_concatenation_repeat1, - ACTIONS(6235), 11, + ACTIONS(6426), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -135003,10 +137457,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 28, + ACTIONS(6428), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -135032,102 +137486,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99909] = 3, - ACTIONS(2007), 1, + [101892] = 24, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 13, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6517), 1, sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 28, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(6527), 1, + anon_sym_EQ_TILDE, + ACTIONS(6529), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(6533), 1, + anon_sym_DOLLAR, + ACTIONS(6535), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6537), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6539), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6541), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6543), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [99958] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6000), 11, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 30, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6547), 1, sym__backtick_open, + ACTIONS(6549), 1, sym__dollar_literal, + ACTIONS(6551), 1, sym__brace_expr_start, - anon_sym_LF, + STATE(2078), 1, + sym_string, + STATE(3544), 1, + sym__word_part, + ACTIONS(6519), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(6545), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2082), 2, + sym_brace_expression, + sym__expression, + STATE(2098), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6531), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [100007] = 3, - ACTIONS(2007), 1, + ACTIONS(6754), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + STATE(1333), 3, + aux_sym__conditional, + sym__word_like, + sym_concatenation, + STATE(2068), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6752), 6, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + [101984] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 9, + ACTIONS(6244), 9, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, @@ -135137,7 +137567,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 32, + ACTIONS(6242), 33, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -135170,18 +137601,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100056] = 5, - ACTIONS(2007), 1, + [102034] = 24, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6687), 1, - sym_heredoc_body, - ACTIONS(6689), 1, - sym_heredoc_end, - ACTIONS(6205), 12, + ACTIONS(6517), 1, + sym_word, + ACTIONS(6527), 1, + anon_sym_EQ_TILDE, + ACTIONS(6529), 1, + aux_sym_brace_expression_token1, + ACTIONS(6533), 1, + anon_sym_DOLLAR, + ACTIONS(6535), 1, + anon_sym_DQUOTE, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6539), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6541), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6543), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6547), 1, + sym__backtick_open, + ACTIONS(6549), 1, + sym__dollar_literal, + ACTIONS(6551), 1, + sym__brace_expr_start, + STATE(2078), 1, + sym_string, + STATE(3544), 1, + sym__word_part, + ACTIONS(6519), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(6545), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2082), 2, + sym_brace_expression, + sym__expression, + STATE(2098), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6531), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6758), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + STATE(1335), 3, + aux_sym__conditional, + sym__word_like, + sym_concatenation, + STATE(2068), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(6756), 6, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + [102126] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6760), 1, + anon_sym_LPAREN, + ACTIONS(6338), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, + anon_sym_done, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -135190,7 +137689,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 27, + ACTIONS(6340), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -135218,14 +137718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100109] = 5, - ACTIONS(2007), 1, + [102180] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6691), 1, - sym_heredoc_body, - ACTIONS(6693), 1, - sym_heredoc_end, - ACTIONS(6205), 11, + ACTIONS(6601), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -135237,17 +137733,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 28, + ACTIONS(6603), 31, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135266,12 +137765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100162] = 3, - ACTIONS(2007), 1, + [102230] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 9, + ACTIONS(6605), 11, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -135279,9 +137780,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 32, - sym__concat, - sym__assignment_name, + ACTIONS(6607), 31, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -135312,10 +137812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100211] = 3, - ACTIONS(2007), 1, + [102280] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 11, + ACTIONS(6609), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -135327,7 +137827,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 30, + ACTIONS(6611), 31, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -135358,14 +137859,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100260] = 3, - ACTIONS(2007), 1, + [102330] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 12, + ACTIONS(6613), 11, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6615), 31, + sym__heredoc_newline, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [102380] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6617), 11, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6619), 31, + sym__heredoc_newline, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [102430] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6260), 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6258), 33, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [102480] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6177), 11, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, @@ -135374,7 +138015,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 29, + ACTIONS(6175), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -135404,16 +138047,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100309] = 3, - ACTIONS(2007), 1, + [102530] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 14, + ACTIONS(6260), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -135422,7 +138063,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 27, + ACTIONS(6258), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -135450,15 +138093,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100358] = 3, - ACTIONS(2007), 1, + [102579] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 13, - anon_sym_SEMI, + ACTIONS(5969), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_SEMI_SEMI, + anon_sym_done, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -135467,17 +138109,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 28, + ACTIONS(5967), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135496,14 +138139,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100407] = 3, - ACTIONS(2007), 1, + [102628] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 11, - anon_sym_SEMI, + ACTIONS(5969), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -135511,19 +138154,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 30, + ACTIONS(5967), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135542,16 +138185,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100456] = 3, - ACTIONS(2007), 1, + [102677] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6481), 14, + ACTIONS(6019), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -135560,9 +138200,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6483), 27, + ACTIONS(6017), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -135588,12 +138231,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100505] = 3, - ACTIONS(2007), 1, + [102726] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 9, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 11, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -135601,21 +138248,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 32, - sym__concat, - sym__assignment_name, + ACTIONS(6340), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135634,15 +138278,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100554] = 3, - ACTIONS(2007), 1, + [102777] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 12, + ACTIONS(6426), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -135650,9 +138294,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 29, + ACTIONS(6428), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -135680,15 +138324,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100603] = 3, - ACTIONS(2007), 1, + [102826] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 12, + ACTIONS(5951), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -135696,11 +138339,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 29, + ACTIONS(5949), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -135726,15 +138370,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100652] = 3, - ACTIONS(2007), 1, + [102875] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 12, + ACTIONS(6019), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -135742,9 +138386,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 29, + ACTIONS(6017), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -135772,14 +138416,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100701] = 3, - ACTIONS(2007), 1, + [102924] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 11, - anon_sym_SEMI, + ACTIONS(6270), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_fi, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -135787,19 +138432,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 30, + ACTIONS(6268), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135818,14 +138462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100750] = 3, - ACTIONS(2007), 1, + [102973] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 11, - anon_sym_SEMI, + ACTIONS(6485), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -135833,19 +138478,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 30, + ACTIONS(6487), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135864,14 +138508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100799] = 3, - ACTIONS(2007), 1, + [103022] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 11, - anon_sym_SEMI, + ACTIONS(6083), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_fi, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -135879,19 +138524,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 30, + ACTIONS(6081), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135910,14 +138554,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100848] = 3, - ACTIONS(2007), 1, + [103071] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 11, - anon_sym_SEMI, + ACTIONS(6489), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -135925,19 +138570,63 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 30, + ACTIONS(6491), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [103120] = 7, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6441), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6714), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(6716), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6712), 7, + sym__heredoc_newline, + anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + ACTIONS(6719), 9, + sym__file_descriptor, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135946,6 +138635,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, + ACTIONS(6447), 14, + sym__assignment_name, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -135956,12 +138650,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100897] = 3, - ACTIONS(2007), 1, + [103177] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 9, + ACTIONS(6493), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -135969,21 +138666,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 32, + ACTIONS(6495), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136002,18 +138696,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100946] = 5, - ACTIONS(2007), 1, + [103226] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6337), 1, + ACTIONS(6560), 1, + sym_word, + ACTIONS(6562), 1, anon_sym_LPAREN, - ACTIONS(6221), 12, + ACTIONS(6564), 1, + aux_sym_brace_expression_token1, + ACTIONS(6568), 1, + anon_sym_DOLLAR, + ACTIONS(6570), 1, + anon_sym_DQUOTE, + ACTIONS(6572), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6574), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6576), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6578), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6582), 1, + sym__backtick_open, + ACTIONS(6584), 1, + sym__dollar_literal, + ACTIONS(6586), 1, + sym__brace_expr_start, + STATE(2816), 1, + sym_string, + STATE(3570), 1, + sym__word_part, + ACTIONS(6580), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2768), 2, + sym_brace_expression, + sym__expression, + STATE(2852), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2892), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_then, + ACTIONS(6566), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2888), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(2848), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2890), 7, + sym__heredoc_newline, + sym__assignment_name, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [103315] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6101), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -136022,7 +138778,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 27, + ACTIONS(6099), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -136050,17 +138808,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [100999] = 3, - ACTIONS(2007), 1, + [103364] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 14, + ACTIONS(6691), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, anon_sym_elif, anon_sym_else, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136068,7 +138824,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 27, + ACTIONS(6693), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -136096,12 +138854,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101048] = 3, - ACTIONS(2007), 1, + [103413] = 23, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6560), 1, + sym_word, + ACTIONS(6562), 1, + anon_sym_LPAREN, + ACTIONS(6564), 1, + aux_sym_brace_expression_token1, + ACTIONS(6568), 1, + anon_sym_DOLLAR, + ACTIONS(6570), 1, + anon_sym_DQUOTE, + ACTIONS(6572), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6574), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6576), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6578), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6582), 1, + sym__backtick_open, + ACTIONS(6584), 1, + sym__dollar_literal, + ACTIONS(6586), 1, + sym__brace_expr_start, + STATE(2816), 1, + sym_string, + STATE(3570), 1, + sym__word_part, + ACTIONS(6580), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2768), 2, + sym_brace_expression, + sym__expression, + STATE(2852), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2892), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_do, + ACTIONS(6566), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2888), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(2848), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2890), 7, + sym__heredoc_newline, + sym__assignment_name, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [103502] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 9, + ACTIONS(6105), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_fi, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136109,21 +138936,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 32, + ACTIONS(6103), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136142,13 +138966,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101097] = 3, - ACTIONS(2007), 1, + [103551] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6477), 11, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -136157,19 +138984,17 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6479), 30, + ACTIONS(6340), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136188,14 +139013,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101146] = 3, - ACTIONS(2007), 1, + [103602] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 11, - anon_sym_SEMI, + ACTIONS(6143), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136203,19 +139029,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 30, + ACTIONS(6141), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136234,10 +139059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101195] = 3, - ACTIONS(2007), 1, + [103651] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 11, + ACTIONS(6601), 11, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -136249,8 +139074,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 30, - sym__concat, + ACTIONS(6603), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -136280,10 +139105,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101244] = 3, - ACTIONS(2007), 1, + [103700] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6183), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6181), 29, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [103749] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 11, + ACTIONS(6605), 11, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -136295,8 +139166,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 30, - sym__concat, + ACTIONS(6607), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -136326,16 +139197,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101293] = 3, - ACTIONS(2007), 1, + [103798] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 14, + ACTIONS(6609), 11, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6611), 30, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [103847] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6244), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_done, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -136344,7 +139259,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 27, + ACTIONS(6242), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -136372,15 +139289,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101342] = 3, - ACTIONS(2007), 1, + [103896] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 12, + ACTIONS(6260), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136388,9 +139305,105 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 29, + ACTIONS(6258), 29, + sym__heredoc_newline, sym__concat, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [103945] = 7, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6762), 1, sym__assignment_name, + ACTIONS(6445), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(3026), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6441), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6443), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(6447), 22, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [104002] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6270), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6268), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -136418,15 +139431,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101391] = 3, - ACTIONS(2007), 1, + [104051] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 12, + ACTIONS(6083), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136434,9 +139447,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 29, + ACTIONS(6081), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -136464,15 +139477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101440] = 3, - ACTIONS(2007), 1, + [104100] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 12, + ACTIONS(6101), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136480,9 +139493,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 29, + ACTIONS(6099), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -136510,16 +139523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101489] = 3, - ACTIONS(2007), 1, + [104149] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 14, + ACTIONS(6489), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -136528,7 +139539,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 27, + ACTIONS(6491), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -136556,18 +139569,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101538] = 5, - ACTIONS(2007), 1, + [104198] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6695), 1, - sym__concat, - STATE(1396), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 12, + ACTIONS(6105), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, + anon_sym_done, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -136576,7 +139585,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 27, + ACTIONS(6103), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -136604,12 +139615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101591] = 3, - ACTIONS(2007), 1, + [104247] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 9, + ACTIONS(6765), 1, + sym__concat, + STATE(1515), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136617,21 +139633,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 32, - sym__concat, + ACTIONS(6435), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136650,15 +139663,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101640] = 3, - ACTIONS(2007), 1, + [104300] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 12, + ACTIONS(6767), 1, + sym__concat, + STATE(1515), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136666,8 +139681,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 29, - sym__concat, + ACTIONS(6428), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -136696,14 +139711,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101689] = 3, - ACTIONS(2007), 1, + [104353] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 11, + ACTIONS(6560), 1, + sym_word, + ACTIONS(6562), 1, + anon_sym_LPAREN, + ACTIONS(6564), 1, + aux_sym_brace_expression_token1, + ACTIONS(6568), 1, + anon_sym_DOLLAR, + ACTIONS(6570), 1, + anon_sym_DQUOTE, + ACTIONS(6572), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6574), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6576), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6578), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6582), 1, + sym__backtick_open, + ACTIONS(6584), 1, + sym__dollar_literal, + ACTIONS(6586), 1, + sym__brace_expr_start, + STATE(2816), 1, + sym_string, + STATE(3570), 1, + sym__word_part, + ACTIONS(6580), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2768), 2, + sym_brace_expression, + sym__expression, + STATE(2852), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2937), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_do, + ACTIONS(6566), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2900), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(2848), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2935), 7, + sym__heredoc_newline, + sym__assignment_name, + anon_sym_LF, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [104442] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6302), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_fi, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136711,19 +139793,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 30, + ACTIONS(6300), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136742,15 +139823,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101738] = 3, - ACTIONS(2007), 1, + [104491] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 12, + ACTIONS(6109), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136758,9 +139839,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 29, + ACTIONS(6107), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -136788,14 +139869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101787] = 3, - ACTIONS(2007), 1, + [104540] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 11, - anon_sym_SEMI, + ACTIONS(5905), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_BANG, + anon_sym_fi, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136803,19 +139885,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 30, + ACTIONS(5903), 29, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136834,15 +139915,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101836] = 3, - ACTIONS(2007), 1, + [104589] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 12, + ACTIONS(6770), 1, + sym__concat, + STATE(1601), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 10, anon_sym_AMP, anon_sym_PIPE, anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136850,8 +139933,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 29, - sym__concat, + ACTIONS(6435), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -136880,14 +139963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101885] = 3, - ACTIONS(2007), 1, + [104642] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 11, - anon_sym_SEMI, + ACTIONS(6601), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136895,19 +139979,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 30, - sym__concat, + ACTIONS(6603), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136926,14 +140009,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101934] = 3, - ACTIONS(2007), 1, + [104691] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6481), 11, + ACTIONS(6605), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -136941,19 +140025,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6483), 30, + ACTIONS(6607), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136972,10 +140055,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101983] = 3, - ACTIONS(2007), 1, + [104740] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 12, + ACTIONS(6609), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_fi, @@ -136988,8 +140071,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 29, - sym__concat, + ACTIONS(6611), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -137018,16 +140101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102032] = 3, - ACTIONS(2007), 1, + [104789] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6481), 13, - anon_sym_SEMI, + ACTIONS(6772), 1, + sym__concat, + STATE(1533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137035,17 +140118,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6483), 28, + ACTIONS(6435), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137064,16 +140149,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102081] = 3, - ACTIONS(2007), 1, + [104842] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6487), 13, - anon_sym_SEMI, + ACTIONS(6613), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_SEMI_SEMI, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137081,17 +140165,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6489), 28, + ACTIONS(6615), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137110,10 +140195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102130] = 3, - ACTIONS(2007), 1, + [104891] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 12, + ACTIONS(6617), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_fi, @@ -137126,8 +140211,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 29, - sym__concat, + ACTIONS(6619), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -137156,15 +140241,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102179] = 3, - ACTIONS(2007), 1, + [104940] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 12, + ACTIONS(6143), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137172,11 +140256,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 29, + ACTIONS(6141), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -137202,15 +140287,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102228] = 3, - ACTIONS(2007), 1, + [104989] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 12, + ACTIONS(6177), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137218,11 +140302,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 29, + ACTIONS(6175), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -137248,15 +140333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102277] = 3, - ACTIONS(2007), 1, + [105038] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6183), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137264,11 +140348,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 29, + ACTIONS(6181), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -137294,15 +140379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102326] = 3, - ACTIONS(2007), 1, + [105087] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 12, + ACTIONS(6244), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137310,11 +140394,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 29, + ACTIONS(6242), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -137340,15 +140425,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102375] = 3, - ACTIONS(2007), 1, + [105136] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 12, + ACTIONS(6260), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137356,11 +140440,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 29, + ACTIONS(6258), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -137386,15 +140471,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102424] = 3, - ACTIONS(2007), 1, + [105185] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 12, + ACTIONS(6264), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137402,11 +140486,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 29, + ACTIONS(6262), 30, + sym__heredoc_newline, sym__concat, - sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -137432,15 +140517,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102473] = 3, - ACTIONS(2007), 1, + [105234] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 12, + ACTIONS(6774), 1, + sym__concat, + STATE(1533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137448,11 +140534,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 29, - sym__concat, + ACTIONS(6428), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -137478,18 +140565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102522] = 5, - ACTIONS(2007), 1, + [105287] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6697), 1, - sym_heredoc_body, - ACTIONS(6699), 1, - sym_heredoc_end, - ACTIONS(6213), 11, + ACTIONS(6605), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137497,17 +140578,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 28, + ACTIONS(6607), 32, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137526,15 +140611,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102575] = 3, - ACTIONS(2007), 1, + [105336] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 12, + ACTIONS(6613), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137542,18 +140626,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 29, - sym__concat, + ACTIONS(6615), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137572,15 +140657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102624] = 3, - ACTIONS(2007), 1, + [105385] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 12, + ACTIONS(6777), 1, + sym__concat, + STATE(1545), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137588,8 +140675,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 29, - sym__concat, + ACTIONS(6435), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -137618,16 +140705,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102673] = 3, - ACTIONS(2007), 1, + [105438] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 14, + ACTIONS(6426), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -137636,9 +140720,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 27, + ACTIONS(6428), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -137664,12 +140751,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102722] = 3, - ACTIONS(2007), 1, + [105487] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 9, + ACTIONS(6691), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137677,21 +140766,65 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 32, - sym__concat, + ACTIONS(6693), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [105536] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6617), 11, anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6619), 30, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137710,14 +140843,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102771] = 3, - ACTIONS(2007), 1, + [105585] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 12, + ACTIONS(6489), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -137726,10 +140858,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 28, + ACTIONS(6491), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -137755,12 +140889,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102819] = 3, - ACTIONS(2007), 1, + [105634] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 9, + ACTIONS(6189), 11, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -137768,20 +140904,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 31, - sym__assignment_name, + ACTIONS(6187), 30, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137800,14 +140935,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102867] = 3, - ACTIONS(2007), 1, + [105683] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 12, + ACTIONS(6270), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -137816,10 +140950,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 28, + ACTIONS(6268), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -137845,14 +140981,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102915] = 3, - ACTIONS(2007), 1, + [105732] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 12, + ACTIONS(6083), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -137861,10 +140996,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 28, + ACTIONS(6081), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -137890,14 +141027,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102963] = 3, - ACTIONS(2007), 1, + [105781] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 12, + ACTIONS(6101), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -137906,10 +141042,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 28, + ACTIONS(6099), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -137935,14 +141073,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103011] = 3, - ACTIONS(2007), 1, + [105830] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6779), 1, + sym__concat, + STATE(1545), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_then, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6428), 29, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [105883] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6493), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -137951,10 +141136,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 28, + ACTIONS(6495), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -137980,14 +141167,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103059] = 3, - ACTIONS(2007), 1, + [105932] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 12, + ACTIONS(6105), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -137996,10 +141182,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 28, + ACTIONS(6103), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -138025,15 +141213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103107] = 3, - ACTIONS(2007), 1, + [105981] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 12, + ACTIONS(6691), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138041,17 +141226,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 28, - sym__concat, + ACTIONS(6693), 32, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138070,15 +141259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103155] = 3, - ACTIONS(2007), 1, + [106030] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 12, + ACTIONS(6613), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138086,17 +141272,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 28, - sym__concat, + ACTIONS(6615), 32, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138115,15 +141305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103203] = 3, - ACTIONS(2007), 1, + [106079] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 12, + ACTIONS(6617), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138131,17 +141318,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 28, - sym__concat, + ACTIONS(6619), 32, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138160,14 +141351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103251] = 3, - ACTIONS(2007), 1, + [106128] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 12, + ACTIONS(6485), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -138176,10 +141366,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 28, + ACTIONS(6487), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -138205,14 +141397,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103299] = 3, - ACTIONS(2007), 1, + [106177] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 12, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -138221,8 +141415,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 28, - sym__concat, + ACTIONS(6340), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -138250,15 +141444,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103347] = 3, - ACTIONS(2007), 1, + [106228] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 12, + ACTIONS(6695), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138266,17 +141459,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 28, - sym__concat, + ACTIONS(6697), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138295,16 +141490,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103395] = 4, - ACTIONS(2007), 1, + [106277] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 12, + ACTIONS(6485), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -138313,7 +141506,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 27, + ACTIONS(6487), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -138341,15 +141536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103445] = 4, - ACTIONS(2007), 1, + [106326] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 11, + ACTIONS(6302), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -138358,10 +141552,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 28, + ACTIONS(6300), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -138387,14 +141582,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103495] = 3, - ACTIONS(2007), 1, + [106375] = 7, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6782), 1, + sym__assignment_name, + STATE(3008), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6445), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_then, + ACTIONS(6443), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(6441), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6447), 22, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [106432] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 12, + ACTIONS(6109), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -138403,7 +141648,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 28, + ACTIONS(6107), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -138432,12 +141678,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103543] = 3, - ACTIONS(2007), 1, + [106481] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6618), 9, + ACTIONS(5951), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_then, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138445,20 +141694,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6620), 31, - sym__assignment_name, + ACTIONS(5949), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138477,32 +141724,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103591] = 7, - ACTIONS(2007), 1, + [106530] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6267), 3, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6638), 4, + ACTIONS(6426), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_fi, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6634), 5, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6428), 29, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(6636), 5, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - ACTIONS(6641), 9, - sym__file_descriptor, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138511,11 +141760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(6273), 14, - sym__assignment_name, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -138526,12 +141770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103647] = 3, - ACTIONS(2007), 1, + [106579] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 9, + ACTIONS(6322), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_then, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138539,20 +141786,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 31, - sym__assignment_name, + ACTIONS(6320), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138571,13 +141816,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103695] = 3, - ACTIONS(2007), 1, + [106628] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 11, + ACTIONS(5905), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -138586,11 +141832,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 29, + ACTIONS(5903), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -138616,13 +141862,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103743] = 3, - ACTIONS(2007), 1, + [106677] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 11, + ACTIONS(5969), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -138631,11 +141878,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 29, + ACTIONS(5967), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -138661,25 +141908,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103791] = 7, - ACTIONS(2007), 1, + [106726] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6701), 1, - sym__assignment_name, - ACTIONS(6271), 2, + ACTIONS(6019), 12, anon_sym_AMP, anon_sym_PIPE, - STATE(3108), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6269), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(6267), 7, + anon_sym_BANG, + anon_sym_then, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138687,11 +141924,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6273), 22, + ACTIONS(6017), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138710,14 +141954,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103847] = 3, - ACTIONS(2007), 1, + [106775] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 11, + ACTIONS(6714), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6441), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6716), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6712), 9, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(6719), 9, + sym__file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6447), 14, + sym__assignment_name, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [106832] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6601), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138725,18 +142017,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 29, - sym__concat, + ACTIONS(6603), 32, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138755,14 +142050,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103895] = 3, - ACTIONS(2007), 1, + [106881] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 11, + ACTIONS(6695), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138770,11 +142066,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 29, - sym__concat, + ACTIONS(6697), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -138800,12 +142096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103943] = 3, - ACTIONS(2007), 1, + [106930] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6626), 9, + ACTIONS(6143), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_then, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138813,20 +142112,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6628), 31, - sym__assignment_name, + ACTIONS(6141), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138845,12 +142142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [103991] = 3, - ACTIONS(2007), 1, + [106979] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 9, + ACTIONS(6177), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_then, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138858,20 +142158,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 31, - sym__assignment_name, + ACTIONS(6175), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138890,16 +142188,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104039] = 5, - ACTIONS(2007), 1, + [107028] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6704), 1, - sym_heredoc_body, - ACTIONS(6706), 1, - sym_heredoc_end, - ACTIONS(6205), 9, + ACTIONS(6183), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_then, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -138907,11 +142204,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 29, - sym__assignment_name, + ACTIONS(6181), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -138937,13 +142234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104091] = 3, - ACTIONS(2007), 1, + [107077] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 11, + ACTIONS(6244), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -138952,11 +142250,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 29, + ACTIONS(6242), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -138982,13 +142280,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104139] = 3, - ACTIONS(2007), 1, + [107126] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 11, + ACTIONS(6260), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -138997,11 +142296,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 29, + ACTIONS(6258), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -139027,13 +142326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104187] = 3, - ACTIONS(2007), 1, + [107175] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 11, + ACTIONS(6264), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -139042,11 +142342,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 29, + ACTIONS(6262), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -139072,105 +142372,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104235] = 3, - ACTIONS(2007), 1, + [107224] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 11, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6785), 1, sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 29, - sym__concat, - sym__file_descriptor, - sym__backtick_open, - sym__backtick_close, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(6787), 1, + anon_sym_LPAREN, + ACTIONS(6789), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(6793), 1, + anon_sym_DOLLAR, + ACTIONS(6795), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6797), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6801), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6803), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [104283] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6235), 12, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 28, - sym__concat, - sym__file_descriptor, + ACTIONS(6807), 1, sym__backtick_open, + ACTIONS(6809), 1, sym__dollar_literal, + ACTIONS(6811), 1, sym__brace_expr_start, + STATE(3060), 1, + sym_string, + STATE(3553), 1, + sym__word_part, + ACTIONS(2892), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6805), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3079), 2, + sym_simple_expansion, + sym_expansion, + STATE(3129), 2, + sym_brace_expression, + sym__expression, + ACTIONS(6791), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3179), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(3061), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2890), 8, + sym__heredoc_newline, + sym__assignment_name, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [104331] = 3, - ACTIONS(2007), 1, + [107313] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 12, + ACTIONS(6699), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -139178,17 +142453,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 28, - sym__concat, + ACTIONS(6701), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139207,14 +142484,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104379] = 3, - ACTIONS(2007), 1, + [107362] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 12, + ACTIONS(6489), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -139223,7 +142500,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 28, + ACTIONS(6491), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -139252,16 +142530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104427] = 5, - ACTIONS(2007), 1, + [107411] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6708), 1, - sym_heredoc_body, - ACTIONS(6710), 1, - sym_heredoc_end, - ACTIONS(6213), 9, + ACTIONS(6189), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_then, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -139269,11 +142546,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 29, - sym__assignment_name, + ACTIONS(6187), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -139299,13 +142576,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104479] = 3, - ACTIONS(2007), 1, + [107460] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 11, + ACTIONS(6270), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -139314,11 +142592,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 29, + ACTIONS(6268), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -139344,14 +142622,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104527] = 3, - ACTIONS(2007), 1, + [107509] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 12, + ACTIONS(6083), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -139360,7 +142638,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 28, + ACTIONS(6081), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -139389,63 +142668,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104575] = 7, - ACTIONS(2007), 1, + [107558] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6712), 1, - sym__assignment_name, - STATE(3107), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6271), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, - ACTIONS(6269), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(6267), 7, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6273), 22, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [104631] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5868), 12, + ACTIONS(6101), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -139454,7 +142684,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 28, + ACTIONS(6099), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -139483,15 +142714,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104679] = 3, - ACTIONS(2007), 1, + [107607] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 12, + ACTIONS(6703), 11, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -139499,17 +142729,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 28, - sym__concat, + ACTIONS(6705), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139528,78 +142760,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104727] = 23, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6715), 1, - sym_word, - ACTIONS(6717), 1, - anon_sym_LPAREN, - ACTIONS(6719), 1, - aux_sym_brace_expression_token1, - ACTIONS(6723), 1, - anon_sym_DOLLAR, - ACTIONS(6725), 1, - anon_sym_DQUOTE, - ACTIONS(6727), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6729), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6731), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6733), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6737), 1, - sym__backtick_open, - ACTIONS(6739), 1, - sym__dollar_literal, - ACTIONS(6741), 1, - sym__brace_expr_start, - STATE(3221), 1, - sym_string, - STATE(3561), 1, - sym__word_part, - ACTIONS(2984), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6735), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3200), 2, - sym_brace_expression, - sym__expression, - STATE(3225), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(6721), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3269), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(3145), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2982), 7, - sym__assignment_name, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [104815] = 3, - ACTIONS(2007), 1, + [107656] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 11, + ACTIONS(6177), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -139608,11 +142776,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 29, + ACTIONS(6175), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -139638,13 +142806,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104863] = 3, - ACTIONS(2007), 1, + [107705] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 11, + ACTIONS(6493), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -139653,11 +142822,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 29, + ACTIONS(6495), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -139683,14 +142852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104911] = 3, - ACTIONS(2007), 1, + [107754] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 12, + ACTIONS(6105), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -139699,7 +142868,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 28, + ACTIONS(6103), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -139728,59 +142898,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [104959] = 3, - ACTIONS(2007), 1, + [107803] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 12, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6813), 1, sym_word, + ACTIONS(6815), 1, + anon_sym_LPAREN, + ACTIONS(6817), 1, + aux_sym_brace_expression_token1, + ACTIONS(6821), 1, anon_sym_DOLLAR, + ACTIONS(6823), 1, + anon_sym_DQUOTE, + ACTIONS(6825), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6827), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 28, - sym__concat, - sym__file_descriptor, + ACTIONS(6829), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6831), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6835), 1, sym__backtick_open, + ACTIONS(6837), 1, sym__dollar_literal, + ACTIONS(6839), 1, sym__brace_expr_start, + STATE(3162), 1, + sym_string, + STATE(3516), 1, + sym__word_part, + ACTIONS(6833), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3120), 2, + sym_brace_expression, + sym__expression, + STATE(3131), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2892), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_done, + ACTIONS(6819), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3173), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(3163), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2890), 7, + sym__heredoc_newline, + sym__assignment_name, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [105007] = 3, - ACTIONS(2007), 1, + [107892] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 12, + ACTIONS(6485), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -139789,7 +142980,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 28, + ACTIONS(6487), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -139818,14 +143010,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105055] = 3, - ACTIONS(2007), 1, + [107941] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6302), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_done, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -139834,7 +143026,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 28, + ACTIONS(6300), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -139863,14 +143056,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105103] = 3, - ACTIONS(2007), 1, + [107990] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 11, + ACTIONS(6841), 1, + sym__concat, + STATE(1589), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -139878,11 +143074,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 29, - sym__concat, + ACTIONS(6435), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -139908,13 +143104,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105151] = 3, - ACTIONS(2007), 1, + [108043] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 11, + ACTIONS(6109), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_done, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -139923,11 +143120,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 29, + ACTIONS(6107), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -139953,14 +143150,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105199] = 3, - ACTIONS(2007), 1, + [108092] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 11, + ACTIONS(6843), 1, + sym__concat, + STATE(1589), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -139968,11 +143168,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 29, - sym__concat, + ACTIONS(6428), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -139998,32 +143198,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105247] = 7, - ACTIONS(2007), 1, + [108145] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6636), 2, + ACTIONS(6846), 1, + sym__assignment_name, + STATE(3020), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6445), 3, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6267), 3, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6638), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6634), 8, - ts_builtin_sym_end, + anon_sym_do, + ACTIONS(6443), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(6641), 9, + ACTIONS(6441), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6447), 22, sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140032,11 +143238,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(6273), 14, - sym__assignment_name, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -140047,59 +143248,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105303] = 3, - ACTIONS(2007), 1, + [108202] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 11, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6813), 1, sym_word, + ACTIONS(6815), 1, + anon_sym_LPAREN, + ACTIONS(6817), 1, + aux_sym_brace_expression_token1, + ACTIONS(6821), 1, anon_sym_DOLLAR, + ACTIONS(6823), 1, + anon_sym_DQUOTE, + ACTIONS(6825), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6827), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 29, - sym__concat, - sym__file_descriptor, + ACTIONS(6829), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6831), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6835), 1, sym__backtick_open, - sym__backtick_close, + ACTIONS(6837), 1, sym__dollar_literal, + ACTIONS(6839), 1, sym__brace_expr_start, + STATE(3162), 1, + sym_string, + STATE(3516), 1, + sym__word_part, + ACTIONS(6833), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3120), 2, + sym_brace_expression, + sym__expression, + STATE(3131), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2937), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_done, + ACTIONS(6819), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3180), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(3163), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2935), 7, + sym__heredoc_newline, + sym__assignment_name, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [105351] = 3, - ACTIONS(2007), 1, + [108291] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 12, + ACTIONS(6264), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -140108,7 +143330,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 28, + ACTIONS(6262), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -140137,60 +143360,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105399] = 3, - ACTIONS(2007), 1, + [108340] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 9, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6560), 1, sym_word, + ACTIONS(6562), 1, + anon_sym_LPAREN, + ACTIONS(6564), 1, + aux_sym_brace_expression_token1, + ACTIONS(6568), 1, anon_sym_DOLLAR, + ACTIONS(6570), 1, + anon_sym_DQUOTE, + ACTIONS(6572), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6574), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 31, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6576), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6578), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6582), 1, sym__backtick_open, + ACTIONS(6584), 1, sym__dollar_literal, + ACTIONS(6586), 1, sym__brace_expr_start, - ts_builtin_sym_end, + STATE(2816), 1, + sym_string, + STATE(3570), 1, + sym__word_part, + ACTIONS(6580), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2768), 2, + sym_brace_expression, + sym__expression, + STATE(2852), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2892), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + ACTIONS(6566), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2888), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(2848), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2890), 7, + sym__heredoc_newline, + sym__assignment_name, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [105447] = 3, - ACTIONS(2007), 1, + [108429] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 12, + ACTIONS(6695), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -140198,17 +143439,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 28, - sym__concat, + ACTIONS(6697), 32, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140227,14 +143472,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105495] = 3, - ACTIONS(2007), 1, + [108478] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 12, + ACTIONS(6493), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -140243,7 +143488,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 28, + ACTIONS(6495), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -140272,10 +143518,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105543] = 3, - ACTIONS(2007), 1, + [108527] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 12, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -140288,8 +143536,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 28, - sym__concat, + ACTIONS(6340), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -140317,14 +143565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105591] = 3, - ACTIONS(2007), 1, + [108578] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 12, + ACTIONS(5905), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_done, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -140333,7 +143581,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 28, + ACTIONS(5903), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -140362,10 +143611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105639] = 3, - ACTIONS(2007), 1, + [108627] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 12, + ACTIONS(6485), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -140378,7 +143627,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 28, + ACTIONS(6487), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -140407,10 +143657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105687] = 3, - ACTIONS(2007), 1, + [108676] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 11, + ACTIONS(6302), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -140422,7 +143672,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 29, + ACTIONS(6300), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -140452,15 +143703,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105735] = 3, - ACTIONS(2007), 1, + [108725] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 12, + ACTIONS(6441), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6716), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6714), 5, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + ACTIONS(6712), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(6719), 9, + sym__file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6447), 14, + sym__assignment_name, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [108782] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6849), 1, + sym__concat, + STATE(1601), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -140468,8 +143771,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 28, - sym__concat, + ACTIONS(6428), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -140497,14 +143801,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105783] = 3, - ACTIONS(2007), 1, + [108835] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 12, + ACTIONS(6189), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -140513,7 +143817,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 28, + ACTIONS(6187), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -140542,14 +143847,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105831] = 3, - ACTIONS(2007), 1, + [108884] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 12, + ACTIONS(6109), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -140558,10 +143862,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 28, + ACTIONS(6107), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -140587,14 +143893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105879] = 3, - ACTIONS(2007), 1, + [108933] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 12, + ACTIONS(6189), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_done, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -140603,7 +143909,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 28, + ACTIONS(6187), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -140632,78 +143939,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [105927] = 23, - ACTIONS(2007), 1, + [108982] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6715), 1, + ACTIONS(6560), 1, sym_word, - ACTIONS(6717), 1, + ACTIONS(6562), 1, anon_sym_LPAREN, - ACTIONS(6719), 1, + ACTIONS(6564), 1, aux_sym_brace_expression_token1, - ACTIONS(6723), 1, + ACTIONS(6568), 1, anon_sym_DOLLAR, - ACTIONS(6725), 1, + ACTIONS(6570), 1, anon_sym_DQUOTE, - ACTIONS(6727), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6729), 1, + ACTIONS(6574), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6731), 1, + ACTIONS(6576), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6733), 1, + ACTIONS(6578), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6737), 1, + ACTIONS(6582), 1, sym__backtick_open, - ACTIONS(6739), 1, + ACTIONS(6584), 1, sym__dollar_literal, - ACTIONS(6741), 1, + ACTIONS(6586), 1, sym__brace_expr_start, - STATE(3221), 1, + STATE(2816), 1, sym_string, - STATE(3561), 1, + STATE(3570), 1, sym__word_part, - ACTIONS(3029), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6735), 2, + ACTIONS(6580), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3200), 2, + STATE(2768), 2, sym_brace_expression, sym__expression, - STATE(3225), 2, + STATE(2852), 2, sym_simple_expansion, sym_expansion, - ACTIONS(6721), 3, + ACTIONS(2937), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + ACTIONS(6566), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(3256), 3, + STATE(2900), 3, sym_array, sym__word_like, sym_concatenation, - STATE(3145), 5, + STATE(2848), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - ACTIONS(3027), 7, + ACTIONS(2935), 7, + sym__heredoc_newline, sym__assignment_name, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [106015] = 3, - ACTIONS(2007), 1, + [109071] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 11, + ACTIONS(6264), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_done, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -140712,11 +144021,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 29, + ACTIONS(6262), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -140742,14 +144051,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106063] = 3, - ACTIONS(2007), 1, + [109120] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 12, + ACTIONS(5951), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -140758,7 +144067,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 28, + ACTIONS(5949), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -140787,14 +144097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106111] = 3, - ACTIONS(2007), 1, + [109169] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 11, + ACTIONS(6609), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -140802,18 +144110,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 29, - sym__concat, + ACTIONS(6611), 32, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140832,14 +144143,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106159] = 3, - ACTIONS(2007), 1, + [109218] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 11, + ACTIONS(6560), 1, + sym_word, + ACTIONS(6562), 1, + anon_sym_LPAREN, + ACTIONS(6564), 1, + aux_sym_brace_expression_token1, + ACTIONS(6568), 1, + anon_sym_DOLLAR, + ACTIONS(6570), 1, + anon_sym_DQUOTE, + ACTIONS(6572), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6574), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6576), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6578), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6582), 1, + sym__backtick_open, + ACTIONS(6584), 1, + sym__dollar_literal, + ACTIONS(6586), 1, + sym__brace_expr_start, + STATE(2816), 1, + sym_string, + STATE(3570), 1, + sym__word_part, + ACTIONS(6580), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2768), 2, + sym_brace_expression, + sym__expression, + STATE(2852), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(2937), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_then, + ACTIONS(6566), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2900), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(2848), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2935), 7, + sym__heredoc_newline, + sym__assignment_name, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [109307] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6699), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -140847,11 +144225,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 29, - sym__concat, + ACTIONS(6701), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -140877,13 +144255,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106207] = 3, - ACTIONS(2007), 1, + [109356] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 11, + ACTIONS(6426), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -140892,11 +144271,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 29, + ACTIONS(6428), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -140922,13 +144301,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106255] = 3, - ACTIONS(2007), 1, + [109405] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 11, + ACTIONS(6322), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -140937,11 +144317,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 29, + ACTIONS(6320), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -140967,25 +144347,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106303] = 7, - ACTIONS(2007), 1, + [109454] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6743), 1, - sym__assignment_name, - STATE(3090), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6271), 3, + ACTIONS(6703), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_fi, - ACTIONS(6269), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(6267), 7, + anon_sym_elif, + anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -140993,11 +144363,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6273), 22, + ACTIONS(6705), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141016,77 +144393,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106359] = 23, - ACTIONS(2007), 1, + [109503] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6491), 1, + ACTIONS(6699), 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6493), 1, - anon_sym_LPAREN, - ACTIONS(6495), 1, - aux_sym_brace_expression_token1, - ACTIONS(6499), 1, anon_sym_DOLLAR, - ACTIONS(6501), 1, - anon_sym_DQUOTE, - ACTIONS(6503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6507), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6509), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6513), 1, + ACTIONS(6701), 32, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(6515), 1, sym__dollar_literal, - ACTIONS(6517), 1, sym__brace_expr_start, - STATE(2916), 1, - sym_string, - STATE(3573), 1, - sym__word_part, - ACTIONS(6511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2941), 2, - sym_simple_expansion, - sym_expansion, - STATE(2945), 2, - sym_brace_expression, - sym__expression, - ACTIONS(2984), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, - ACTIONS(6497), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2959), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(2917), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2982), 6, - sym__assignment_name, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [106447] = 3, - ACTIONS(2007), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [109552] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 9, + ACTIONS(6489), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -141094,20 +144455,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 31, - sym__assignment_name, + ACTIONS(6491), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141126,13 +144485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106495] = 3, - ACTIONS(2007), 1, + [109601] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 11, + ACTIONS(6177), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_done, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -141141,11 +144501,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 29, + ACTIONS(6175), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -141171,15 +144531,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106543] = 3, - ACTIONS(2007), 1, + [109650] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6618), 12, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -141187,8 +144549,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6620), 28, - sym__assignment_name, + ACTIONS(6340), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -141216,15 +144578,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106591] = 3, - ACTIONS(2007), 1, + [109701] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6626), 12, + ACTIONS(5951), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -141232,8 +144594,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6628), 28, - sym__assignment_name, + ACTIONS(5949), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -141261,80 +144624,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106639] = 23, - ACTIONS(2007), 1, + [109750] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6491), 1, + ACTIONS(6493), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6493), 1, - anon_sym_LPAREN, - ACTIONS(6495), 1, - aux_sym_brace_expression_token1, - ACTIONS(6499), 1, anon_sym_DOLLAR, - ACTIONS(6501), 1, - anon_sym_DQUOTE, - ACTIONS(6503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6507), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6509), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6513), 1, + ACTIONS(6495), 29, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, sym__backtick_open, - ACTIONS(6515), 1, sym__dollar_literal, - ACTIONS(6517), 1, sym__brace_expr_start, - STATE(2916), 1, - sym_string, - STATE(3573), 1, - sym__word_part, - ACTIONS(6511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2941), 2, - sym_simple_expansion, - sym_expansion, - STATE(2945), 2, - sym_brace_expression, - sym__expression, - ACTIONS(3029), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, - ACTIONS(6497), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2957), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(2917), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3027), 6, - sym__assignment_name, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [106727] = 3, - ACTIONS(2007), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [109799] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6663), 12, + ACTIONS(5969), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -141342,8 +144686,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6665), 28, - sym__assignment_name, + ACTIONS(5967), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -141371,15 +144716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106775] = 3, - ACTIONS(2007), 1, + [109848] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6670), 12, + ACTIONS(6019), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -141387,8 +144732,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6672), 28, - sym__assignment_name, + ACTIONS(6017), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -141416,81 +144762,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106823] = 23, - ACTIONS(2007), 1, + [109897] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6491), 1, + ACTIONS(6302), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6493), 1, - anon_sym_LPAREN, - ACTIONS(6495), 1, - aux_sym_brace_expression_token1, - ACTIONS(6499), 1, anon_sym_DOLLAR, - ACTIONS(6501), 1, - anon_sym_DQUOTE, - ACTIONS(6503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6507), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6509), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6513), 1, + ACTIONS(6300), 29, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, sym__backtick_open, - ACTIONS(6515), 1, sym__dollar_literal, - ACTIONS(6517), 1, sym__brace_expr_start, - STATE(2916), 1, - sym_string, - STATE(3573), 1, - sym__word_part, - ACTIONS(6511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2941), 2, - sym_simple_expansion, - sym_expansion, - STATE(2945), 2, - sym_brace_expression, - sym__expression, - ACTIONS(2984), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - ACTIONS(6497), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2959), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(2917), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2982), 6, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [109946] = 7, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6852), 1, sym__assignment_name, + STATE(3029), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6445), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_done, + ACTIONS(6443), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [106911] = 4, - ACTIONS(2007), 1, + ACTIONS(6441), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6447), 22, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [110003] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 12, + ACTIONS(6143), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -141499,7 +144874,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 27, + ACTIONS(6141), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -141527,12 +144904,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [106961] = 3, - ACTIONS(2007), 1, + [110052] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6663), 9, + ACTIONS(6109), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -141540,20 +144920,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6665), 31, - sym__assignment_name, + ACTIONS(6107), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141572,15 +144950,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107009] = 4, - ACTIONS(2007), 1, + [110101] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6746), 1, - sym_heredoc_end, - ACTIONS(6252), 11, + ACTIONS(5951), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -141589,10 +144966,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, + ACTIONS(5949), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -141618,12 +144996,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107059] = 3, - ACTIONS(2007), 1, + [110150] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 9, + ACTIONS(6322), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -141631,20 +145012,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 31, - sym__assignment_name, + ACTIONS(6320), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141663,14 +145042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107107] = 3, - ACTIONS(2007), 1, + [110199] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 12, + ACTIONS(6183), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -141679,7 +145058,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 28, + ACTIONS(6181), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -141708,14 +145088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107155] = 3, - ACTIONS(2007), 1, + [110248] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 12, + ACTIONS(6322), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -141724,7 +145104,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 28, + ACTIONS(6320), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -141753,25 +145134,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107203] = 7, - ACTIONS(2007), 1, + [110297] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6748), 1, - sym__assignment_name, - STATE(3073), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6271), 3, + ACTIONS(5905), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, - ACTIONS(6269), 5, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5903), 29, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(6267), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [110346] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(5969), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -141779,11 +145196,18 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6273), 22, + ACTIONS(5967), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -141802,15 +145226,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107259] = 4, - ACTIONS(2007), 1, + [110395] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6751), 1, - sym_heredoc_end, - ACTIONS(6258), 11, + ACTIONS(6019), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -141819,10 +145242,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, + ACTIONS(6017), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -141848,14 +145272,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107309] = 3, - ACTIONS(2007), 1, + [110444] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 12, + ACTIONS(6322), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -141864,10 +145287,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 28, + ACTIONS(6320), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -141893,14 +145318,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107357] = 3, - ACTIONS(2007), 1, + [110493] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 12, + ACTIONS(5905), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -141909,10 +145333,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 28, + ACTIONS(5903), 30, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -141938,97 +145364,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107405] = 23, - ACTIONS(2007), 1, + [110542] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6491), 1, + ACTIONS(6143), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6493), 1, - anon_sym_LPAREN, - ACTIONS(6495), 1, - aux_sym_brace_expression_token1, - ACTIONS(6499), 1, anon_sym_DOLLAR, - ACTIONS(6501), 1, - anon_sym_DQUOTE, - ACTIONS(6503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6507), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6509), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6513), 1, + ACTIONS(6141), 29, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, sym__backtick_open, - ACTIONS(6515), 1, sym__dollar_literal, - ACTIONS(6517), 1, sym__brace_expr_start, - STATE(2916), 1, - sym_string, - STATE(3573), 1, - sym__word_part, - ACTIONS(6511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2941), 2, - sym_simple_expansion, - sym_expansion, - STATE(2945), 2, - sym_brace_expression, - sym__expression, - ACTIONS(3029), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - ACTIONS(6497), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2957), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(2917), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3027), 6, - sym__assignment_name, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [107493] = 7, - ACTIONS(2007), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [110591] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6267), 3, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6636), 4, - anon_sym_SEMI, + ACTIONS(6177), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(6638), 4, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6634), 6, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6175), 29, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(6641), 9, - sym__file_descriptor, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142037,11 +145446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(6273), 14, - sym__assignment_name, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -142052,17 +145456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107549] = 5, - ACTIONS(2007), 1, + [110640] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6753), 1, - sym_heredoc_body, - ACTIONS(6755), 1, - sym_heredoc_end, - ACTIONS(6205), 10, + ACTIONS(6183), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -142070,8 +145472,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 28, - sym__assignment_name, + ACTIONS(6181), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -142099,14 +145502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107601] = 3, - ACTIONS(2007), 1, + [110689] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 12, + ACTIONS(6244), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -142115,7 +145518,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 28, + ACTIONS(6242), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -142144,14 +145548,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107649] = 3, - ACTIONS(2007), 1, + [110738] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 12, + ACTIONS(6785), 1, + sym_word, + ACTIONS(6787), 1, + anon_sym_LPAREN, + ACTIONS(6789), 1, + aux_sym_brace_expression_token1, + ACTIONS(6793), 1, + anon_sym_DOLLAR, + ACTIONS(6795), 1, + anon_sym_DQUOTE, + ACTIONS(6797), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6799), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6801), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6803), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6807), 1, + sym__backtick_open, + ACTIONS(6809), 1, + sym__dollar_literal, + ACTIONS(6811), 1, + sym__brace_expr_start, + STATE(3060), 1, + sym_string, + STATE(3553), 1, + sym__word_part, + ACTIONS(2937), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6805), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3079), 2, + sym_simple_expansion, + sym_expansion, + STATE(3129), 2, + sym_brace_expression, + sym__expression, + ACTIONS(6791), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3174), 3, + sym_array, + sym__word_like, + sym_concatenation, + STATE(3061), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + ACTIONS(2935), 8, + sym__heredoc_newline, + sym__assignment_name, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [110827] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6264), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -142160,7 +145630,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 28, + ACTIONS(6262), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -142189,14 +145660,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107697] = 3, - ACTIONS(2007), 1, + [110876] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 12, + ACTIONS(6244), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -142205,7 +145676,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 28, + ACTIONS(6242), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -142234,15 +145706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107745] = 3, - ACTIONS(2007), 1, + [110925] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6703), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -142250,17 +145719,21 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 28, - sym__concat, + ACTIONS(6705), 32, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142279,17 +145752,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107793] = 5, - ACTIONS(2007), 1, + [110974] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6757), 1, - sym_heredoc_body, - ACTIONS(6759), 1, - sym_heredoc_end, - ACTIONS(6213), 10, + ACTIONS(6189), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -142297,8 +145768,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 28, - sym__assignment_name, + ACTIONS(6187), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -142326,14 +145798,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107845] = 3, - ACTIONS(2007), 1, + [111023] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 12, + ACTIONS(6270), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -142342,7 +145814,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 28, + ACTIONS(6268), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -142371,16 +145844,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107893] = 4, - ACTIONS(2007), 1, + [111072] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6761), 1, - sym_heredoc_end, - ACTIONS(6252), 12, + ACTIONS(6083), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -142389,7 +145860,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 27, + ACTIONS(6081), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -142417,14 +145890,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107943] = 3, - ACTIONS(2007), 1, + [111121] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 12, + ACTIONS(6101), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -142433,7 +145906,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 28, + ACTIONS(6099), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -142462,16 +145936,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107991] = 4, - ACTIONS(2007), 1, + [111170] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6763), 1, - sym_heredoc_end, - ACTIONS(6258), 12, + ACTIONS(6105), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -142480,7 +145952,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 27, + ACTIONS(6103), 29, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -142508,14 +145982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108041] = 3, - ACTIONS(2007), 1, + [111219] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 12, + ACTIONS(6260), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -142524,7 +145998,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 28, + ACTIONS(6258), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -142553,10 +146028,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108089] = 3, - ACTIONS(2007), 1, + [111268] = 7, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6855), 1, + sym__assignment_name, + STATE(3010), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(6445), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, + ACTIONS(6443), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(6441), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6447), 22, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111325] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 12, + ACTIONS(6426), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -142569,7 +146094,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 28, + ACTIONS(6428), 29, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_open, @@ -142598,15 +146124,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108137] = 3, - ACTIONS(2007), 1, + [111374] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 12, + ACTIONS(6189), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -142614,8 +146138,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 28, + ACTIONS(6187), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -142643,15 +146169,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108185] = 3, - ACTIONS(2007), 1, + [111422] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 12, + ACTIONS(6109), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -142659,10 +146182,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 28, + ACTIONS(6107), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -142688,15 +146214,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108233] = 3, - ACTIONS(2007), 1, + [111470] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 12, + ACTIONS(5905), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -142704,10 +146227,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 28, + ACTIONS(5903), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -142733,17 +146259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108281] = 5, - ACTIONS(2007), 1, + [111518] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6765), 1, - sym__concat, - STATE(1607), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 10, + ACTIONS(6177), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -142751,10 +146272,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 28, + ACTIONS(6175), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -142780,17 +146304,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108333] = 4, - ACTIONS(2007), 1, + [111566] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6768), 1, - sym_heredoc_end, - ACTIONS(6252), 12, + ACTIONS(6302), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -142798,7 +146318,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 27, + ACTIONS(6300), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -142826,17 +146349,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108383] = 4, - ACTIONS(2007), 1, + [111614] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6770), 1, - sym_heredoc_end, - ACTIONS(6258), 12, + ACTIONS(6109), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -142844,7 +146363,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 27, + ACTIONS(6107), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -142872,15 +146394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108433] = 3, - ACTIONS(2007), 1, + [111662] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 12, + ACTIONS(6264), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -142888,10 +146407,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 28, + ACTIONS(6262), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -142917,15 +146439,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108481] = 3, - ACTIONS(2007), 1, + [111710] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 12, + ACTIONS(6426), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -142933,7 +146453,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 28, + ACTIONS(6428), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -142962,15 +146484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108529] = 3, - ACTIONS(2007), 1, + [111758] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 12, + ACTIONS(5905), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -142978,7 +146498,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 28, + ACTIONS(5903), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -143007,15 +146529,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108577] = 3, - ACTIONS(2007), 1, + [111806] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 12, + ACTIONS(6489), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143023,7 +146543,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 28, + ACTIONS(6491), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -143052,15 +146574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108625] = 3, - ACTIONS(2007), 1, + [111854] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 12, + ACTIONS(6189), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143068,10 +146587,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, + ACTIONS(6187), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -143097,15 +146619,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108673] = 3, - ACTIONS(2007), 1, + [111902] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 12, + ACTIONS(6177), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143113,7 +146633,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, + ACTIONS(6175), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -143142,15 +146664,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108721] = 3, - ACTIONS(2007), 1, + [111950] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 12, + ACTIONS(6493), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143158,7 +146678,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 28, + ACTIONS(6495), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -143187,15 +146709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108769] = 3, - ACTIONS(2007), 1, + [111998] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 12, + ACTIONS(6264), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143203,7 +146723,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 28, + ACTIONS(6262), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -143232,15 +146754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108817] = 3, - ACTIONS(2007), 1, + [112046] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 12, + ACTIONS(6485), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143248,8 +146768,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 28, + ACTIONS(6487), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -143277,14 +146799,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108865] = 5, - ACTIONS(2007), 1, + [112094] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6772), 1, - sym_heredoc_body, - ACTIONS(6774), 1, - sym_heredoc_end, - ACTIONS(6205), 10, + ACTIONS(6189), 10, anon_sym_AMP, anon_sym_PIPE, anon_sym_done, @@ -143295,7 +146813,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 28, + ACTIONS(6187), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -143324,14 +146844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108917] = 5, - ACTIONS(2007), 1, + [112142] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6776), 1, - sym__concat, - STATE(1624), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 9, + ACTIONS(5951), 9, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, @@ -143341,7 +146857,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 29, + ACTIONS(5949), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -143371,14 +146889,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [108969] = 3, - ACTIONS(2007), 1, + [112190] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 12, + ACTIONS(6613), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -143387,10 +146904,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 28, - sym__concat, + ACTIONS(6615), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -143416,14 +146934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109017] = 3, - ACTIONS(2007), 1, + [112238] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6618), 11, - anon_sym_SEMI, + ACTIONS(6322), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143431,18 +146947,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6620), 29, + ACTIONS(6320), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143461,17 +146979,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109065] = 5, - ACTIONS(2007), 1, + [112286] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6778), 1, - sym_heredoc_body, - ACTIONS(6780), 1, - sym_heredoc_end, - ACTIONS(6213), 10, + ACTIONS(6302), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143479,7 +146993,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 28, + ACTIONS(6300), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -143508,16 +147024,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109117] = 5, - ACTIONS(2007), 1, + [112334] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6782), 1, - sym__concat, - STATE(1624), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 9, + ACTIONS(6109), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143525,11 +147038,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 29, + ACTIONS(6107), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -143555,14 +147069,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109169] = 3, - ACTIONS(2007), 1, + [112382] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6626), 11, - anon_sym_SEMI, + ACTIONS(5951), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143570,18 +147083,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6628), 29, + ACTIONS(5949), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143600,15 +147114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109217] = 3, - ACTIONS(2007), 1, + [112430] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 12, + ACTIONS(6322), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143616,8 +147128,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 28, + ACTIONS(6320), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -143645,14 +147159,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109265] = 3, - ACTIONS(2007), 1, + [112478] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6663), 11, - anon_sym_SEMI, + ACTIONS(5905), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143660,18 +147173,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6665), 29, + ACTIONS(5903), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143690,14 +147204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109313] = 3, - ACTIONS(2007), 1, + [112526] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6670), 11, - anon_sym_SEMI, + ACTIONS(5969), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143705,18 +147218,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6672), 29, + ACTIONS(5967), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143735,82 +147249,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109361] = 23, - ACTIONS(2007), 1, + [112574] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6785), 1, + ACTIONS(6019), 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_done, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6787), 1, - anon_sym_LPAREN, - ACTIONS(6789), 1, - aux_sym_brace_expression_token1, - ACTIONS(6793), 1, anon_sym_DOLLAR, - ACTIONS(6795), 1, - anon_sym_DQUOTE, - ACTIONS(6797), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6799), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6801), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6803), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6807), 1, + ACTIONS(6017), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(6809), 1, sym__dollar_literal, - ACTIONS(6811), 1, sym__brace_expr_start, - STATE(3149), 1, - sym_string, - STATE(3612), 1, - sym__word_part, - ACTIONS(6805), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3147), 2, - sym_brace_expression, - sym__expression, - STATE(3185), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(2984), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, - ACTIONS(6791), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3228), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(3150), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2982), 6, - sym__assignment_name, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [109449] = 5, - ACTIONS(2007), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [112622] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6813), 1, - sym_heredoc_body, - ACTIONS(6815), 1, - sym_heredoc_end, - ACTIONS(6205), 10, + ACTIONS(5969), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143818,10 +147307,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 28, + ACTIONS(5967), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -143847,17 +147339,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109501] = 5, - ACTIONS(2007), 1, + [112670] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6817), 1, - sym__concat, - STATE(1634), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 10, + ACTIONS(6143), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143865,7 +147353,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 28, + ACTIONS(6141), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -143894,15 +147384,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109553] = 3, - ACTIONS(2007), 1, + [112718] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 12, + ACTIONS(6177), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143910,8 +147398,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 28, + ACTIONS(6175), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -143939,17 +147429,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109601] = 5, - ACTIONS(2007), 1, + [112766] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6819), 1, - sym_heredoc_body, - ACTIONS(6821), 1, - sym_heredoc_end, - ACTIONS(6213), 10, + ACTIONS(6183), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -143957,7 +147443,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 28, + ACTIONS(6181), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -143986,17 +147474,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109653] = 5, - ACTIONS(2007), 1, + [112814] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6823), 1, - sym__concat, - STATE(1634), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 10, + ACTIONS(6244), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144004,7 +147488,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 28, + ACTIONS(6242), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -144033,77 +147519,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109705] = 23, - ACTIONS(2007), 1, + [112862] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6785), 1, - sym_word, - ACTIONS(6787), 1, - anon_sym_LPAREN, - ACTIONS(6789), 1, - aux_sym_brace_expression_token1, - ACTIONS(6793), 1, - anon_sym_DOLLAR, - ACTIONS(6795), 1, - anon_sym_DQUOTE, - ACTIONS(6797), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6799), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6801), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6803), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6807), 1, - sym__backtick_open, - ACTIONS(6809), 1, - sym__dollar_literal, - ACTIONS(6811), 1, - sym__brace_expr_start, - STATE(3149), 1, - sym_string, - STATE(3612), 1, - sym__word_part, - ACTIONS(6805), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3147), 2, - sym_brace_expression, - sym__expression, - STATE(3185), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3029), 3, + ACTIONS(6260), 10, anon_sym_AMP, anon_sym_PIPE, anon_sym_done, - ACTIONS(6791), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3270), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(3150), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3027), 6, - sym__assignment_name, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [109793] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6252), 9, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144111,20 +147533,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 31, + ACTIONS(6258), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144143,77 +147564,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109841] = 23, - ACTIONS(2007), 1, + [112910] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6491), 1, - sym_word, - ACTIONS(6493), 1, - anon_sym_LPAREN, - ACTIONS(6495), 1, - aux_sym_brace_expression_token1, - ACTIONS(6499), 1, - anon_sym_DOLLAR, - ACTIONS(6501), 1, - anon_sym_DQUOTE, - ACTIONS(6503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6505), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6507), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6509), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6513), 1, - sym__backtick_open, - ACTIONS(6515), 1, - sym__dollar_literal, - ACTIONS(6517), 1, - sym__brace_expr_start, - STATE(2916), 1, - sym_string, - STATE(3573), 1, - sym__word_part, - ACTIONS(6511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2941), 2, - sym_simple_expansion, - sym_expansion, - STATE(2945), 2, - sym_brace_expression, - sym__expression, - ACTIONS(2984), 3, + ACTIONS(6264), 10, anon_sym_AMP, anon_sym_PIPE, anon_sym_fi, - ACTIONS(6497), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2959), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(2917), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(2982), 6, - sym__assignment_name, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [109929] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6670), 9, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144221,20 +147578,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6672), 31, + ACTIONS(6262), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144253,17 +147609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [109977] = 5, - ACTIONS(2007), 1, + [112958] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6826), 1, - sym__concat, - STATE(1641), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 10, + ACTIONS(6019), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144271,10 +147622,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 28, + ACTIONS(6017), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -144300,14 +147654,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110029] = 3, - ACTIONS(2007), 1, + [113006] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 12, + ACTIONS(6617), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -144316,10 +147669,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 28, - sym__concat, + ACTIONS(6619), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -144345,17 +147699,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110077] = 5, - ACTIONS(2007), 1, + [113054] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6828), 1, - sym__concat, - STATE(1641), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 10, + ACTIONS(6270), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144363,7 +147713,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 28, + ACTIONS(6268), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -144392,82 +147744,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110129] = 23, - ACTIONS(2007), 1, + [113102] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6491), 1, + ACTIONS(6083), 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_done, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6493), 1, - anon_sym_LPAREN, - ACTIONS(6495), 1, - aux_sym_brace_expression_token1, - ACTIONS(6499), 1, anon_sym_DOLLAR, - ACTIONS(6501), 1, - anon_sym_DQUOTE, - ACTIONS(6503), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6507), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6509), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6513), 1, + ACTIONS(6081), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(6515), 1, sym__dollar_literal, - ACTIONS(6517), 1, sym__brace_expr_start, - STATE(2916), 1, - sym_string, - STATE(3573), 1, - sym__word_part, - ACTIONS(6511), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2941), 2, - sym_simple_expansion, - sym_expansion, - STATE(2945), 2, - sym_brace_expression, - sym__expression, - ACTIONS(3029), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - ACTIONS(6497), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2957), 3, - sym_array, - sym__word_like, - sym_concatenation, - STATE(2917), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - ACTIONS(3027), 6, - sym__assignment_name, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [110217] = 4, - ACTIONS(2007), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [113150] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6831), 1, - sym_heredoc_end, - ACTIONS(6252), 12, + ACTIONS(6101), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_done, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144475,7 +147803,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 27, + ACTIONS(6099), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -144503,17 +147834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110267] = 4, - ACTIONS(2007), 1, + [113198] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6833), 1, - sym_heredoc_end, - ACTIONS(6258), 12, + ACTIONS(6105), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_done, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144521,7 +147848,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 27, + ACTIONS(6103), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -144549,15 +147879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110317] = 3, - ACTIONS(2007), 1, + [113246] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 12, + ACTIONS(6143), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144565,10 +147892,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 28, + ACTIONS(6141), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -144594,17 +147924,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110365] = 4, - ACTIONS(2007), 1, + [113294] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6835), 1, - sym_heredoc_end, - ACTIONS(6252), 12, + ACTIONS(6183), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144612,9 +147937,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 27, + ACTIONS(6181), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -144640,17 +147969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110415] = 4, - ACTIONS(2007), 1, + [113342] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6837), 1, - sym_heredoc_end, - ACTIONS(6258), 12, + ACTIONS(6244), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144658,9 +147982,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 27, + ACTIONS(6242), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -144686,17 +148014,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110465] = 4, - ACTIONS(2007), 1, + [113390] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 12, + ACTIONS(5951), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144704,7 +148028,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 27, + ACTIONS(5949), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -144732,15 +148059,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110515] = 3, - ACTIONS(2007), 1, + [113438] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6322), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144748,8 +148073,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 28, + ACTIONS(6320), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -144777,15 +148104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110563] = 3, - ACTIONS(2007), 1, + [113486] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 12, + ACTIONS(6260), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144793,10 +148117,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 28, + ACTIONS(6258), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -144822,15 +148149,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110611] = 3, - ACTIONS(2007), 1, + [113534] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 12, + ACTIONS(5969), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144838,8 +148163,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 28, + ACTIONS(5967), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -144867,15 +148194,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110659] = 3, - ACTIONS(2007), 1, + [113582] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 12, + ACTIONS(6019), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144883,8 +148208,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 28, + ACTIONS(6017), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -144912,25 +148239,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110707] = 7, - ACTIONS(2007), 1, + [113630] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6839), 1, - sym__assignment_name, - STATE(3083), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(6271), 3, + ACTIONS(6143), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, - ACTIONS(6269), 5, + anon_sym_fi, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6141), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(6267), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [113678] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6183), 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144938,11 +148298,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6273), 22, + ACTIONS(6181), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144961,17 +148329,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110763] = 4, - ACTIONS(2007), 1, + [113726] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 12, + ACTIONS(6244), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -144979,7 +148343,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 27, + ACTIONS(6242), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -145007,14 +148374,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110813] = 3, - ACTIONS(2007), 1, + [113774] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 11, - anon_sym_SEMI, + ACTIONS(6260), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145022,18 +148388,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 29, + ACTIONS(6258), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145052,14 +148419,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110861] = 3, - ACTIONS(2007), 1, + [113822] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 11, - anon_sym_SEMI, + ACTIONS(6489), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145067,18 +148433,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 29, + ACTIONS(6491), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145097,14 +148464,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110909] = 3, - ACTIONS(2007), 1, + [113870] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 11, - anon_sym_SEMI, + ACTIONS(6270), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145112,18 +148477,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 29, + ACTIONS(6268), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145142,14 +148509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110957] = 3, - ACTIONS(2007), 1, + [113918] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 11, - anon_sym_SEMI, + ACTIONS(6083), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145157,18 +148522,20 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 29, + ACTIONS(6081), 31, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145187,15 +148554,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111005] = 3, - ACTIONS(2007), 1, + [113966] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6101), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145203,10 +148567,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 28, + ACTIONS(6099), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -145232,14 +148599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111053] = 3, - ACTIONS(2007), 1, + [114014] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 11, - anon_sym_SEMI, + ACTIONS(6270), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145247,18 +148613,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 29, + ACTIONS(6268), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145277,14 +148644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111101] = 3, - ACTIONS(2007), 1, + [114062] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 11, - anon_sym_SEMI, + ACTIONS(6083), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145292,18 +148658,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 29, + ACTIONS(6081), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145322,14 +148689,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111149] = 3, - ACTIONS(2007), 1, + [114110] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 11, - anon_sym_SEMI, + ACTIONS(6101), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145337,18 +148703,19 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 29, + ACTIONS(6099), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145367,15 +148734,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111197] = 3, - ACTIONS(2007), 1, + [114158] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 12, + ACTIONS(6105), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145383,8 +148748,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 28, + ACTIONS(6103), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -145412,15 +148779,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111245] = 3, - ACTIONS(2007), 1, + [114206] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 12, + ACTIONS(6493), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145428,8 +148793,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 28, + ACTIONS(6495), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -145457,15 +148824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111293] = 3, - ACTIONS(2007), 1, + [114254] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 12, + ACTIONS(6105), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145473,10 +148837,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 28, + ACTIONS(6103), 31, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -145502,17 +148869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111341] = 5, - ACTIONS(2007), 1, + [114302] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6842), 1, - sym_heredoc_body, - ACTIONS(6844), 1, - sym_heredoc_end, - ACTIONS(6205), 10, + ACTIONS(6302), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145520,7 +148883,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6207), 28, + ACTIONS(6300), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -145549,10 +148914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111393] = 3, - ACTIONS(2007), 1, + [114350] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 12, + ACTIONS(6601), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -145565,8 +148930,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 28, - sym__concat, + ACTIONS(6603), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -145594,15 +148959,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111441] = 3, - ACTIONS(2007), 1, + [114398] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 12, + ACTIONS(6109), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145610,8 +148973,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 28, + ACTIONS(6107), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -145639,10 +149004,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111489] = 3, - ACTIONS(2007), 1, + [114446] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 12, + ACTIONS(6605), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -145655,8 +149020,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 28, - sym__concat, + ACTIONS(6607), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -145684,17 +149049,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111537] = 5, - ACTIONS(2007), 1, + [114494] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6846), 1, - sym_heredoc_body, - ACTIONS(6848), 1, - sym_heredoc_end, - ACTIONS(6213), 10, + ACTIONS(6609), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145702,8 +149065,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6215), 28, - sym__assignment_name, + ACTIONS(6611), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -145731,15 +149094,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111589] = 3, - ACTIONS(2007), 1, + [114542] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 12, + ACTIONS(5905), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145747,8 +149108,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 28, + ACTIONS(5903), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -145776,10 +149139,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111637] = 3, - ACTIONS(2007), 1, + [114590] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 12, + ACTIONS(6613), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -145792,8 +149155,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 28, - sym__concat, + ACTIONS(6615), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -145821,14 +149184,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111685] = 3, - ACTIONS(2007), 1, + [114638] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 12, + ACTIONS(6617), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_fi, + anon_sym_done, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -145837,8 +149200,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 28, - sym__concat, + ACTIONS(6619), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -145866,15 +149229,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111733] = 3, - ACTIONS(2007), 1, + [114686] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 12, + ACTIONS(6177), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145882,8 +149243,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 28, + ACTIONS(6175), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -145911,15 +149274,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111781] = 3, - ACTIONS(2007), 1, + [114734] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 12, + ACTIONS(6264), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145927,8 +149288,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 28, + ACTIONS(6262), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -145956,15 +149319,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111829] = 3, - ACTIONS(2007), 1, + [114782] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 12, + ACTIONS(6189), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -145972,8 +149333,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 28, + ACTIONS(6187), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146001,14 +149364,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111877] = 3, - ACTIONS(2007), 1, + [114830] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 12, + ACTIONS(6601), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_done, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -146017,8 +149380,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 28, - sym__concat, + ACTIONS(6603), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146046,15 +149409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111925] = 3, - ACTIONS(2007), 1, + [114878] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 12, + ACTIONS(5951), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146062,8 +149423,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 28, + ACTIONS(5949), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146091,14 +149454,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111973] = 3, - ACTIONS(2007), 1, + [114926] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 12, + ACTIONS(6605), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_done, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -146107,8 +149470,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 28, - sym__concat, + ACTIONS(6607), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146136,14 +149499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112021] = 3, - ACTIONS(2007), 1, + [114974] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 12, + ACTIONS(6609), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_done, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -146152,8 +149515,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 28, - sym__concat, + ACTIONS(6611), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146181,15 +149544,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112069] = 3, - ACTIONS(2007), 1, + [115022] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 12, + ACTIONS(6322), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146197,8 +149558,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 28, + ACTIONS(6320), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146226,15 +149589,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112117] = 3, - ACTIONS(2007), 1, + [115070] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 12, + ACTIONS(5969), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146242,8 +149603,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 28, + ACTIONS(5967), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146271,15 +149634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112165] = 3, - ACTIONS(2007), 1, + [115118] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 12, + ACTIONS(6019), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146287,8 +149648,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 28, + ACTIONS(6017), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146316,14 +149679,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112213] = 3, - ACTIONS(2007), 1, + [115166] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 12, + ACTIONS(6613), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_done, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -146332,8 +149695,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 28, - sym__concat, + ACTIONS(6615), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146361,14 +149724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112261] = 3, - ACTIONS(2007), 1, + [115214] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 12, + ACTIONS(6617), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_done, + anon_sym_fi, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -146377,8 +149740,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 28, - sym__concat, + ACTIONS(6619), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146406,17 +149769,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112309] = 5, - ACTIONS(2007), 1, + [115262] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6850), 1, - sym__concat, - STATE(1687), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 10, + ACTIONS(6143), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146424,7 +149783,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 28, + ACTIONS(6141), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -146453,17 +149814,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112361] = 5, - ACTIONS(2007), 1, + [115310] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6852), 1, - sym__concat, - STATE(1687), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 10, + ACTIONS(6183), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146471,7 +149828,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 28, + ACTIONS(6181), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -146500,15 +149859,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112413] = 3, - ACTIONS(2007), 1, + [115358] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 12, + ACTIONS(6244), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146516,8 +149873,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 28, + ACTIONS(6242), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146545,10 +149904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112461] = 3, - ACTIONS(2007), 1, + [115406] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 12, + ACTIONS(6592), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -146561,8 +149920,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 28, - sym__concat, + ACTIONS(6594), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146590,15 +149949,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112509] = 3, - ACTIONS(2007), 1, + [115454] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 12, + ACTIONS(6270), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146606,8 +149963,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 28, + ACTIONS(6268), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146635,17 +149994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112557] = 5, - ACTIONS(2007), 1, + [115502] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6855), 1, - sym__concat, - STATE(1607), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 10, + ACTIONS(6083), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146653,7 +150008,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 28, + ACTIONS(6081), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -146682,15 +150039,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112609] = 3, - ACTIONS(2007), 1, + [115550] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 12, + ACTIONS(6101), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146698,8 +150053,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 28, + ACTIONS(6099), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146727,15 +150084,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112657] = 3, - ACTIONS(2007), 1, + [115598] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 12, + ACTIONS(6105), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146743,8 +150098,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 28, + ACTIONS(6103), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146772,15 +150129,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112705] = 3, - ACTIONS(2007), 1, + [115646] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 12, + ACTIONS(6302), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146788,8 +150143,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 28, + ACTIONS(6300), 30, + sym__heredoc_newline, sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -146817,13 +150174,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112753] = 3, - ACTIONS(2007), 1, + [115694] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 10, + ACTIONS(6109), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146831,7 +150188,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 29, + ACTIONS(6107), 30, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -146861,12 +150219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112800] = 4, - ACTIONS(2007), 1, + [115742] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6857), 1, - sym_heredoc_end, - ACTIONS(6258), 10, + ACTIONS(5905), 10, anon_sym_AMP, anon_sym_PIPE, anon_sym_do, @@ -146877,7 +150233,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, + ACTIONS(5903), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -146906,79 +150264,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112849] = 23, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6859), 1, - sym_word, - ACTIONS(6865), 1, - anon_sym_RBRACK, - ACTIONS(6867), 1, - aux_sym_brace_expression_token1, - ACTIONS(6871), 1, - anon_sym_DOLLAR, - ACTIONS(6873), 1, - anon_sym_DQUOTE, - ACTIONS(6875), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6877), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6879), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6881), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6885), 1, - sym__backtick_open, - ACTIONS(6887), 1, - sym__dollar_literal, - ACTIONS(6889), 1, - sym__brace_expr_start, - STATE(2412), 1, - sym_string, - STATE(3591), 1, - sym__word_part, - ACTIONS(6883), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2405), 2, - sym_simple_expansion, - sym_expansion, - STATE(2430), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6863), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - ACTIONS(6869), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1851), 3, - sym__word_like, - sym_concatenation, - aux_sym_test_command_repeat1, - ACTIONS(6861), 5, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - STATE(2421), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [112936] = 3, - ACTIONS(2007), 1, + [115790] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6477), 12, + ACTIONS(6177), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -146986,7 +150278,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6479), 27, + ACTIONS(6175), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -147014,15 +150309,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [112983] = 3, - ACTIONS(2007), 1, + [115838] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6481), 12, + ACTIONS(6264), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147030,7 +150323,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6483), 27, + ACTIONS(6262), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -147058,15 +150354,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113030] = 3, - ACTIONS(2007), 1, + [115886] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6487), 12, + ACTIONS(6189), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147074,7 +150368,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6489), 27, + ACTIONS(6187), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -147102,13 +150399,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113077] = 3, - ACTIONS(2007), 1, + [115934] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 10, + ACTIONS(6553), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147116,11 +150414,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 29, - sym__concat, - sym__assignment_name, + ACTIONS(6555), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -147146,10 +150444,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113124] = 3, - ACTIONS(2007), 1, + [115982] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 11, + ACTIONS(6588), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -147161,7 +150459,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 28, + ACTIONS(6590), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__backtick_close, @@ -147190,13 +150489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113171] = 3, - ACTIONS(2007), 1, + [116030] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 10, + ACTIONS(5951), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147204,7 +150503,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 29, + ACTIONS(5949), 30, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -147234,14 +150534,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113218] = 3, - ACTIONS(2007), 1, + [116078] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 11, + ACTIONS(6322), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147249,10 +150548,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 28, + ACTIONS(6320), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -147278,13 +150579,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113265] = 3, - ACTIONS(2007), 1, + [116126] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 10, + ACTIONS(5969), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147292,7 +150593,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 29, + ACTIONS(5967), 30, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -147322,14 +150624,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113312] = 3, - ACTIONS(2007), 1, + [116174] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 11, + ACTIONS(6019), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147337,10 +150638,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 28, + ACTIONS(6017), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -147366,14 +150669,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113359] = 3, - ACTIONS(2007), 1, + [116222] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 11, + ACTIONS(6143), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147381,10 +150683,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, + ACTIONS(6141), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -147410,13 +150714,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113406] = 3, - ACTIONS(2007), 1, + [116270] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 10, + ACTIONS(6183), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147424,7 +150728,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 29, + ACTIONS(6181), 30, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -147454,14 +150759,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113453] = 3, - ACTIONS(2007), 1, + [116318] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 11, + ACTIONS(6244), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147469,10 +150773,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, + ACTIONS(6242), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -147498,14 +150804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113500] = 3, - ACTIONS(2007), 1, + [116366] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 11, + ACTIONS(6260), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147513,10 +150818,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 28, + ACTIONS(6258), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -147542,142 +150849,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113547] = 23, - ACTIONS(2007), 1, + [116414] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6859), 1, - sym_word, - ACTIONS(6867), 1, - aux_sym_brace_expression_token1, - ACTIONS(6871), 1, - anon_sym_DOLLAR, - ACTIONS(6873), 1, - anon_sym_DQUOTE, - ACTIONS(6875), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6877), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6879), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6881), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6885), 1, - sym__backtick_open, - ACTIONS(6887), 1, - sym__dollar_literal, - ACTIONS(6889), 1, - sym__brace_expr_start, - ACTIONS(6895), 1, - anon_sym_RBRACK, - STATE(2412), 1, - sym_string, - STATE(3591), 1, - sym__word_part, - ACTIONS(6883), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2405), 2, - sym_simple_expansion, - sym_expansion, - STATE(2430), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6869), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6893), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - STATE(1712), 3, - sym__word_like, - sym_concatenation, - aux_sym_test_command_repeat1, - ACTIONS(6891), 5, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - STATE(2421), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [113634] = 23, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6392), 1, - anon_sym_RBRACK, - ACTIONS(6859), 1, - sym_word, - ACTIONS(6867), 1, - aux_sym_brace_expression_token1, - ACTIONS(6871), 1, - anon_sym_DOLLAR, - ACTIONS(6873), 1, - anon_sym_DQUOTE, - ACTIONS(6875), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6877), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6879), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6881), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6885), 1, - sym__backtick_open, - ACTIONS(6887), 1, - sym__dollar_literal, - ACTIONS(6889), 1, - sym__brace_expr_start, - STATE(2412), 1, - sym_string, - STATE(3591), 1, - sym__word_part, - ACTIONS(6883), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2405), 2, - sym_simple_expansion, - sym_expansion, - STATE(2430), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6869), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6899), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - STATE(1728), 3, - sym__word_like, - sym_concatenation, - aux_sym_test_command_repeat1, - ACTIONS(6897), 5, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - STATE(2421), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [113721] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6559), 11, + ACTIONS(6270), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147685,10 +150863,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 28, + ACTIONS(6268), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -147714,15 +150894,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113768] = 3, - ACTIONS(2007), 1, + [116462] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 12, + ACTIONS(6083), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147730,7 +150908,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 27, + ACTIONS(6081), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -147758,13 +150939,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113815] = 3, - ACTIONS(2007), 1, + [116510] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 10, + ACTIONS(6101), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147772,7 +150953,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 29, + ACTIONS(6099), 30, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -147802,13 +150984,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113862] = 3, - ACTIONS(2007), 1, + [116558] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 10, + ACTIONS(6601), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_BANG, + anon_sym_then, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147816,9 +151000,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 29, - sym__concat, - sym__assignment_name, + ACTIONS(6603), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -147846,13 +151029,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113909] = 3, - ACTIONS(2007), 1, + [116606] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 10, + ACTIONS(6105), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -147860,7 +151043,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 29, + ACTIONS(6103), 30, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -147890,10 +151074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113956] = 3, - ACTIONS(2007), 1, + [116654] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 12, + ACTIONS(6605), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -147906,7 +151090,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 27, + ACTIONS(6607), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -147934,10 +151119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114003] = 3, - ACTIONS(2007), 1, + [116702] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6477), 12, + ACTIONS(6609), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -147950,7 +151135,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6479), 27, + ACTIONS(6611), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -147978,10 +151164,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114050] = 3, - ACTIONS(2007), 1, + [116750] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6481), 12, + ACTIONS(6302), 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6300), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__backtick_close, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [116798] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6613), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -147994,7 +151225,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6483), 27, + ACTIONS(6615), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -148022,10 +151254,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114097] = 3, - ACTIONS(2007), 1, + [116846] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6487), 12, + ACTIONS(6617), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -148038,7 +151270,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6489), 27, + ACTIONS(6619), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -148066,10 +151299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114144] = 3, - ACTIONS(2007), 1, + [116894] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 12, + ACTIONS(6553), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -148082,7 +151315,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 27, + ACTIONS(6555), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -148110,13 +151344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114191] = 3, - ACTIONS(2007), 1, + [116942] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 10, + ACTIONS(6588), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + anon_sym_BANG, + anon_sym_then, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -148124,9 +151360,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 29, - sym__concat, - sym__assignment_name, + ACTIONS(6590), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -148154,10 +151389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114238] = 3, - ACTIONS(2007), 1, + [116990] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 12, + ACTIONS(6592), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, @@ -148170,7 +151405,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 27, + ACTIONS(6594), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -148198,13 +151434,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114285] = 3, - ACTIONS(2007), 1, + [117038] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 10, + ACTIONS(6601), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -148212,9 +151450,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 29, - sym__concat, - sym__assignment_name, + ACTIONS(6603), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -148242,14 +151479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114332] = 3, - ACTIONS(2007), 1, + [117086] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 12, + ACTIONS(6605), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -148258,7 +151495,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 27, + ACTIONS(6607), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -148286,14 +151524,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114379] = 3, - ACTIONS(2007), 1, + [117134] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 12, + ACTIONS(6609), 12, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_then, + anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -148302,7 +151540,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 27, + ACTIONS(6611), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -148330,79 +151569,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114426] = 23, - ACTIONS(2007), 1, + [117182] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6901), 1, + ACTIONS(6613), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6910), 1, - anon_sym_RBRACK, - ACTIONS(6912), 1, - aux_sym_brace_expression_token1, - ACTIONS(6918), 1, anon_sym_DOLLAR, - ACTIONS(6921), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6615), 28, + sym__heredoc_newline, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, anon_sym_DQUOTE, - ACTIONS(6924), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6927), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6930), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6933), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6939), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [117230] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6553), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6555), 28, + sym__heredoc_newline, + sym__file_descriptor, sym__backtick_open, - ACTIONS(6942), 1, sym__dollar_literal, - ACTIONS(6945), 1, sym__brace_expr_start, - STATE(2412), 1, - sym_string, - STATE(3591), 1, - sym__word_part, - ACTIONS(6936), 2, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2405), 2, - sym_simple_expansion, - sym_expansion, - STATE(2430), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6907), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - ACTIONS(6915), 3, + [117278] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6588), 12, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6590), 28, + sym__heredoc_newline, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(1728), 3, - sym__word_like, - sym_concatenation, - aux_sym_test_command_repeat1, - ACTIONS(6904), 5, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [117326] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6592), 12, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_BANG, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - STATE(2421), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [114513] = 4, - ACTIONS(2007), 1, + anon_sym_do, + anon_sym_LBRACE_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6594), 28, + sym__heredoc_newline, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [117374] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6948), 1, - sym_heredoc_end, - ACTIONS(6252), 10, + ACTIONS(6617), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + anon_sym_BANG, + anon_sym_do, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -148410,8 +151765,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, - sym__assignment_name, + ACTIONS(6619), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -148439,15 +151794,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114562] = 3, - ACTIONS(2007), 1, + [117422] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 12, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_then, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -148455,9 +151809,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 27, + ACTIONS(6340), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -148483,15 +151840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114609] = 3, - ACTIONS(2007), 1, + [117472] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 12, + ACTIONS(6485), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -148499,9 +151853,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 27, + ACTIONS(6487), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -148527,15 +151885,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114656] = 3, - ACTIONS(2007), 1, + [117520] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 12, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -148543,7 +151901,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 27, + ACTIONS(6340), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -148571,60 +151931,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114703] = 5, - ACTIONS(3), 1, + [117570] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6950), 1, - sym__concat, - STATE(1737), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - sym_word, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 20, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114754] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6551), 12, + ACTIONS(6601), 11, anon_sym_AMP, anon_sym_PIPE, anon_sym_BANG, - anon_sym_do, anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, @@ -148633,9 +151946,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 27, + ACTIONS(6603), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -148661,15 +151976,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114801] = 4, - ACTIONS(2007), 1, + [117618] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6952), 1, - sym_heredoc_end, - ACTIONS(6258), 10, + ACTIONS(6426), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -148677,7 +151990,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, + ACTIONS(6428), 30, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -148706,15 +152021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114850] = 3, - ACTIONS(2007), 1, + [117666] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 12, + ACTIONS(6426), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -148722,9 +152034,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 27, + ACTIONS(6428), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -148750,42 +152066,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114897] = 5, - ACTIONS(3), 1, + [117714] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6954), 1, + ACTIONS(6344), 1, sym__concat, - STATE(1737), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 17, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(6338), 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 20, + ACTIONS(6340), 29, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -148796,15 +152112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114948] = 3, - ACTIONS(2007), 1, + [117764] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 12, + ACTIONS(6485), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -148812,7 +152126,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 27, + ACTIONS(6487), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -148840,15 +152157,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114995] = 3, - ACTIONS(2007), 1, + [117812] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 12, + ACTIONS(6489), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -148856,9 +152170,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 27, + ACTIONS(6491), 31, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -148884,14 +152202,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115042] = 3, - ACTIONS(2007), 1, + [117860] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6477), 11, + ACTIONS(6426), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -148899,10 +152216,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6479), 28, + ACTIONS(6428), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -148928,15 +152247,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115089] = 3, - ACTIONS(2007), 1, + [117908] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 12, + ACTIONS(6489), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -148944,7 +152261,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 27, + ACTIONS(6491), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -148972,14 +152292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115136] = 3, - ACTIONS(2007), 1, + [117956] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6481), 11, + ACTIONS(6493), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -148987,10 +152306,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6483), 28, + ACTIONS(6495), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -149016,14 +152337,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115183] = 3, - ACTIONS(2007), 1, + [118004] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6487), 11, + ACTIONS(6485), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149031,10 +152351,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6489), 28, + ACTIONS(6487), 30, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -149060,77 +152382,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115230] = 23, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6859), 1, - sym_word, - ACTIONS(6867), 1, - aux_sym_brace_expression_token1, - ACTIONS(6871), 1, - anon_sym_DOLLAR, - ACTIONS(6873), 1, - anon_sym_DQUOTE, - ACTIONS(6875), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6877), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6879), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6881), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6885), 1, - sym__backtick_open, - ACTIONS(6887), 1, - sym__dollar_literal, - ACTIONS(6889), 1, - sym__brace_expr_start, - ACTIONS(6961), 1, - anon_sym_RBRACK, - STATE(2412), 1, - sym_string, - STATE(3591), 1, - sym__word_part, - ACTIONS(6883), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2405), 2, - sym_simple_expansion, - sym_expansion, - STATE(2430), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6869), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6959), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - STATE(1746), 3, - sym__word_like, - sym_concatenation, - aux_sym_test_command_repeat1, - ACTIONS(6957), 5, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - STATE(2421), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [115317] = 3, - ACTIONS(2007), 1, + [118052] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 10, + ACTIONS(6493), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149138,11 +152395,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 29, + ACTIONS(6495), 31, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -149168,78 +152427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115364] = 23, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6329), 1, - anon_sym_RBRACK, - ACTIONS(6859), 1, - sym_word, - ACTIONS(6867), 1, - aux_sym_brace_expression_token1, - ACTIONS(6871), 1, - anon_sym_DOLLAR, - ACTIONS(6873), 1, - anon_sym_DQUOTE, - ACTIONS(6875), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6877), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6879), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6881), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6885), 1, - sym__backtick_open, - ACTIONS(6887), 1, - sym__dollar_literal, - ACTIONS(6889), 1, - sym__brace_expr_start, - STATE(2412), 1, - sym_string, - STATE(3591), 1, - sym__word_part, - ACTIONS(6883), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2405), 2, - sym_simple_expansion, - sym_expansion, - STATE(2430), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6869), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6899), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - STATE(1728), 3, - sym__word_like, - sym_concatenation, - aux_sym_test_command_repeat1, - ACTIONS(6897), 5, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - STATE(2421), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [115451] = 4, - ACTIONS(2007), 1, + [118100] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, + ACTIONS(6344), 1, sym__concat, - ACTIONS(6221), 9, + ACTIONS(6338), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149247,11 +152443,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 29, + ACTIONS(6340), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -149277,12 +152473,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115500] = 3, - ACTIONS(2007), 1, + [118150] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 9, + ACTIONS(6553), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149290,12 +152489,10 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 30, - sym__concat, - sym__assignment_name, + ACTIONS(6555), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -149321,57 +152518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115547] = 3, - ACTIONS(2007), 1, + [118198] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115594] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6165), 10, + ACTIONS(6588), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149379,9 +152534,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 29, - sym__concat, - sym__assignment_name, + ACTIONS(6590), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -149409,15 +152563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115641] = 4, - ACTIONS(2007), 1, + [118246] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6963), 1, - sym_heredoc_end, - ACTIONS(6252), 10, + ACTIONS(6592), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_done, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149425,8 +152579,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, - sym__assignment_name, + ACTIONS(6594), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -149454,12 +152608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115690] = 3, - ACTIONS(2007), 1, + [118294] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 9, + ACTIONS(6489), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149467,12 +152622,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 30, + ACTIONS(6491), 30, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -149498,15 +152653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115737] = 4, - ACTIONS(2007), 1, + [118342] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6965), 1, - sym_heredoc_end, - ACTIONS(6258), 10, + ACTIONS(6605), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149514,10 +152668,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, - sym__assignment_name, + ACTIONS(6607), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -149543,12 +152698,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115786] = 3, - ACTIONS(2007), 1, + [118390] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 9, + ACTIONS(6493), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149556,12 +152712,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 30, + ACTIONS(6495), 30, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -149587,12 +152743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115833] = 3, - ACTIONS(2007), 1, + [118438] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 9, + ACTIONS(6609), 11, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149600,9 +152758,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 30, - sym__concat, - sym__assignment_name, + ACTIONS(6611), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__backtick_close, @@ -149631,12 +152788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115880] = 4, - ACTIONS(2007), 1, + [118486] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 10, + ACTIONS(6426), 10, anon_sym_AMP, anon_sym_PIPE, anon_sym_then, @@ -149647,50 +152802,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115929] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6175), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 29, + ACTIONS(6428), 30, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -149720,13 +152833,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115976] = 3, - ACTIONS(2007), 1, + [118534] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 10, + ACTIONS(6592), 11, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_BANG, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149734,11 +152848,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 29, - sym__concat, - sym__assignment_name, + ACTIONS(6594), 29, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -149764,15 +152878,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116023] = 4, - ACTIONS(2007), 1, + [118582] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6967), 1, - sym_heredoc_end, - ACTIONS(6252), 10, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149780,7 +152894,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, + ACTIONS(6340), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -149809,10 +152924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116072] = 3, - ACTIONS(2007), 1, + [118632] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 10, + ACTIONS(6485), 10, anon_sym_AMP, anon_sym_PIPE, anon_sym_then, @@ -149823,7 +152938,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 29, + ACTIONS(6487), 30, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -149853,15 +152969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116119] = 4, - ACTIONS(2007), 1, + [118680] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6969), 1, - sym_heredoc_end, - ACTIONS(6258), 10, + ACTIONS(6553), 12, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BANG, anon_sym_fi, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149869,8 +152985,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, - sym__assignment_name, + ACTIONS(6555), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -149898,15 +153014,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116168] = 4, - ACTIONS(2007), 1, + [118728] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 10, + ACTIONS(6588), 12, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, + anon_sym_BANG, + anon_sym_fi, + anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -149914,8 +153030,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 28, - sym__assignment_name, + ACTIONS(6590), 28, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -149943,10 +153059,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116217] = 3, - ACTIONS(2007), 1, + [118776] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 10, + ACTIONS(6260), 10, anon_sym_AMP, anon_sym_PIPE, anon_sym_then, @@ -149957,7 +153073,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 29, + ACTIONS(6258), 30, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__file_descriptor, @@ -149987,12 +153104,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116264] = 3, - ACTIONS(2007), 1, + [118824] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 9, + ACTIONS(6601), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -150000,12 +153118,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 30, - sym__concat, + ACTIONS(6603), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -150031,32 +153148,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116311] = 3, - ACTIONS(2007), 1, + [118871] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 10, + ACTIONS(6441), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6714), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_fi, + ACTIONS(6716), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(6712), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + ACTIONS(6719), 9, + sym__file_descriptor, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150065,50 +153181,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [116358] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5868), 9, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 30, - sym__concat, + ACTIONS(6447), 14, sym__assignment_name, - sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -150119,13 +153196,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116405] = 3, - ACTIONS(2007), 1, + [118926] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 10, + ACTIONS(6605), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -150133,11 +153209,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 29, - sym__concat, + ACTIONS(6607), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -150163,10 +153240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116452] = 3, - ACTIONS(2007), 1, + [118973] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 9, + ACTIONS(6703), 9, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, @@ -150176,8 +153253,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 30, - sym__concat, + ACTIONS(6705), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -150207,96 +153284,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116499] = 23, - ACTIONS(2007), 1, + [119020] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6859), 1, + ACTIONS(6441), 3, sym_word, - ACTIONS(6867), 1, - aux_sym_brace_expression_token1, - ACTIONS(6871), 1, anon_sym_DOLLAR, - ACTIONS(6873), 1, - anon_sym_DQUOTE, - ACTIONS(6875), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6877), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6879), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6881), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6885), 1, - sym__backtick_open, - ACTIONS(6887), 1, - sym__dollar_literal, - ACTIONS(6889), 1, - sym__brace_expr_start, - ACTIONS(6975), 1, - anon_sym_RBRACK, - STATE(2412), 1, - sym_string, - STATE(3591), 1, - sym__word_part, - ACTIONS(6883), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2405), 2, - sym_simple_expansion, - sym_expansion, - STATE(2430), 2, - sym_brace_expression, - sym__expression, - ACTIONS(6869), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(6973), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - STATE(1792), 3, - sym__word_like, - sym_concatenation, - aux_sym_test_command_repeat1, - ACTIONS(6971), 5, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - STATE(2421), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [116586] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6046), 10, + ACTIONS(6714), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_then, + ACTIONS(6716), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(6712), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + ACTIONS(6719), 9, + sym__file_descriptor, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150305,6 +153317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, + ACTIONS(6447), 14, + sym__assignment_name, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -150315,10 +153332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116633] = 3, - ACTIONS(2007), 1, + [119075] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 9, + ACTIONS(6609), 9, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, @@ -150328,8 +153345,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 30, - sym__concat, + ACTIONS(6611), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -150359,12 +153376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116680] = 3, - ACTIONS(2007), 1, + [119122] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 9, + ACTIONS(6605), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -150372,12 +153390,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 30, - sym__concat, + ACTIONS(6607), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -150403,13 +153420,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116727] = 3, - ACTIONS(2007), 1, + [119169] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 10, + ACTIONS(6609), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -150417,8 +153434,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 29, - sym__concat, + ACTIONS(6611), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -150447,41 +153464,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116774] = 4, - ACTIONS(2007), 1, + [119216] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6977), 1, - sym_heredoc_end, - ACTIONS(6252), 9, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6858), 1, + sym__concat, + STATE(1824), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 29, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6435), 20, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -150492,13 +153510,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116823] = 3, - ACTIONS(2007), 1, + [119267] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 10, + ACTIONS(6691), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -150506,8 +153524,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 29, - sym__concat, + ACTIONS(6693), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -150536,57 +153554,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116870] = 3, - ACTIONS(2007), 1, + [119314] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 9, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6860), 1, sym_word, + ACTIONS(6866), 1, + anon_sym_RBRACK, + ACTIONS(6868), 1, + aux_sym_brace_expression_token1, + ACTIONS(6872), 1, anon_sym_DOLLAR, + ACTIONS(6874), 1, + anon_sym_DQUOTE, + ACTIONS(6876), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 30, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6880), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6882), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6886), 1, sym__backtick_open, - sym__backtick_close, + ACTIONS(6888), 1, sym__dollar_literal, + ACTIONS(6890), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + STATE(2390), 1, + sym_string, + STATE(3575), 1, + sym__word_part, + ACTIONS(6884), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2367), 2, + sym_brace_expression, + sym__expression, + STATE(2402), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6864), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + ACTIONS(6870), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [116917] = 3, - ACTIONS(2007), 1, + STATE(1819), 3, + sym__word_like, + sym_concatenation, + aux_sym_test_command_repeat1, + ACTIONS(6862), 5, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + STATE(2395), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [119401] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 10, + ACTIONS(6691), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -150594,8 +153632,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 29, - sym__concat, + ACTIONS(6693), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -150624,13 +153662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116964] = 3, - ACTIONS(2007), 1, + [119448] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 10, + ACTIONS(6699), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -150638,8 +153676,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 29, - sym__concat, + ACTIONS(6701), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -150668,56 +153706,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117011] = 3, - ACTIONS(2007), 1, + [119495] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 12, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6623), 1, + anon_sym_RBRACK, + ACTIONS(6860), 1, sym_word, + ACTIONS(6868), 1, + aux_sym_brace_expression_token1, + ACTIONS(6872), 1, anon_sym_DOLLAR, + ACTIONS(6874), 1, + anon_sym_DQUOTE, + ACTIONS(6876), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 27, - sym__file_descriptor, + ACTIONS(6880), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6882), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6886), 1, sym__backtick_open, + ACTIONS(6888), 1, sym__dollar_literal, + ACTIONS(6890), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + STATE(2390), 1, + sym_string, + STATE(3575), 1, + sym__word_part, + ACTIONS(6884), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2367), 2, + sym_brace_expression, + sym__expression, + STATE(2402), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6870), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [117058] = 3, - ACTIONS(2007), 1, + ACTIONS(6894), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + STATE(1827), 3, + sym__word_like, + sym_concatenation, + aux_sym_test_command_repeat1, + ACTIONS(6892), 5, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + STATE(2395), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [119582] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 9, + ACTIONS(6613), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -150725,12 +153784,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 30, - sym__concat, + ACTIONS(6615), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -150756,15 +153814,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117105] = 3, - ACTIONS(2007), 1, + [119629] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 12, + ACTIONS(6691), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -150772,7 +153828,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 27, + ACTIONS(6693), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -150800,12 +153858,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117152] = 3, - ACTIONS(2007), 1, + [119676] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 9, + ACTIONS(6613), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -150813,12 +153872,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 30, - sym__concat, + ACTIONS(6615), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -150844,12 +153902,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117199] = 3, - ACTIONS(2007), 1, + [119723] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 9, + ACTIONS(6617), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -150857,12 +153916,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 30, - sym__concat, + ACTIONS(6619), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -150888,40 +153946,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117246] = 3, - ACTIONS(2007), 1, + [119770] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6175), 9, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6896), 1, + sym__concat, + STATE(1824), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 30, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6428), 20, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -150932,15 +153992,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117293] = 3, - ACTIONS(2007), 1, + [119821] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 12, + ACTIONS(6695), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -150948,7 +154006,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 27, + ACTIONS(6697), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -150976,12 +154036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117340] = 3, - ACTIONS(2007), 1, + [119868] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 9, + ACTIONS(6695), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -150989,12 +154050,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 30, - sym__concat, + ACTIONS(6697), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -151020,13 +154080,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117387] = 3, - ACTIONS(2007), 1, + [119915] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 10, + ACTIONS(6899), 1, + sym_word, + ACTIONS(6908), 1, + anon_sym_RBRACK, + ACTIONS(6910), 1, + aux_sym_brace_expression_token1, + ACTIONS(6916), 1, + anon_sym_DOLLAR, + ACTIONS(6919), 1, + anon_sym_DQUOTE, + ACTIONS(6922), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6925), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6928), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6931), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6937), 1, + sym__backtick_open, + ACTIONS(6940), 1, + sym__dollar_literal, + ACTIONS(6943), 1, + sym__brace_expr_start, + STATE(2390), 1, + sym_string, + STATE(3575), 1, + sym__word_part, + ACTIONS(6934), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2367), 2, + sym_brace_expression, + sym__expression, + STATE(2402), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6905), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + ACTIONS(6913), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1827), 3, + sym__word_like, + sym_concatenation, + aux_sym_test_command_repeat1, + ACTIONS(6902), 5, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + STATE(2395), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [120002] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6699), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151034,8 +154158,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 29, - sym__concat, + ACTIONS(6701), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -151064,15 +154188,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117434] = 3, - ACTIONS(2007), 1, + [120049] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 12, + ACTIONS(6699), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151080,7 +154202,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 27, + ACTIONS(6701), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -151108,12 +154232,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117481] = 3, - ACTIONS(2007), 1, + [120096] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 9, + ACTIONS(6703), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151121,12 +154246,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 30, - sym__concat, + ACTIONS(6705), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -151152,12 +154276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117528] = 3, - ACTIONS(2007), 1, + [120143] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 9, + ACTIONS(6703), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151165,12 +154290,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 30, - sym__concat, + ACTIONS(6705), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -151196,10 +154320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117575] = 3, - ACTIONS(2007), 1, + [120190] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 9, + ACTIONS(6691), 9, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, @@ -151209,8 +154333,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 30, - sym__concat, + ACTIONS(6693), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -151240,79 +154364,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117622] = 23, - ACTIONS(2007), 1, + [120237] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6331), 1, - anon_sym_RBRACK, - ACTIONS(6859), 1, + ACTIONS(6860), 1, sym_word, - ACTIONS(6867), 1, + ACTIONS(6868), 1, aux_sym_brace_expression_token1, - ACTIONS(6871), 1, + ACTIONS(6872), 1, anon_sym_DOLLAR, - ACTIONS(6873), 1, + ACTIONS(6874), 1, anon_sym_DQUOTE, - ACTIONS(6875), 1, + ACTIONS(6876), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6877), 1, + ACTIONS(6878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6879), 1, + ACTIONS(6880), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6881), 1, + ACTIONS(6882), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6885), 1, + ACTIONS(6886), 1, sym__backtick_open, - ACTIONS(6887), 1, + ACTIONS(6888), 1, sym__dollar_literal, - ACTIONS(6889), 1, + ACTIONS(6890), 1, sym__brace_expr_start, - STATE(2412), 1, + ACTIONS(6950), 1, + anon_sym_RBRACK, + STATE(2390), 1, sym_string, - STATE(3591), 1, + STATE(3575), 1, sym__word_part, - ACTIONS(6883), 2, + ACTIONS(6884), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2405), 2, - sym_simple_expansion, - sym_expansion, - STATE(2430), 2, + STATE(2367), 2, sym_brace_expression, sym__expression, - ACTIONS(6869), 3, + STATE(2402), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6870), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(6899), 3, + ACTIONS(6948), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_BANG_EQ, - STATE(1728), 3, + STATE(1848), 3, sym__word_like, sym_concatenation, aux_sym_test_command_repeat1, - ACTIONS(6897), 5, + ACTIONS(6946), 5, anon_sym_BANG, anon_sym_EQ, anon_sym_EQ_EQ, anon_sym_DASHa, anon_sym_DASHo, - STATE(2421), 5, + STATE(2395), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [117709] = 3, - ACTIONS(2007), 1, + [120324] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 12, + ACTIONS(6613), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151320,9 +154441,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 27, + ACTIONS(6615), 30, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -151348,10 +154472,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117756] = 3, - ACTIONS(2007), 1, + [120371] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6617), 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6619), 30, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__backtick_close, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [120418] = 7, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6441), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6714), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_do, + ACTIONS(6716), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6712), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(6719), 9, + sym__file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6447), 14, + sym__assignment_name, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [120473] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 10, + ACTIONS(6601), 10, anon_sym_AMP, anon_sym_PIPE, anon_sym_do, @@ -151362,8 +154578,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 29, - sym__concat, + ACTIONS(6603), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -151392,13 +154608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117803] = 3, - ACTIONS(2007), 1, + [120520] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 10, + ACTIONS(6605), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151406,8 +154622,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 29, - sym__concat, + ACTIONS(6607), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -151436,12 +154652,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117850] = 3, - ACTIONS(2007), 1, + [120567] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 9, + ACTIONS(6609), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151449,12 +154666,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 30, - sym__concat, + ACTIONS(6611), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -151480,12 +154696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117897] = 3, - ACTIONS(2007), 1, + [120614] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 9, + ACTIONS(6691), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151493,12 +154710,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 30, - sym__concat, + ACTIONS(6693), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -151524,12 +154740,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117944] = 3, - ACTIONS(2007), 1, + [120661] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 9, + ACTIONS(6613), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151537,12 +154754,99 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 30, - sym__concat, + ACTIONS(6615), 29, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [120708] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6617), 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_do, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6619), 29, + sym__heredoc_newline, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [120755] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6695), 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_do, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -151568,15 +154872,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117991] = 3, - ACTIONS(2007), 1, + [120802] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 12, + ACTIONS(6699), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151584,7 +154886,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 27, + ACTIONS(6701), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -151612,10 +154916,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118038] = 3, - ACTIONS(2007), 1, + [120849] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 10, + ACTIONS(6703), 10, anon_sym_AMP, anon_sym_PIPE, anon_sym_do, @@ -151626,8 +154930,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 29, - sym__concat, + ACTIONS(6705), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -151656,12 +154960,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118085] = 3, - ACTIONS(2007), 1, + [120896] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 9, + ACTIONS(6703), 10, anon_sym_AMP, anon_sym_PIPE, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151669,12 +154974,11 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 30, - sym__concat, + ACTIONS(6705), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -151700,32 +155004,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118132] = 3, - ACTIONS(2007), 1, + [120943] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 10, + ACTIONS(6714), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + ACTIONS(6441), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6716), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(6712), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + ACTIONS(6719), 9, + sym__file_descriptor, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -151734,6 +155037,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, + ACTIONS(6447), 14, + sym__assignment_name, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -151744,57 +155052,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118179] = 3, - ACTIONS(2007), 1, + [120998] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 12, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6525), 1, + anon_sym_RBRACK, + ACTIONS(6860), 1, sym_word, + ACTIONS(6868), 1, + aux_sym_brace_expression_token1, + ACTIONS(6872), 1, anon_sym_DOLLAR, + ACTIONS(6874), 1, + anon_sym_DQUOTE, + ACTIONS(6876), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 27, - sym__file_descriptor, + ACTIONS(6880), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6882), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6886), 1, sym__backtick_open, + ACTIONS(6888), 1, sym__dollar_literal, + ACTIONS(6890), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + STATE(2390), 1, + sym_string, + STATE(3575), 1, + sym__word_part, + ACTIONS(6884), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2367), 2, + sym_brace_expression, + sym__expression, + STATE(2402), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6870), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [118226] = 3, - ACTIONS(2007), 1, + ACTIONS(6894), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + STATE(1827), 3, + sym__word_like, + sym_concatenation, + aux_sym_test_command_repeat1, + ACTIONS(6892), 5, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + STATE(2395), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [121085] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 10, + ACTIONS(6617), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151802,8 +155130,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 29, - sym__concat, + ACTIONS(6619), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -151832,13 +155160,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118273] = 3, - ACTIONS(2007), 1, + [121132] = 23, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6860), 1, + sym_word, + ACTIONS(6868), 1, + aux_sym_brace_expression_token1, + ACTIONS(6872), 1, + anon_sym_DOLLAR, + ACTIONS(6874), 1, + anon_sym_DQUOTE, + ACTIONS(6876), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6878), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6880), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6882), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6886), 1, + sym__backtick_open, + ACTIONS(6888), 1, + sym__dollar_literal, + ACTIONS(6890), 1, + sym__brace_expr_start, + ACTIONS(6956), 1, + anon_sym_RBRACK, + STATE(2390), 1, + sym_string, + STATE(3575), 1, + sym__word_part, + ACTIONS(6884), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2367), 2, + sym_brace_expression, + sym__expression, + STATE(2402), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6870), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(6954), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + STATE(1852), 3, + sym__word_like, + sym_concatenation, + aux_sym_test_command_repeat1, + ACTIONS(6952), 5, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + STATE(2395), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [121219] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 10, + ACTIONS(6601), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151846,11 +155237,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 29, - sym__concat, + ACTIONS(6603), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -151876,76 +155268,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118320] = 3, - ACTIONS(2007), 1, + [121266] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 12, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6625), 1, + anon_sym_RBRACK, + ACTIONS(6860), 1, sym_word, + ACTIONS(6868), 1, + aux_sym_brace_expression_token1, + ACTIONS(6872), 1, anon_sym_DOLLAR, + ACTIONS(6874), 1, + anon_sym_DQUOTE, + ACTIONS(6876), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 27, - sym__file_descriptor, + ACTIONS(6880), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6882), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6886), 1, sym__backtick_open, + ACTIONS(6888), 1, sym__dollar_literal, + ACTIONS(6890), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + STATE(2390), 1, + sym_string, + STATE(3575), 1, + sym__word_part, + ACTIONS(6884), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2367), 2, + sym_brace_expression, + sym__expression, + STATE(2402), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6870), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [118367] = 3, - ACTIONS(2007), 1, + ACTIONS(6894), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + STATE(1827), 3, + sym__word_like, + sym_concatenation, + aux_sym_test_command_repeat1, + ACTIONS(6892), 5, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + STATE(2395), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [121353] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 10, + ACTIONS(6441), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6714), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + anon_sym_done, + ACTIONS(6716), 4, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(6712), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + ACTIONS(6719), 9, + sym__file_descriptor, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -151954,6 +155365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, + ACTIONS(6447), 14, + sym__assignment_name, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -151964,15 +155380,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118414] = 3, - ACTIONS(2007), 1, + [121408] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 12, + ACTIONS(6695), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -151980,7 +155394,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 27, + ACTIONS(6697), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -152008,15 +155424,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118461] = 3, - ACTIONS(2007), 1, + [121455] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 12, + ACTIONS(6609), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, anon_sym_fi, - anon_sym_LBRACE_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -152024,7 +155438,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 27, + ACTIONS(6611), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -152052,13 +155468,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118508] = 3, - ACTIONS(2007), 1, + [121502] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 10, + ACTIONS(6605), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -152066,8 +155482,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 29, - sym__concat, + ACTIONS(6607), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -152096,13 +155512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118555] = 3, - ACTIONS(2007), 1, + [121549] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 10, + ACTIONS(6695), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -152110,11 +155525,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 29, - sym__concat, + ACTIONS(6697), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -152140,13 +155556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118602] = 3, - ACTIONS(2007), 1, + [121596] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 10, + ACTIONS(6601), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -152154,8 +155570,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 29, - sym__concat, + ACTIONS(6603), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -152184,15 +155600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118649] = 3, - ACTIONS(2007), 1, + [121643] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 12, + ACTIONS(6605), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -152200,7 +155614,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 27, + ACTIONS(6607), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -152228,15 +155644,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118696] = 3, - ACTIONS(2007), 1, + [121690] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 12, + ACTIONS(6609), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -152244,7 +155658,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 27, + ACTIONS(6611), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -152272,59 +155688,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118743] = 3, - ACTIONS(2007), 1, + [121737] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6860), 1, sym_word, + ACTIONS(6868), 1, + aux_sym_brace_expression_token1, + ACTIONS(6872), 1, anon_sym_DOLLAR, + ACTIONS(6874), 1, + anon_sym_DQUOTE, + ACTIONS(6876), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6880), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6882), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6886), 1, sym__backtick_open, + ACTIONS(6888), 1, sym__dollar_literal, + ACTIONS(6890), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(6962), 1, + anon_sym_RBRACK, + STATE(2390), 1, + sym_string, + STATE(3575), 1, + sym__word_part, + ACTIONS(6884), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2367), 2, + sym_brace_expression, + sym__expression, + STATE(2402), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6870), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [118790] = 3, - ACTIONS(2007), 1, + ACTIONS(6960), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + STATE(1864), 3, + sym__word_like, + sym_concatenation, + aux_sym_test_command_repeat1, + ACTIONS(6958), 5, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + STATE(2395), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [121824] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 12, + ACTIONS(6613), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BANG, - anon_sym_fi, - anon_sym_LBRACE_RBRACE, + anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -152332,7 +155766,9 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 27, + ACTIONS(6615), 29, + sym__heredoc_newline, + sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, @@ -152360,10 +155796,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118837] = 3, - ACTIONS(2007), 1, + [121871] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 10, + ACTIONS(6617), 10, anon_sym_AMP, anon_sym_PIPE, anon_sym_done, @@ -152374,8 +155810,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 29, - sym__concat, + ACTIONS(6619), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -152404,57 +155840,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118884] = 3, - ACTIONS(2007), 1, + [121918] = 23, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6627), 1, + anon_sym_RBRACK, + ACTIONS(6860), 1, sym_word, + ACTIONS(6868), 1, + aux_sym_brace_expression_token1, + ACTIONS(6872), 1, anon_sym_DOLLAR, + ACTIONS(6874), 1, + anon_sym_DQUOTE, + ACTIONS(6876), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6878), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6880), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6882), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6886), 1, sym__backtick_open, + ACTIONS(6888), 1, sym__dollar_literal, + ACTIONS(6890), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + STATE(2390), 1, + sym_string, + STATE(3575), 1, + sym__word_part, + ACTIONS(6884), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2367), 2, + sym_brace_expression, + sym__expression, + STATE(2402), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(6870), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [118931] = 3, - ACTIONS(2007), 1, + ACTIONS(6894), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + STATE(1827), 3, + sym__word_like, + sym_concatenation, + aux_sym_test_command_repeat1, + ACTIONS(6892), 5, + anon_sym_BANG, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + STATE(2395), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [122005] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 10, + ACTIONS(6699), 9, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -152462,11 +155917,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 29, - sym__concat, + ACTIONS(6701), 30, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, + sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, anon_sym_LF, @@ -152492,13 +155948,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118978] = 3, - ACTIONS(2007), 1, + [122052] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 10, + ACTIONS(6601), 10, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -152506,8 +155962,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 29, - sym__concat, + ACTIONS(6603), 29, + sym__heredoc_newline, sym__assignment_name, sym__file_descriptor, sym__backtick_open, @@ -152536,40 +155992,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119025] = 3, - ACTIONS(2007), 1, + [122099] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6175), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, + ACTIONS(6189), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 29, + ACTIONS(6187), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -152580,40 +156035,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119072] = 3, - ACTIONS(2007), 1, + [122145] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5980), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6340), 20, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -152624,40 +156079,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119119] = 3, - ACTIONS(2007), 1, + [122193] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6030), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, + ACTIONS(5951), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 29, + ACTIONS(5949), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -152668,40 +156122,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119166] = 3, - ACTIONS(2007), 1, + [122239] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6046), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, + ACTIONS(6322), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 29, + ACTIONS(6320), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -152712,40 +156165,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119213] = 3, - ACTIONS(2007), 1, + [122285] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6066), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, + ACTIONS(5969), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 29, + ACTIONS(5967), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -152756,40 +156208,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119260] = 3, - ACTIONS(2007), 1, + [122331] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, + ACTIONS(6019), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 29, + ACTIONS(6017), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -152800,40 +156251,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119307] = 3, - ACTIONS(2007), 1, + [122377] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5832), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, + ACTIONS(6489), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 29, + ACTIONS(6491), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -152844,40 +156294,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119354] = 3, - ACTIONS(2007), 1, + [122423] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, + ACTIONS(6143), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 29, + ACTIONS(6141), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -152888,40 +156337,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119401] = 3, - ACTIONS(2007), 1, + [122469] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, + ACTIONS(6183), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 29, + ACTIONS(6181), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -152932,40 +156380,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119448] = 3, - ACTIONS(2007), 1, + [122515] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, + ACTIONS(6244), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 29, + ACTIONS(6242), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -152976,40 +156423,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119495] = 3, - ACTIONS(2007), 1, + [122561] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, + ACTIONS(6260), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 29, + ACTIONS(6258), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153020,40 +156466,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119542] = 3, - ACTIONS(2007), 1, + [122607] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6485), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 29, + ACTIONS(6487), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153064,40 +156509,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119589] = 3, - ACTIONS(2007), 1, + [122653] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5868), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6302), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 29, + ACTIONS(6300), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153108,40 +156552,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119636] = 3, - ACTIONS(2007), 1, + [122699] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5988), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6964), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6967), 20, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153152,40 +156596,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119683] = 3, - ACTIONS(2007), 1, + [122747] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6000), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6270), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 29, + ACTIONS(6268), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153196,40 +156639,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119730] = 3, - ACTIONS(2007), 1, + [122793] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6177), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 29, + ACTIONS(6175), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153240,40 +156682,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119777] = 3, - ACTIONS(2007), 1, + [122839] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, + ACTIONS(6083), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 29, + ACTIONS(6081), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153284,40 +156725,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119824] = 3, - ACTIONS(2007), 1, + [122885] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6101), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 29, + ACTIONS(6099), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153328,40 +156768,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119871] = 3, - ACTIONS(2007), 1, + [122931] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5904), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6105), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 29, + ACTIONS(6103), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153372,40 +156811,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119918] = 3, - ACTIONS(2007), 1, + [122977] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6109), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 29, + ACTIONS(6107), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153416,40 +156854,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119965] = 3, - ACTIONS(2007), 1, + [123023] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6165), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6264), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 29, + ACTIONS(6262), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153460,40 +156897,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120012] = 3, - ACTIONS(2007), 1, + [123069] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6175), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6426), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 29, + ACTIONS(6428), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153504,40 +156940,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120059] = 3, - ACTIONS(2007), 1, + [123115] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5980), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6493), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, + sym_word, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6495), 21, + sym__concat, + sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153548,40 +156983,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120106] = 3, - ACTIONS(2007), 1, + [123161] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6030), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(5905), 17, + anon_sym_BANG, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 29, + ACTIONS(5903), 21, sym__concat, - sym__assignment_name, - sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -153592,456 +157026,698 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120153] = 3, - ACTIONS(2007), 1, + [123207] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(6972), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6976), 1, + anon_sym_esac, + ACTIONS(6978), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + STATE(2705), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3609), 1, + sym__case_item_last, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120200] = 3, - ACTIONS(2007), 1, + STATE(1918), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [123300] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, + ACTIONS(7002), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7004), 1, + anon_sym_esac, + STATE(1898), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3741), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1914), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [120247] = 3, - ACTIONS(2007), 1, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [123393] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, + ACTIONS(7006), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7008), 1, + anon_sym_esac, + STATE(1904), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3677), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1910), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [120294] = 3, - ACTIONS(2007), 1, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [123486] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, + ACTIONS(7010), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7012), 1, + anon_sym_esac, + STATE(1895), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3642), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1912), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [123579] = 27, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6970), 1, + sym_word, + ACTIONS(6972), 1, + anon_sym_LF, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + ACTIONS(7014), 1, + anon_sym_esac, + STATE(2705), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3831), 1, + sym__case_item_last, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120341] = 3, - ACTIONS(2007), 1, + STATE(1916), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [123672] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, + ACTIONS(7016), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7018), 1, + anon_sym_esac, + STATE(1907), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3713), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1909), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [120388] = 3, - ACTIONS(2007), 1, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [123765] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, + ACTIONS(7020), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7022), 1, + anon_sym_esac, + STATE(1902), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3601), 1, + sym__case_item_last, + STATE(3605), 1, + sym__case_patterns, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1915), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [120435] = 23, - ACTIONS(2007), 1, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [123858] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6292), 1, - anon_sym_RBRACK, - ACTIONS(6859), 1, + ACTIONS(6970), 1, sym_word, - ACTIONS(6867), 1, + ACTIONS(6972), 1, + anon_sym_LF, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, aux_sym_brace_expression_token1, - ACTIONS(6871), 1, + ACTIONS(6982), 1, anon_sym_DOLLAR, - ACTIONS(6873), 1, + ACTIONS(6984), 1, anon_sym_DQUOTE, - ACTIONS(6875), 1, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6877), 1, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6879), 1, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6881), 1, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6885), 1, + ACTIONS(6996), 1, sym__backtick_open, - ACTIONS(6887), 1, + ACTIONS(6998), 1, sym__dollar_literal, - ACTIONS(6889), 1, + ACTIONS(7000), 1, sym__brace_expr_start, - STATE(2412), 1, + ACTIONS(7008), 1, + anon_sym_esac, + STATE(2705), 1, + aux_sym_program_repeat1, + STATE(3352), 1, sym_string, - STATE(3591), 1, + STATE(3520), 1, sym__word_part, - ACTIONS(6883), 2, + STATE(3605), 1, + sym__case_patterns, + STATE(3659), 1, + sym__case_item_last, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2405), 2, + STATE(1910), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, sym_simple_expansion, sym_expansion, - STATE(2430), 2, + STATE(3351), 2, sym_brace_expression, sym__expression, - ACTIONS(6869), 3, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, sym_raw_string, sym_ansi_c_string, - ACTIONS(6899), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - STATE(1728), 3, - sym__word_like, - sym_concatenation, - aux_sym_test_command_repeat1, - ACTIONS(6897), 5, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - STATE(2421), 5, + STATE(3342), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [120522] = 3, - ACTIONS(2007), 1, + [123951] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6477), 12, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6479), 27, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, + ACTIONS(7024), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7026), 1, + anon_sym_esac, + STATE(1900), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3817), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1911), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [120569] = 3, - ACTIONS(2007), 1, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [124044] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6481), 12, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6483), 27, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(6972), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + ACTIONS(7028), 1, + anon_sym_esac, + STATE(2705), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3910), 1, + sym__case_item_last, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120616] = 3, - ACTIONS(2007), 1, + STATE(1913), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [124137] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6487), 12, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7030), 17, anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_COMMA, sym_word, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6489), 27, - sym__file_descriptor, + ACTIONS(7032), 20, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_POUND, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -154052,562 +157728,1346 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120663] = 3, - ACTIONS(2007), 1, + [124182] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6477), 12, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6479), 27, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(6972), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + ACTIONS(7012), 1, + anon_sym_esac, + STATE(2705), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3623), 1, + sym__case_item_last, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120710] = 3, - ACTIONS(2007), 1, + STATE(1912), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [124275] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6481), 12, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6483), 27, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, + ACTIONS(7034), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7036), 1, + anon_sym_esac, + STATE(1905), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3731), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1917), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [120757] = 3, - ACTIONS(2007), 1, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [124368] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6487), 12, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_do, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6972), 1, + anon_sym_LF, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6489), 27, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7038), 1, + anon_sym_esac, + STATE(2705), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3884), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1908), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [124461] = 27, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6970), 1, + sym_word, + ACTIONS(6972), 1, + anon_sym_LF, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + ACTIONS(7040), 1, + anon_sym_esac, + STATE(2705), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3843), 1, + sym__case_item_last, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120804] = 3, - ACTIONS(2007), 1, + STATE(1919), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [124554] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, + ACTIONS(7040), 1, + anon_sym_esac, + ACTIONS(7042), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + STATE(1891), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3882), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1919), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [120851] = 3, - ACTIONS(2007), 1, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [124647] = 27, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6972), 1, + anon_sym_LF, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7026), 1, + anon_sym_esac, + STATE(2705), 1, + aux_sym_program_repeat1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3699), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1911), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [124740] = 25, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6970), 1, + sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + ACTIONS(7044), 1, + anon_sym_esac, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3612), 1, + sym__case_item_last, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120898] = 3, - ACTIONS(2007), 1, + STATE(1924), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [124827] = 25, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7026), 1, + anon_sym_esac, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3803), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1924), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [120945] = 4, - ACTIONS(2007), 1, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [124914] = 25, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 28, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7038), 1, + anon_sym_esac, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3847), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1924), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [125001] = 25, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6970), 1, + sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + ACTIONS(7028), 1, + anon_sym_esac, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3759), 1, + sym__case_item_last, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120994] = 4, - ACTIONS(2007), 1, + STATE(1924), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [125088] = 25, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6979), 1, - sym_heredoc_end, - ACTIONS(6258), 9, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 29, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, - sym__backtick_close, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7014), 1, + anon_sym_esac, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3800), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1924), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [125175] = 25, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6970), 1, + sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + ACTIONS(7046), 1, + anon_sym_esac, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3577), 1, + sym__case_item_last, + STATE(3605), 1, + sym__case_patterns, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121043] = 3, - ACTIONS(2007), 1, + STATE(1924), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [125262] = 25, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7008), 1, + anon_sym_esac, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3671), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1924), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [125349] = 25, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6970), 1, + sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + ACTIONS(7012), 1, + anon_sym_esac, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3625), 1, + sym__case_item_last, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121090] = 3, - ACTIONS(2007), 1, + STATE(1924), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [125436] = 25, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7048), 1, + anon_sym_esac, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3835), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1924), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [125523] = 25, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6970), 1, + sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + ACTIONS(7040), 1, + anon_sym_esac, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3868), 1, + sym__case_item_last, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121137] = 3, - ACTIONS(2007), 1, + STATE(1924), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [125610] = 25, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(6970), 1, sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, sym__backtick_open, + ACTIONS(6998), 1, sym__dollar_literal, + ACTIONS(7000), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7050), 1, + anon_sym_esac, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3605), 1, + sym__case_patterns, + STATE(3616), 1, + sym__case_item_last, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1924), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [125697] = 25, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6970), 1, + sym_word, + ACTIONS(6974), 1, + anon_sym_LPAREN, + ACTIONS(6976), 1, + anon_sym_esac, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3596), 1, + sym__case_item_last, + STATE(3605), 1, + sym__case_patterns, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121184] = 3, - ACTIONS(2007), 1, + STATE(1924), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [125784] = 22, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(7052), 1, sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, anon_sym_DOLLAR, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(7068), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, + STATE(2703), 1, + sym_string, + STATE(3224), 1, + sym__terminator, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7054), 3, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + anon_sym_AMP, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + STATE(1929), 3, + sym__word_like, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [125864] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + STATE(2703), 1, + sym_string, + STATE(3222), 1, + sym__terminator, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121231] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6066), 10, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7080), 3, + anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + STATE(1929), 3, + sym__word_like, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [125944] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, anon_sym_DOLLAR, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(7068), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, + STATE(2703), 1, + sym_string, + STATE(3211), 1, + sym__terminator, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7082), 3, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + anon_sym_AMP, + STATE(1929), 3, + sym__word_like, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [126024] = 11, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7092), 1, + anon_sym_LT_LT, + ACTIONS(7095), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7100), 1, + sym__assignment_name, + ACTIONS(7103), 1, + sym__file_descriptor, + STATE(2106), 1, + sym_heredoc_redirect, + ACTIONS(7084), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7086), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + STATE(1923), 3, + sym_variable_assignment, + sym_redirect, + aux_sym_command_repeat1, + ACTIONS(7089), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154615,7 +159075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(7098), 13, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -154626,76 +159089,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121278] = 3, - ACTIONS(2007), 1, + [126082] = 24, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(7106), 1, sym_word, + ACTIONS(7109), 1, + anon_sym_LPAREN, + ACTIONS(7112), 1, + anon_sym_esac, + ACTIONS(7114), 1, + aux_sym_brace_expression_token1, + ACTIONS(7120), 1, anon_sym_DOLLAR, + ACTIONS(7123), 1, + anon_sym_DQUOTE, + ACTIONS(7126), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(7132), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7135), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7141), 1, sym__backtick_open, + ACTIONS(7144), 1, sym__dollar_literal, + ACTIONS(7147), 1, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + STATE(3818), 1, + sym__case_patterns, + ACTIONS(7138), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1924), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(7117), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [126166] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + STATE(2703), 1, + sym_string, + STATE(3245), 1, + sym__terminator, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121325] = 3, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7150), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP, + STATE(1929), 3, + sym__word_like, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [126246] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 10, + ACTIONS(6300), 1, + sym__concat, + ACTIONS(7164), 1, + anon_sym_LT_LT, + ACTIONS(7167), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7170), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7155), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1934), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7158), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(7161), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154703,43 +159238,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [121372] = 3, - ACTIONS(2007), 1, + ACTIONS(7152), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [126303] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 10, + ACTIONS(6300), 1, + sym__concat, + ACTIONS(7164), 1, + anon_sym_LT_LT, + ACTIONS(7167), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7170), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7176), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1941), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7158), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(7161), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154747,44 +159284,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [121419] = 4, - ACTIONS(2007), 1, + ACTIONS(7173), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [126360] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, + ACTIONS(6300), 1, sym__concat, - ACTIONS(6221), 10, + ACTIONS(7164), 1, + anon_sym_LT_LT, + ACTIONS(7167), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7170), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7182), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1943), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7158), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(7161), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154792,43 +159330,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(7179), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [126417] = 21, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7185), 1, + sym_word, + ACTIONS(7190), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7196), 1, + anon_sym_DOLLAR, + ACTIONS(7199), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7202), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7205), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7208), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7211), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7217), 1, + sym__backtick_open, + ACTIONS(7220), 1, + sym__dollar_literal, + ACTIONS(7223), 1, + sym__brace_expr_start, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121468] = 3, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7188), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(7193), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1929), 3, + sym__word_like, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [126494] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7228), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + STATE(2010), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154836,43 +159430,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(7226), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [126548] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7230), 1, + anon_sym_LF, + ACTIONS(7232), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121515] = 3, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1933), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [126626] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7236), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1975), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154880,87 +159530,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(7234), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [126680] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [121562] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6235), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_fi, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, + ACTIONS(7238), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7240), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [121609] = 3, - ACTIONS(2007), 1, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [126758] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7244), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154968,43 +159630,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [121656] = 3, - ACTIONS(2007), 1, + ACTIONS(7242), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [126812] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7248), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155012,43 +159674,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [121703] = 3, - ACTIONS(2007), 1, + ACTIONS(7246), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [126866] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7252), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 29, - sym__concat, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155056,44 +159718,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [121750] = 4, - ACTIONS(2007), 1, + ACTIONS(7250), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [126920] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6981), 1, - sym_heredoc_end, - ACTIONS(6252), 10, + STATE(2168), 1, + sym_heredoc_redirect, + STATE(1949), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7256), 6, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, - sym__assignment_name, + ACTIONS(7254), 23, + sym__heredoc_newline, sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155102,42 +159772,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [121799] = 3, - ACTIONS(2007), 1, + [126964] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 10, + STATE(2168), 1, + sym_heredoc_redirect, + STATE(1950), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7260), 6, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 29, - sym__concat, - sym__assignment_name, + ACTIONS(7258), 23, + sym__heredoc_newline, sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155146,85 +159811,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, + [127008] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7262), 1, + anon_sym_LF, + ACTIONS(7264), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121846] = 3, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1940), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [127086] = 22, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 12, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BANG, - anon_sym_done, - anon_sym_LBRACE_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(7052), 1, sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, anon_sym_DOLLAR, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 27, - sym__file_descriptor, + ACTIONS(7068), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, + ACTIONS(7238), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7266), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [121893] = 3, - ACTIONS(2007), 1, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [127164] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6626), 9, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7270), 2, anon_sym_AMP, anon_sym_PIPE, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6628), 29, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__backtick_close, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155232,42 +159952,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(7268), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [127218] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7272), 1, + anon_sym_LF, + ACTIONS(7274), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121939] = 3, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1944), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [127296] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7278), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155275,171 +160052,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [121985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6030), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - sym_word, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 21, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(7276), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [127350] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6046), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - sym_word, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 21, - sym__concat, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + ACTIONS(7238), 1, + anon_sym_LF, + ACTIONS(7280), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, - aux_sym_brace_expression_token1, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122077] = 3, - ACTIONS(3), 1, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [127428] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 17, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7284), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1976), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - sym_word, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 21, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7282), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122123] = 3, - ACTIONS(2007), 1, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [127482] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7288), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7286), 14, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [127536] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7288), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1977), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155447,42 +160240,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(7286), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [127590] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7290), 1, + anon_sym_LF, + ACTIONS(7292), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122169] = 3, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1951), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [127668] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 10, + STATE(2168), 1, + sym_heredoc_redirect, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7296), 6, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, - sym__assignment_name, + ACTIONS(7294), 23, + sym__heredoc_newline, sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155491,41 +160350,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122215] = 3, - ACTIONS(2007), 1, + [127712] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 10, + STATE(2168), 1, + sym_heredoc_redirect, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7300), 6, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 28, - sym__assignment_name, + ACTIONS(7298), 23, + sym__heredoc_newline, sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155534,212 +160389,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, + [127756] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122261] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5838), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - sym_word, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 21, - sym__concat, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + ACTIONS(7238), 1, + anon_sym_LF, + ACTIONS(7302), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, - aux_sym_brace_expression_token1, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122307] = 3, - ACTIONS(3), 1, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [127834] = 22, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(7052), 1, sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 21, - sym__concat, + ACTIONS(7068), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + ACTIONS(7304), 1, + anon_sym_LF, + ACTIONS(7306), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, - aux_sym_brace_expression_token1, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122353] = 3, - ACTIONS(2007), 1, + STATE(1953), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [127912] = 22, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(7052), 1, sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, anon_sym_DOLLAR, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 28, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(7068), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, + ACTIONS(7238), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7308), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122399] = 3, - ACTIONS(3), 1, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [127990] = 22, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(7052), 1, sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 21, - sym__concat, + ACTIONS(7068), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + ACTIONS(7310), 1, + anon_sym_LF, + ACTIONS(7312), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, - aux_sym_brace_expression_token1, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122445] = 7, - ACTIONS(2007), 1, + STATE(1956), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [128068] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6267), 3, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6636), 3, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7252), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, - ACTIONS(6638), 4, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6634), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(6641), 9, - sym__file_descriptor, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155747,47 +160642,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(6273), 14, - sym__assignment_name, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(7250), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [128122] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7238), 1, + anon_sym_LF, + ACTIONS(7314), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122499] = 3, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [128200] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7318), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155795,42 +160742,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122545] = 3, - ACTIONS(2007), 1, + ACTIONS(7316), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [128254] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7322), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155838,42 +160786,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122591] = 3, - ACTIONS(2007), 1, + ACTIONS(7320), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [128308] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7326), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155881,42 +160830,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122637] = 3, - ACTIONS(2007), 1, + ACTIONS(7324), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [128362] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7248), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155924,42 +160874,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122683] = 3, - ACTIONS(2007), 1, + ACTIONS(7246), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [128416] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6626), 10, + ACTIONS(7338), 1, + anon_sym_LT_LT, + ACTIONS(7341), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7344), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7330), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7332), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6628), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(7335), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155967,86 +160918,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(7328), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [128470] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7347), 1, + anon_sym_LF, + ACTIONS(7349), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122729] = 4, - ACTIONS(3), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1968), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [128548] = 22, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6983), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(7052), 1, sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6986), 20, + ACTIONS(7068), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + ACTIONS(7238), 1, + anon_sym_LF, + ACTIONS(7351), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, - aux_sym_brace_expression_token1, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122777] = 3, - ACTIONS(2007), 1, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [128626] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7355), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1955), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156054,42 +161074,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122823] = 3, - ACTIONS(2007), 1, + ACTIONS(7353), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [128680] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7296), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156097,42 +161118,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122869] = 3, - ACTIONS(2007), 1, + ACTIONS(7294), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [128734] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7300), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156140,41 +161162,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122915] = 7, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6267), 3, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6636), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, - ACTIONS(6638), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6634), 5, + ACTIONS(7298), 14, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(6641), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [128788] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7359), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1987), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156182,47 +161206,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(6273), 14, - sym__assignment_name, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(7357), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [128842] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7238), 1, + anon_sym_LF, + ACTIONS(7361), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122969] = 3, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [128920] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7365), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1992), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156230,42 +161306,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123015] = 3, - ACTIONS(2007), 1, + ACTIONS(7363), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [128974] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6663), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7369), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + STATE(1971), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6665), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156273,42 +161350,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123061] = 3, - ACTIONS(2007), 1, + ACTIONS(7367), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [129028] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6663), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7373), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6665), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156316,24 +161394,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123107] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6559), 10, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7371), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [129082] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7375), 1, + sym__concat, + STATE(1972), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -156341,17 +161424,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 28, + ACTIONS(6428), 23, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156370,31 +161448,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123153] = 3, - ACTIONS(2007), 1, + [129126] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6670), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7380), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + STATE(2006), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6672), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156402,42 +161477,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123199] = 3, - ACTIONS(2007), 1, + ACTIONS(7378), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [129180] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7384), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156445,42 +161521,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123245] = 3, - ACTIONS(2007), 1, + ACTIONS(7382), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [129234] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 9, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7388), 2, anon_sym_AMP, anon_sym_PIPE, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 29, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__backtick_close, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156488,42 +161565,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123291] = 3, - ACTIONS(2007), 1, + ACTIONS(7386), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [129288] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 9, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7392), 2, anon_sym_AMP, anon_sym_PIPE, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 29, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__backtick_close, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156531,42 +161609,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123337] = 3, - ACTIONS(2007), 1, + ACTIONS(7390), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [129342] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6663), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7396), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6665), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156574,42 +161653,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123383] = 3, - ACTIONS(2007), 1, + ACTIONS(7394), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [129396] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6670), 9, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7400), 2, anon_sym_AMP, anon_sym_PIPE, + STATE(1957), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6672), 29, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__backtick_close, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156617,85 +161697,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(7398), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [129450] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7402), 1, + anon_sym_LF, + ACTIONS(7404), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123429] = 3, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1980), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [129528] = 22, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(7052), 1, sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, anon_sym_DOLLAR, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 28, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(7068), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, + ACTIONS(7238), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7406), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123475] = 3, - ACTIONS(2007), 1, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [129606] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6618), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7410), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + STATE(2014), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6620), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156703,42 +161853,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123521] = 3, - ACTIONS(2007), 1, + ACTIONS(7408), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [129660] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6618), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7414), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6620), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156746,85 +161897,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(7412), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [129714] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7416), 1, + anon_sym_LF, + ACTIONS(7418), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123567] = 3, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1963), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [129792] = 22, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6626), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, + ACTIONS(7052), 1, sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, anon_sym_DOLLAR, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6628), 28, - sym__assignment_name, - sym__file_descriptor, + ACTIONS(7068), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, + ACTIONS(7420), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, + ACTIONS(7422), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123613] = 3, - ACTIONS(2007), 1, + STATE(1986), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [129870] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7426), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + STATE(1974), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156832,42 +162053,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(7424), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [129924] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7238), 1, + anon_sym_LF, + ACTIONS(7428), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123659] = 3, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [130002] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6663), 9, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7432), 2, anon_sym_AMP, anon_sym_PIPE, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6665), 29, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__backtick_close, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156875,42 +162153,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123705] = 3, - ACTIONS(2007), 1, + ACTIONS(7430), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [130056] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6626), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7436), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(2013), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6628), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156918,42 +162197,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123751] = 3, - ACTIONS(2007), 1, + ACTIONS(7434), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [130110] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6670), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7440), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6672), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -156961,42 +162241,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123797] = 3, - ACTIONS(2007), 1, + ACTIONS(7438), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [130164] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 9, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7444), 2, anon_sym_AMP, anon_sym_PIPE, + STATE(2018), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6561), 29, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__backtick_close, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157004,42 +162285,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123843] = 3, - ACTIONS(2007), 1, + ACTIONS(7442), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [130218] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7448), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + STATE(2019), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157047,42 +162329,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123889] = 3, - ACTIONS(2007), 1, + ACTIONS(7446), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [130272] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6663), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7452), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6665), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7450), 14, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [130326] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7456), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(2023), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157090,42 +162417,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(7454), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [130380] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7458), 1, + anon_sym_LF, + ACTIONS(7460), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123935] = 3, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1996), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [130458] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6670), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7452), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, + STATE(2025), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6672), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157133,129 +162517,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [123981] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - sym_word, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 20, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(7450), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [130512] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - sym_word, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 21, - sym__concat, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + ACTIONS(7238), 1, + anon_sym_LF, + ACTIONS(7462), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, - aux_sym_brace_expression_token1, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124075] = 3, - ACTIONS(2007), 1, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [130590] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6626), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7256), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + STATE(1965), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6628), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7254), 14, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [130644] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7260), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1966), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157263,85 +162661,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(7258), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [130698] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6235), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - sym_word, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 21, - sym__concat, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + ACTIONS(7464), 1, + anon_sym_LF, + ACTIONS(7466), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, - aux_sym_brace_expression_token1, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124167] = 3, - ACTIONS(2007), 1, + STATE(2003), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [130776] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7470), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_then, + STATE(1934), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7468), 14, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [130830] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7474), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157349,84 +162805,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(7472), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [130884] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7476), 1, + anon_sym_LF, + ACTIONS(7478), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124213] = 3, - ACTIONS(3), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2004), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [130962] = 22, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(7052), 1, sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 21, - sym__concat, + ACTIONS(7068), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + ACTIONS(7238), 1, + anon_sym_LF, + ACTIONS(7480), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, - aux_sym_brace_expression_token1, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [131040] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7238), 1, + anon_sym_LF, + ACTIONS(7482), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124259] = 7, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [131118] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6267), 3, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6636), 3, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7486), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, - ACTIONS(6638), 4, + STATE(1941), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6634), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(6641), 9, - sym__file_descriptor, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157434,47 +163017,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(6273), 14, - sym__assignment_name, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124313] = 3, - ACTIONS(2007), 1, + ACTIONS(7484), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [131172] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7490), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 28, - sym__assignment_name, - sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157482,128 +163061,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124359] = 3, - ACTIONS(3), 1, + ACTIONS(7488), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [131226] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 17, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7494), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1982), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - sym_word, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 21, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7492), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [131280] = 22, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7052), 1, + sym_word, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7076), 1, + sym__dollar_literal, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7496), 1, + anon_sym_LF, + ACTIONS(7498), 1, + anon_sym_RPAREN, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124405] = 3, - ACTIONS(3), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2009), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [131358] = 22, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(7052), 1, sym_word, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 21, - sym__concat, + ACTIONS(7068), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, sym__backtick_open, + ACTIONS(7076), 1, sym__dollar_literal, + ACTIONS(7078), 1, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + ACTIONS(7238), 1, + anon_sym_LF, + ACTIONS(7500), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, - aux_sym_brace_expression_token1, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, sym_number, - anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124451] = 3, - ACTIONS(2007), 1, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [131436] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6618), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7248), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_done, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7246), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [131490] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6620), 28, - sym__assignment_name, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7504), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7502), 14, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [131544] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7508), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157611,84 +163349,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124497] = 3, - ACTIONS(3), 1, + ACTIONS(7506), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [131598] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 17, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7512), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - sym_word, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 21, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7510), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [131652] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7516), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7514), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124543] = 7, - ACTIONS(2007), 1, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [131706] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6267), 3, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6636), 3, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7520), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_fi, - ACTIONS(6638), 4, + STATE(2021), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6634), 5, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7518), 14, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(6641), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [131760] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7524), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1989), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157696,90 +163525,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(6273), 14, - sym__assignment_name, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124597] = 3, - ACTIONS(3), 1, + ACTIONS(7522), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [131814] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 17, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7528), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(2011), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, - sym_word, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 21, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7526), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [131868] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7532), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LPAREN, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7530), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_POUND, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124643] = 3, - ACTIONS(2007), 1, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [131922] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7536), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_do, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7534), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [131976] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 28, - sym__assignment_name, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7540), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1959), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7538), 14, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [132030] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7544), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157787,42 +163745,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, + ACTIONS(7542), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [132084] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124689] = 3, - ACTIONS(2007), 1, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7369), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7367), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [132138] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6670), 10, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7548), 2, anon_sym_AMP, anon_sym_PIPE, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7546), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [132192] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7552), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1943), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7550), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [132246] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, anon_sym_LT_LT, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6672), 28, - sym__assignment_name, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, sym__file_descriptor, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7556), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7554), 14, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [132300] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7560), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1946), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157830,41 +163965,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, + ACTIONS(7558), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [132354] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, anon_sym_LT_LT_DASH, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124735] = 7, - ACTIONS(2007), 1, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7556), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(2022), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7554), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [132408] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6636), 2, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7228), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6267), 3, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6638), 4, + STATE(1935), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7226), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [132462] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, anon_sym_LT_LT, - ACTIONS(6634), 6, - sym__backtick_close, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7228), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1960), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7226), 14, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(6641), 9, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [132516] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, + anon_sym_LT_LT_DASH, + ACTIONS(3407), 1, sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7564), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1961), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -157872,55 +164141,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, + ACTIONS(7562), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [132570] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3383), 1, + anon_sym_LT_LT, + ACTIONS(3385), 1, anon_sym_LT_LT_DASH, - ACTIONS(6273), 14, - sym__assignment_name, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [124789] = 3, - ACTIONS(3), 1, + ACTIONS(3407), 1, + sym__file_descriptor, + STATE(2168), 1, + sym_heredoc_redirect, + ACTIONS(7355), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(1936), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(3379), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(3381), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7353), 14, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [132624] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 17, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(7566), 1, + sym__concat, + STATE(1972), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 7, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 21, - sym__concat, + ACTIONS(6435), 23, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -157931,56 +164239,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124835] = 3, - ACTIONS(3), 1, + [132668] = 22, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 17, - anon_sym_BANG, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(7568), 1, sym_word, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 21, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, + ACTIONS(7571), 1, + anon_sym_LF, + ACTIONS(7574), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, + ACTIONS(7576), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(7582), 1, + anon_sym_DOLLAR, + ACTIONS(7585), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7588), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7591), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7594), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7597), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7603), 1, + sym__backtick_open, + ACTIONS(7606), 1, + sym__dollar_literal, + ACTIONS(7609), 1, + sym__brace_expr_start, + STATE(2703), 1, + sym_string, + STATE(3509), 1, + sym__word_part, + ACTIONS(7600), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124881] = 3, - ACTIONS(2007), 1, + STATE(2700), 2, + sym_brace_expression, + sym__expression, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7579), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2033), 3, + sym__word_like, + sym_concatenation, + aux_sym_array_repeat1, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [132746] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6618), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(5905), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -157988,17 +164306,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6620), 28, + ACTIONS(5903), 24, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158017,13 +164331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124927] = 3, - ACTIONS(2007), 1, + [132785] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6019), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -158031,17 +164342,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 28, + ACTIONS(6017), 24, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158060,39 +164367,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124973] = 3, - ACTIONS(3), 1, + [132824] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 17, + ACTIONS(7612), 1, + sym__concat, + STATE(2036), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 11, anon_sym_BANG, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 21, + ACTIONS(6428), 18, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132867] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7615), 1, sym__concat, + STATE(2036), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6435), 18, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_BANG_EQ, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -158103,13 +164443,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125019] = 3, - ACTIONS(2007), 1, + [132910] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_then, + ACTIONS(7617), 1, + anon_sym_LF, + STATE(2063), 1, + aux_sym_program_repeat1, + ACTIONS(6644), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7619), 18, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132953] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6177), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -158117,17 +164492,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 28, + ACTIONS(6175), 24, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158146,12 +164517,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125065] = 3, - ACTIONS(2007), 1, + [132992] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 9, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -158159,18 +164530,12 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 29, + ACTIONS(6340), 23, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158189,13 +164554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125111] = 3, - ACTIONS(2007), 1, + [133033] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, + ACTIONS(6143), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -158203,17 +164565,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6545), 28, + ACTIONS(6141), 24, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158232,39 +164590,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125157] = 3, - ACTIONS(3), 1, + [133072] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 17, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(6183), 7, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 21, + ACTIONS(6181), 24, sym__concat, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -158275,12 +164626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125203] = 3, - ACTIONS(2007), 1, + [133111] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6618), 9, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6244), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -158288,18 +164637,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6620), 29, + ACTIONS(6242), 24, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158318,12 +164662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125249] = 3, - ACTIONS(2007), 1, + [133150] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 9, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6426), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -158331,18 +164673,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6260), 29, + ACTIONS(6428), 24, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158361,13 +164698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125295] = 3, - ACTIONS(2007), 1, + [133189] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, + ACTIONS(6260), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -158375,17 +164709,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6549), 28, + ACTIONS(6258), 24, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158404,12 +164734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125341] = 3, - ACTIONS(2007), 1, + [133228] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 9, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6189), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -158417,18 +164745,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 29, + ACTIONS(6187), 24, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158447,39 +164770,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125387] = 3, - ACTIONS(3), 1, + [133267] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 17, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(6270), 7, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 21, + ACTIONS(6268), 24, sym__concat, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -158490,39 +164806,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125433] = 3, - ACTIONS(3), 1, + [133306] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 17, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(6083), 7, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 21, + ACTIONS(6081), 24, sym__concat, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -158533,39 +164842,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125479] = 3, - ACTIONS(3), 1, + [133345] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 17, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(6101), 7, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 21, + ACTIONS(6099), 24, sym__concat, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -158576,13 +164878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125525] = 3, - ACTIONS(2007), 1, + [133384] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6105), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -158590,17 +164889,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 28, + ACTIONS(6103), 24, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158619,13 +164914,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125571] = 3, - ACTIONS(2007), 1, + [133423] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_done, + ACTIONS(6485), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -158633,17 +164925,13 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6553), 28, + ACTIONS(6487), 24, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158662,39 +164950,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125617] = 3, - ACTIONS(3), 1, + [133462] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 17, - anon_sym_BANG, - anon_sym_EQ, + ACTIONS(6264), 7, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 21, + ACTIONS(6262), 24, sym__concat, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -158705,31 +164986,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125663] = 3, - ACTIONS(2007), 1, + [133501] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 9, + ACTIONS(7621), 1, + sym__concat, + STATE(2056), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, + ACTIONS(6435), 23, + sym__heredoc_newline, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [133544] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6493), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6557), 29, + ACTIONS(6495), 24, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, - sym__backtick_close, sym__dollar_literal, sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158748,13 +165060,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125709] = 3, - ACTIONS(2007), 1, + [133583] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 10, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_do, + ACTIONS(6302), 7, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -158762,17 +165071,87 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6254), 28, + ACTIONS(6300), 24, + sym__concat, sym__assignment_name, sym__file_descriptor, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133622] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7623), 1, + sym__concat, + STATE(2056), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6428), 23, + sym__heredoc_newline, + sym__file_descriptor, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [133665] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6109), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6107), 24, + sym__concat, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158791,39 +165170,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125755] = 3, - ACTIONS(3), 1, + [133704] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 17, + ACTIONS(7628), 1, + anon_sym_LF, + STATE(2038), 1, + aux_sym_program_repeat1, + ACTIONS(7626), 11, anon_sym_BANG, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 21, - sym__concat, + ACTIONS(7630), 18, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_BANG_EQ, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -158834,368 +165208,563 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125801] = 27, - ACTIONS(2007), 1, + [133747] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(5951), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6991), 1, - anon_sym_LF, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6995), 1, - anon_sym_esac, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5949), 24, + sym__concat, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, anon_sym_DQUOTE, - ACTIONS(7005), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133786] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6489), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6491), 24, + sym__concat, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - STATE(1971), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3695), 1, - sym__case_item_last, - STATE(3711), 1, - sym__case_patterns, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1986), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [125894] = 27, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133825] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6322), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6320), 24, + sym__concat, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, anon_sym_DQUOTE, - ACTIONS(7005), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133864] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(5969), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5967), 24, + sym__concat, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7021), 1, - anon_sym_LF, - ACTIONS(7023), 1, - anon_sym_esac, - STATE(1974), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3678), 1, - sym__case_item_last, - STATE(3711), 1, - sym__case_patterns, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1993), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [125987] = 27, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133903] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(7632), 1, + anon_sym_LF, + STATE(2063), 1, + aux_sym_program_repeat1, + ACTIONS(994), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(992), 18, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LPAREN, - ACTIONS(6997), 1, + anon_sym_RPAREN, + anon_sym_BANG_EQ, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(7005), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133946] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6105), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6103), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [133984] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6489), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6491), 19, + sym__concat, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7025), 1, - anon_sym_LF, - ACTIONS(7027), 1, - anon_sym_esac, - STATE(2762), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3801), 1, - sym__case_item_last, - ACTIONS(7013), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1987), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + [134022] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6083), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6081), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [134060] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6485), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6487), 19, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [126080] = 27, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134098] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6109), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6107), 19, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LPAREN, - ACTIONS(6997), 1, + anon_sym_RPAREN, + anon_sym_BANG_EQ, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(7005), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134136] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6183), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6181), 19, + sym__concat, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7027), 1, - anon_sym_esac, - ACTIONS(7029), 1, - anon_sym_LF, - STATE(1969), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3814), 1, - sym__case_item_last, - ACTIONS(7013), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1987), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + [134174] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6264), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6262), 19, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [126173] = 27, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134212] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6244), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6242), 19, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LPAREN, - ACTIONS(6997), 1, + anon_sym_RPAREN, + anon_sym_BANG_EQ, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(7005), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134250] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6177), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6175), 19, + sym__concat, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7025), 1, - anon_sym_LF, - ACTIONS(7031), 1, - anon_sym_esac, - STATE(2762), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3837), 1, - sym__case_item_last, - ACTIONS(7013), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1989), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + [134288] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6322), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6320), 19, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [126266] = 3, - ACTIONS(3), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134326] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7033), 17, + ACTIONS(5905), 11, anon_sym_BANG, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_COMMA, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOLLAR_LPAREN, - ACTIONS(7035), 20, + ACTIONS(5903), 19, + sym__concat, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_POUND, + anon_sym_BANG_EQ, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -159206,1794 +165775,1374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126311] = 27, - ACTIONS(2007), 1, + [134364] = 21, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6970), 1, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, + ACTIONS(6978), 1, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, + ACTIONS(6982), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, + ACTIONS(6984), 1, anon_sym_DQUOTE, - ACTIONS(7005), 1, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6996), 1, sym__backtick_open, - ACTIONS(7017), 1, + ACTIONS(6998), 1, sym__dollar_literal, - ACTIONS(7019), 1, + ACTIONS(7000), 1, sym__brace_expr_start, - ACTIONS(7025), 1, - anon_sym_LF, - ACTIONS(7037), 1, - anon_sym_esac, - STATE(2762), 1, - aux_sym_program_repeat1, - STATE(3390), 1, + STATE(3352), 1, sym_string, - STATE(3572), 1, + STATE(3520), 1, sym__word_part, - STATE(3704), 1, - sym__case_item_last, - STATE(3711), 1, + STATE(3606), 1, sym__case_patterns, - ACTIONS(7013), 2, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1982), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, + STATE(3343), 2, sym_simple_expansion, sym_expansion, - STATE(3421), 2, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, sym__word_like, sym_concatenation, - ACTIONS(6999), 3, + ACTIONS(6980), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, + STATE(3342), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [126404] = 27, - ACTIONS(2007), 1, + [134438] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(5969), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(5967), 19, + sym__concat, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7039), 1, - anon_sym_LF, - ACTIONS(7041), 1, - anon_sym_esac, - STATE(1975), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3780), 1, - sym__case_item_last, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1985), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [126497] = 27, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6989), 1, - sym_word, - ACTIONS(6993), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LPAREN, - ACTIONS(6997), 1, + anon_sym_RPAREN, + anon_sym_BANG_EQ, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(7005), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, - sym__backtick_open, - ACTIONS(7017), 1, - sym__dollar_literal, - ACTIONS(7019), 1, - sym__brace_expr_start, - ACTIONS(7043), 1, - anon_sym_LF, - ACTIONS(7045), 1, - anon_sym_esac, - STATE(1981), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3915), 1, - sym__case_item_last, - ACTIONS(7013), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1991), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [126590] = 27, - ACTIONS(2007), 1, + [134476] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(7052), 1, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6995), 1, - anon_sym_esac, - ACTIONS(6997), 1, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, + ACTIONS(7062), 1, anon_sym_DQUOTE, - ACTIONS(7005), 1, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(7074), 1, sym__backtick_open, - ACTIONS(7017), 1, + ACTIONS(7076), 1, sym__dollar_literal, - ACTIONS(7019), 1, + ACTIONS(7078), 1, sym__brace_expr_start, - ACTIONS(7025), 1, - anon_sym_LF, - STATE(2762), 1, - aux_sym_program_repeat1, - STATE(3390), 1, + STATE(2703), 1, sym_string, - STATE(3572), 1, + STATE(3509), 1, sym__word_part, - STATE(3692), 1, - sym__case_item_last, - STATE(3711), 1, - sym__case_patterns, - ACTIONS(7013), 2, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1986), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, + STATE(2700), 2, sym_brace_expression, sym__expression, - STATE(3396), 2, + STATE(2701), 2, sym_simple_expansion, sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + ACTIONS(7058), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, + STATE(1925), 3, + sym__word_like, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2682), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [126683] = 27, - ACTIONS(2007), 1, + [134548] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6302), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6300), 19, + sym__concat, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7025), 1, - anon_sym_LF, - ACTIONS(7047), 1, - anon_sym_esac, - STATE(2762), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3794), 1, - sym__case_item_last, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1988), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [126776] = 27, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6989), 1, - sym_word, - ACTIONS(6993), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LPAREN, - ACTIONS(6997), 1, + anon_sym_RPAREN, + anon_sym_BANG_EQ, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(7005), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, - sym__backtick_open, - ACTIONS(7017), 1, - sym__dollar_literal, - ACTIONS(7019), 1, - sym__brace_expr_start, - ACTIONS(7047), 1, - anon_sym_esac, - ACTIONS(7049), 1, - anon_sym_LF, - STATE(1977), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3797), 1, - sym__case_item_last, - ACTIONS(7013), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1988), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [126869] = 27, - ACTIONS(2007), 1, + [134586] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6244), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6242), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [134624] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6691), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6693), 23, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7025), 1, - anon_sym_LF, - ACTIONS(7051), 1, - anon_sym_esac, - STATE(2762), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3805), 1, - sym__case_item_last, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1992), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [126962] = 27, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6989), 1, - sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, - sym__backtick_open, - ACTIONS(7017), 1, - sym__dollar_literal, - ACTIONS(7019), 1, - sym__brace_expr_start, - ACTIONS(7025), 1, - anon_sym_LF, - ACTIONS(7045), 1, - anon_sym_esac, - STATE(2762), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3842), 1, - sym__case_item_last, - ACTIONS(7013), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1991), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [127055] = 27, - ACTIONS(2007), 1, + [134662] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6177), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6175), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [134700] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6340), 18, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7053), 1, - anon_sym_LF, - ACTIONS(7055), 1, - anon_sym_esac, - STATE(1978), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3661), 1, - sym__case_item_last, - STATE(3711), 1, - sym__case_patterns, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1983), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [127148] = 27, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6989), 1, - sym_word, - ACTIONS(6993), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LPAREN, - ACTIONS(6997), 1, + anon_sym_RPAREN, + anon_sym_BANG_EQ, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(7005), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, - sym__backtick_open, - ACTIONS(7017), 1, - sym__dollar_literal, - ACTIONS(7019), 1, - sym__brace_expr_start, - ACTIONS(7057), 1, - anon_sym_LF, - ACTIONS(7059), 1, - anon_sym_esac, - STATE(1967), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3775), 1, - sym__case_item_last, - ACTIONS(7013), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1984), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [127241] = 27, - ACTIONS(2007), 1, + [134740] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6019), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6017), 19, + sym__concat, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7025), 1, - anon_sym_LF, - ACTIONS(7061), 1, - anon_sym_esac, - STATE(2762), 1, - aux_sym_program_repeat1, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3940), 1, - sym__case_item_last, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1990), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [127334] = 25, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6989), 1, - sym_word, - ACTIONS(6993), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LPAREN, - ACTIONS(6997), 1, + anon_sym_RPAREN, + anon_sym_BANG_EQ, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(7005), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, - sym__backtick_open, - ACTIONS(7017), 1, - sym__dollar_literal, - ACTIONS(7019), 1, - sym__brace_expr_start, - ACTIONS(7063), 1, - anon_sym_esac, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3709), 1, - sym__case_item_last, - STATE(3711), 1, - sym__case_patterns, - ACTIONS(7013), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1997), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [127421] = 25, - ACTIONS(2007), 1, + [134778] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6101), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6099), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [134816] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6105), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6103), 19, + sym__concat, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7045), 1, - anon_sym_esac, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3880), 1, - sym__case_item_last, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1997), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [127508] = 25, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6989), 1, - sym_word, - ACTIONS(6993), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LPAREN, - ACTIONS(6997), 1, + anon_sym_RPAREN, + anon_sym_BANG_EQ, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, + sym_number, anon_sym_DQUOTE, - ACTIONS(7005), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, - sym__backtick_open, - ACTIONS(7017), 1, - sym__dollar_literal, - ACTIONS(7019), 1, - sym__brace_expr_start, - ACTIONS(7027), 1, - anon_sym_esac, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3813), 1, - sym__case_item_last, - ACTIONS(7013), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1997), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [127595] = 25, - ACTIONS(2007), 1, + [134854] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6426), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6428), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [134892] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6260), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6258), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [134930] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6270), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6268), 19, + sym__concat, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7047), 1, - anon_sym_esac, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3796), 1, - sym__case_item_last, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1997), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [127682] = 25, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134968] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6426), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6428), 19, + sym__concat, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7037), 1, - anon_sym_esac, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3703), 1, - sym__case_item_last, - STATE(3711), 1, - sym__case_patterns, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1997), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [127769] = 25, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135006] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6695), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6697), 23, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7031), 1, - anon_sym_esac, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3829), 1, - sym__case_item_last, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1997), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [127856] = 25, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135044] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6489), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6491), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [135082] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6189), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6187), 19, + sym__concat, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7051), 1, - anon_sym_esac, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3804), 1, - sym__case_item_last, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1997), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [127943] = 25, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135120] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6189), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6187), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [135158] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6083), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6081), 19, + sym__concat, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7065), 1, - anon_sym_esac, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3852), 1, - sym__case_item_last, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1997), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [128030] = 25, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135196] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6260), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6258), 19, + sym__concat, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7067), 1, - anon_sym_esac, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3743), 1, - sym__case_item_last, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1997), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [128117] = 25, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135234] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6699), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6701), 23, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7061), 1, - anon_sym_esac, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3790), 1, - sym__case_item_last, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1997), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [128204] = 25, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135272] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6493), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6495), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [135310] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(5951), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(5949), 19, + sym__concat, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - ACTIONS(7069), 1, - anon_sym_esac, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3711), 1, - sym__case_patterns, - STATE(3810), 1, - sym__case_item_last, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1997), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [128291] = 25, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135348] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, + ACTIONS(6703), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(6993), 1, - anon_sym_LPAREN, - ACTIONS(6995), 1, - anon_sym_esac, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(6705), 23, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(7017), 1, sym__dollar_literal, - ACTIONS(7019), 1, sym__brace_expr_start, - STATE(3390), 1, - sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3694), 1, - sym__case_item_last, - STATE(3711), 1, - sym__case_patterns, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1997), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [128378] = 22, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7075), 1, - aux_sym_brace_expression_token1, - ACTIONS(7079), 1, - anon_sym_DOLLAR, - ACTIONS(7081), 1, - anon_sym_DQUOTE, - ACTIONS(7083), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, - sym__backtick_open, - ACTIONS(7095), 1, - sym__dollar_literal, - ACTIONS(7097), 1, - sym__brace_expr_start, - STATE(2741), 1, - sym_string, - STATE(3236), 1, - sym__terminator, - STATE(3614), 1, - sym__word_part, - ACTIONS(7091), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, - sym_brace_expression, - sym__expression, - STATE(2752), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(7073), 3, + [135386] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6340), 23, + sym__heredoc_newline, + sym__file_descriptor, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(7077), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2000), 3, - sym__word_like, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2743), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [128458] = 22, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [135426] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7635), 1, + aux_sym__conditional_token1, + ACTIONS(7630), 3, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + ACTIONS(7626), 26, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_BANG_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(7075), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + sym_number, anon_sym_DOLLAR, - ACTIONS(7081), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135466] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6101), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6099), 19, + sym__concat, sym__backtick_open, - ACTIONS(7095), 1, sym__dollar_literal, - ACTIONS(7097), 1, sym__brace_expr_start, - STATE(2741), 1, - sym_string, - STATE(3258), 1, - sym__terminator, - STATE(3614), 1, - sym__word_part, - ACTIONS(7091), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2718), 2, - sym_brace_expression, - sym__expression, - STATE(2752), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(7077), 3, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(7099), 3, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135504] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6270), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6268), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [135542] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6302), 6, anon_sym_AMP, - STATE(2000), 3, - sym__word_like, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2743), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [128538] = 22, - ACTIONS(2007), 1, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6300), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [135580] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(6143), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, sym_word, - ACTIONS(7075), 1, - aux_sym_brace_expression_token1, - ACTIONS(7079), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6141), 19, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, anon_sym_DQUOTE, - ACTIONS(7083), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135618] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6601), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6603), 23, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(7095), 1, sym__dollar_literal, - ACTIONS(7097), 1, sym__brace_expr_start, - STATE(2741), 1, - sym_string, - STATE(3267), 1, - sym__terminator, - STATE(3614), 1, - sym__word_part, - ACTIONS(7091), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2718), 2, - sym_brace_expression, - sym__expression, - STATE(2752), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(7077), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(7101), 3, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135656] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6485), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6487), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [135694] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6109), 6, anon_sym_AMP, - STATE(2000), 3, - sym__word_like, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2743), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [128618] = 24, - ACTIONS(2007), 1, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6107), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [135732] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7103), 1, + ACTIONS(5951), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(5949), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [135770] = 21, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6970), 1, sym_word, - ACTIONS(7106), 1, - anon_sym_LPAREN, - ACTIONS(7109), 1, - anon_sym_esac, - ACTIONS(7111), 1, + ACTIONS(6978), 1, aux_sym_brace_expression_token1, - ACTIONS(7117), 1, + ACTIONS(6982), 1, anon_sym_DOLLAR, - ACTIONS(7120), 1, + ACTIONS(6984), 1, anon_sym_DQUOTE, - ACTIONS(7123), 1, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7126), 1, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7129), 1, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7132), 1, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7138), 1, + ACTIONS(6996), 1, sym__backtick_open, - ACTIONS(7141), 1, + ACTIONS(6998), 1, sym__dollar_literal, - ACTIONS(7144), 1, + ACTIONS(7000), 1, sym__brace_expr_start, - STATE(3390), 1, + STATE(3352), 1, sym_string, - STATE(3572), 1, + STATE(3520), 1, sym__word_part, - STATE(3799), 1, + STATE(3853), 1, sym__case_patterns, - ACTIONS(7135), 2, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1997), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, + STATE(3343), 2, sym_simple_expansion, sym_expansion, - STATE(3421), 2, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3394), 2, sym__word_like, sym_concatenation, - ACTIONS(7114), 3, + ACTIONS(6980), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, + STATE(3342), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [128702] = 22, - ACTIONS(2007), 1, + [135844] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(6605), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, sym_word, - ACTIONS(7075), 1, - aux_sym_brace_expression_token1, - ACTIONS(7079), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, - anon_sym_DQUOTE, - ACTIONS(7083), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(6607), 23, + sym__assignment_name, + sym__file_descriptor, sym__backtick_open, - ACTIONS(7095), 1, sym__dollar_literal, - ACTIONS(7097), 1, sym__brace_expr_start, - STATE(2741), 1, - sym_string, - STATE(3238), 1, - sym__terminator, - STATE(3614), 1, - sym__word_part, - ACTIONS(7091), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2718), 2, - sym_brace_expression, - sym__expression, - STATE(2752), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(7077), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - ACTIONS(7147), 3, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP, - STATE(2000), 3, - sym__word_like, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2743), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [128782] = 11, - ACTIONS(2007), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [135882] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7157), 1, + ACTIONS(6609), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(7160), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7165), 1, - sym__assignment_name, - ACTIONS(7168), 1, - sym__file_descriptor, - STATE(1552), 1, - sym_heredoc_redirect, - ACTIONS(7149), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(7151), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - STATE(1999), 3, - sym_variable_assignment, - sym_redirect, - aux_sym_command_repeat1, - ACTIONS(7154), 7, + ACTIONS(6611), 23, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -161001,10 +167150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7163), 13, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + anon_sym_LT_LT_DASH, aux_sym_brace_expression_token1, sym_number, anon_sym_DQUOTE, @@ -161015,94 +167161,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128840] = 21, - ACTIONS(2007), 1, + [135920] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6322), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6320), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [135958] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(5905), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(5903), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [135996] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(5969), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(5967), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [136034] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6019), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6017), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [136072] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7171), 1, + ACTIONS(7052), 1, sym_word, - ACTIONS(7176), 1, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - ACTIONS(7182), 1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - ACTIONS(7185), 1, + ACTIONS(7062), 1, anon_sym_DQUOTE, - ACTIONS(7188), 1, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7191), 1, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7194), 1, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7197), 1, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7203), 1, + ACTIONS(7074), 1, sym__backtick_open, - ACTIONS(7206), 1, + ACTIONS(7076), 1, sym__dollar_literal, - ACTIONS(7209), 1, + ACTIONS(7078), 1, sym__brace_expr_start, - STATE(2741), 1, + STATE(2703), 1, sym_string, - STATE(3614), 1, + STATE(3509), 1, sym__word_part, - ACTIONS(7200), 2, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(2700), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(2701), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7174), 3, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(7179), 3, + ACTIONS(7058), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2000), 3, + STATE(1922), 3, sym__word_like, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2743), 5, + STATE(2682), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [128917] = 11, - ACTIONS(2007), 1, + [136144] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5816), 1, - sym__concat, - ACTIONS(7224), 1, - anon_sym_LT_LT, - ACTIONS(7227), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7230), 1, - sym__file_descriptor, - STATE(2283), 1, - sym_heredoc_redirect, - ACTIONS(7215), 2, + ACTIONS(6264), 6, anon_sym_AMP, anon_sym_PIPE, - STATE(2034), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7218), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7221), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7212), 13, + anon_sym_LT_LT, + ACTIONS(6262), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -161116,94 +167380,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [128973] = 22, - ACTIONS(2007), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [136182] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7052), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(7062), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(7074), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(7076), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(7078), 1, sym__brace_expr_start, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7235), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(2703), 1, sym_string, - STATE(3614), 1, + STATE(3509), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(2700), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(2701), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + ACTIONS(7058), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, + STATE(1921), 3, sym__word_like, sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + aux_sym_for_statement_repeat1, + STATE(2682), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [129051] = 11, - ACTIONS(2007), 1, + [136254] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5816), 1, - sym__concat, - ACTIONS(7224), 1, - anon_sym_LT_LT, - ACTIONS(7227), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7230), 1, - sym__file_descriptor, - STATE(2283), 1, - sym_heredoc_redirect, - ACTIONS(7240), 2, + ACTIONS(6143), 6, anon_sym_AMP, anon_sym_PIPE, - STATE(2037), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7218), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7221), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7237), 13, + anon_sym_LT_LT, + ACTIONS(6141), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -161217,86 +167467,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [129107] = 22, - ACTIONS(2007), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [136292] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6493), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6495), 19, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136330] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7052), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(7056), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(7062), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(7064), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(7066), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(7068), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(7070), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(7074), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(7076), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(7078), 1, sym__brace_expr_start, - ACTIONS(7243), 1, - anon_sym_LF, - ACTIONS(7245), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(2703), 1, sym_string, - STATE(3614), 1, + STATE(3509), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(7072), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(2700), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(2701), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + ACTIONS(7058), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2007), 3, + STATE(1920), 3, sym__word_like, sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + aux_sym_for_statement_repeat1, + STATE(2682), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [129185] = 11, - ACTIONS(2007), 1, + [136402] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5816), 1, - sym__concat, - ACTIONS(7224), 1, + ACTIONS(6613), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(7227), 1, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6615), 23, + sym__assignment_name, + sym__file_descriptor, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(7230), 1, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136440] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6617), 7, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6619), 23, + sym__assignment_name, sym__file_descriptor, - STATE(2283), 1, - sym_heredoc_redirect, - ACTIONS(7250), 2, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136478] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6183), 6, anon_sym_AMP, anon_sym_PIPE, - STATE(2107), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7218), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7221), 7, + anon_sym_LT_LT, + ACTIONS(6181), 24, + sym__heredoc_newline, + sym__concat, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -161304,7 +167666,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7247), 13, + anon_sym_LT_LT_DASH, + [136516] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7639), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(7637), 23, + sym__heredoc_newline, + sym__file_descriptor, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -161318,1436 +167693,2016 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [129241] = 22, - ACTIONS(2007), 1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [136553] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(2493), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(2495), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(2499), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(2501), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(2503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(2505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(2507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(2509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(2513), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(2515), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(2517), 1, sym__brace_expr_start, - ACTIONS(7253), 1, - anon_sym_LF, - ACTIONS(7255), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(1420), 1, sym_string, - STATE(3614), 1, + STATE(3522), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(2511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(1392), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(1426), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1535), 2, + sym__word_like, + sym_concatenation, + ACTIONS(2497), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2013), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(1421), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [129319] = 22, - ACTIONS(2007), 1, + [136624] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(3665), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(3667), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(3671), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(3673), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(3675), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(3677), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(3685), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(3687), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(3689), 1, sym__brace_expr_start, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7257), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(1712), 1, sym_string, - STATE(3614), 1, + STATE(3537), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(3683), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, - sym_brace_expression, - sym__expression, - STATE(2752), 2, + STATE(1724), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1791), 2, + sym_brace_expression, + sym__expression, + STATE(1812), 2, + sym__word_like, + sym_concatenation, + ACTIONS(3669), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(1714), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [129397] = 22, - ACTIONS(2007), 1, + [136695] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(4963), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(4973), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(4977), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(4979), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(4983), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(4985), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(4987), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(4989), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(4995), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(4997), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(4999), 1, sym__brace_expr_start, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7259), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(2621), 1, sym_string, - STATE(3614), 1, + STATE(3568), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(4991), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, - sym_brace_expression, - sym__expression, - STATE(2752), 2, + STATE(2598), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(2609), 2, + sym_brace_expression, + sym__expression, + STATE(2676), 2, + sym__word_like, + sym_concatenation, + ACTIONS(4981), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(2624), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [129475] = 22, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7075), 1, + [136766] = 20, + ACTIONS(55), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(59), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(61), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(65), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(67), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(69), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(77), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(79), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(81), 1, sym__brace_expr_start, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7261), 1, - anon_sym_RPAREN, - STATE(2741), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2253), 1, + sym_word, + STATE(1265), 1, sym_string, - STATE(3614), 1, + STATE(3512), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(71), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(1331), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(1342), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1477), 2, + sym__word_like, + sym_concatenation, + ACTIONS(57), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(1338), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [129553] = 22, - ACTIONS(2007), 1, + [136837] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(2600), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(2602), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(2606), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(2608), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(2610), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(2612), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(2614), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(2616), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(2620), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(2622), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(2624), 1, sym__brace_expr_start, - ACTIONS(7263), 1, - anon_sym_LF, - ACTIONS(7265), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(1369), 1, sym_string, - STATE(3614), 1, + STATE(3535), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(2618), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, - sym_brace_expression, - sym__expression, - STATE(2752), 2, + STATE(1376), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1451), 2, + sym_brace_expression, + sym__expression, + STATE(1522), 2, + sym__word_like, + sym_concatenation, + ACTIONS(2604), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2025), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(1370), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [129631] = 22, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7075), 1, + [136908] = 20, + ACTIONS(665), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(669), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(671), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(677), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(679), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(687), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(689), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(691), 1, sym__brace_expr_start, - ACTIONS(7267), 1, - anon_sym_LF, - ACTIONS(7269), 1, - anon_sym_RPAREN, - STATE(2741), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3115), 1, + sym_word, + STATE(1517), 1, sym_string, - STATE(3614), 1, + STATE(3511), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(1500), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(1607), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1725), 2, + sym__word_like, + sym_concatenation, + ACTIONS(667), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2026), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(1518), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [129709] = 22, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7075), 1, + [136979] = 20, + ACTIONS(665), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(669), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(671), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(677), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(679), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(687), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(689), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(691), 1, sym__brace_expr_start, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7271), 1, - anon_sym_RPAREN, - STATE(2741), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3115), 1, + sym_word, + STATE(1517), 1, sym_string, - STATE(3614), 1, + STATE(3511), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(1500), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(1607), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1730), 2, + sym__word_like, + sym_concatenation, + ACTIONS(667), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, + STATE(1518), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [137050] = 20, + ACTIONS(113), 1, + aux_sym_brace_expression_token1, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(119), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(127), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(135), 1, + sym__backtick_open, + ACTIONS(137), 1, + sym__dollar_literal, + ACTIONS(139), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2324), 1, + sym_word, + STATE(1292), 1, + sym_string, + STATE(3526), 1, + sym__word_part, + ACTIONS(129), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1242), 2, + sym_simple_expansion, + sym_expansion, + STATE(1273), 2, + sym_brace_expression, + sym__expression, + STATE(1397), 2, sym__word_like, sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + ACTIONS(115), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1334), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [129787] = 22, - ACTIONS(2007), 1, + [137121] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(6970), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(6978), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(6982), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(6984), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(6996), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(6998), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(7000), 1, sym__brace_expr_start, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7273), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(3352), 1, sym_string, - STATE(3614), 1, + STATE(3520), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, - sym_brace_expression, - sym__expression, - STATE(2752), 2, + STATE(3343), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3530), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(3342), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [129865] = 22, - ACTIONS(2007), 1, + [137192] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6613), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6615), 23, + sym__heredoc_newline, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [137229] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(2338), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(2344), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(2348), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(2350), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(2352), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(2354), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(2358), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(2362), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(2364), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(2366), 1, sym__brace_expr_start, - ACTIONS(7275), 1, - anon_sym_LF, - ACTIONS(7277), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(1293), 1, sym_string, - STATE(3614), 1, + STATE(3560), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(2360), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(1261), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(1303), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1406), 2, + sym__word_like, + sym_concatenation, + ACTIONS(2346), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2016), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(1294), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [129943] = 22, - ACTIONS(2007), 1, + [137300] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6617), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6619), 23, + sym__heredoc_newline, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [137337] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(2338), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(2344), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(2348), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(2350), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(2352), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(2354), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(2358), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(2362), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(2364), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(2366), 1, sym__brace_expr_start, - ACTIONS(7279), 1, - anon_sym_LF, - ACTIONS(7281), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(1293), 1, sym_string, - STATE(3614), 1, + STATE(3560), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(2360), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(1261), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(1303), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1409), 2, + sym__word_like, + sym_concatenation, + ACTIONS(2346), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2012), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(1294), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [130021] = 22, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7075), 1, + [137408] = 20, + ACTIONS(259), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(263), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(265), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(271), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(273), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(281), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(283), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(285), 1, sym__brace_expr_start, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7283), 1, - anon_sym_RPAREN, - STATE(2741), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2239), 1, + sym_word, + STATE(1301), 1, sym_string, - STATE(3614), 1, + STATE(3548), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(1263), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(1319), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1455), 2, + sym__word_like, + sym_concatenation, + ACTIONS(261), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, + STATE(1302), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [137479] = 20, + ACTIONS(259), 1, + aux_sym_brace_expression_token1, + ACTIONS(263), 1, + anon_sym_DOLLAR, + ACTIONS(265), 1, + anon_sym_DQUOTE, + ACTIONS(267), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(271), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(273), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(281), 1, + sym__backtick_open, + ACTIONS(283), 1, + sym__dollar_literal, + ACTIONS(285), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2239), 1, + sym_word, + STATE(1301), 1, + sym_string, + STATE(3548), 1, + sym__word_part, + ACTIONS(275), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1263), 2, + sym_brace_expression, + sym__expression, + STATE(1319), 2, + sym_simple_expansion, + sym_expansion, + STATE(1464), 2, sym__word_like, sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + ACTIONS(261), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1302), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [130099] = 22, - ACTIONS(2007), 1, + [137550] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(3377), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(3387), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(3391), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(3393), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(3397), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(3399), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(3401), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(3403), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(3409), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(3411), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(3413), 1, sym__brace_expr_start, - ACTIONS(7285), 1, - anon_sym_LF, - ACTIONS(7287), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(2104), 1, sym_string, - STATE(3614), 1, + STATE(3523), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(3405), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(2100), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(2109), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(2136), 2, + sym__word_like, + sym_concatenation, + ACTIONS(3395), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2020), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(2108), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [130177] = 22, - ACTIONS(2007), 1, + [137621] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(2628), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(2630), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(2636), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(2638), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(2640), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(2642), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(2644), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(2648), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(2650), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(2652), 1, sym__brace_expr_start, - ACTIONS(7289), 1, - anon_sym_LF, - ACTIONS(7291), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(1413), 1, sym_string, - STATE(3614), 1, + STATE(3510), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(2646), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(1412), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(1416), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1534), 2, + sym__word_like, + sym_concatenation, + ACTIONS(2632), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2002), 3, + STATE(1415), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [137692] = 20, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3499), 1, + sym_word, + ACTIONS(3501), 1, + aux_sym_brace_expression_token1, + ACTIONS(3505), 1, + anon_sym_DOLLAR, + ACTIONS(3507), 1, + anon_sym_DQUOTE, + ACTIONS(3509), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3511), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3513), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3515), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3519), 1, + sym__backtick_open, + ACTIONS(3521), 1, + sym__dollar_literal, + ACTIONS(3523), 1, + sym__brace_expr_start, + STATE(1763), 1, + sym_string, + STATE(3539), 1, + sym__word_part, + ACTIONS(3517), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1667), 2, + sym_simple_expansion, + sym_expansion, + STATE(1777), 2, + sym_brace_expression, + sym__expression, + STATE(1808), 2, sym__word_like, sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + ACTIONS(3503), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1652), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [130255] = 22, - ACTIONS(2007), 1, + [137763] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7293), 1, + ACTIONS(2774), 1, sym_word, - ACTIONS(7296), 1, - anon_sym_LF, - ACTIONS(7299), 1, - anon_sym_RPAREN, - ACTIONS(7301), 1, + ACTIONS(2788), 1, aux_sym_brace_expression_token1, - ACTIONS(7307), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(7310), 1, + ACTIONS(2794), 1, anon_sym_DQUOTE, - ACTIONS(7313), 1, + ACTIONS(2798), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7316), 1, + ACTIONS(2800), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7319), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7322), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7328), 1, + ACTIONS(2810), 1, sym__backtick_open, - ACTIONS(7331), 1, + ACTIONS(2812), 1, sym__dollar_literal, - ACTIONS(7334), 1, + ACTIONS(2814), 1, sym__brace_expr_start, - STATE(2741), 1, + STATE(2397), 1, sym_string, - STATE(3614), 1, + STATE(3525), 1, sym__word_part, - ACTIONS(7325), 2, + ACTIONS(2806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(2407), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(2413), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7304), 3, + STATE(2480), 2, + sym__word_like, + sym_concatenation, + ACTIONS(2796), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(2398), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [130333] = 22, - ACTIONS(2007), 1, + [137834] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(2628), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(2630), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(2636), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(2638), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(2640), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(2642), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(2644), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(2648), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(2650), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(2652), 1, sym__brace_expr_start, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7337), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(1413), 1, sym_string, - STATE(3614), 1, + STATE(3510), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(2646), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(1412), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(1416), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1549), 2, + sym__word_like, + sym_concatenation, + ACTIONS(2632), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(1415), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [130411] = 22, - ACTIONS(2007), 1, + [137905] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(2774), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(2788), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(2794), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(2798), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(2800), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(2810), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(2812), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(2814), 1, sym__brace_expr_start, - ACTIONS(7339), 1, - anon_sym_LF, - ACTIONS(7341), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(2397), 1, sym_string, - STATE(3614), 1, + STATE(3525), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(2806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(2407), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(2413), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(2500), 2, + sym__word_like, + sym_concatenation, + ACTIONS(2796), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2024), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(2398), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [130489] = 22, - ACTIONS(2007), 1, + [137976] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6605), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6607), 23, + sym__heredoc_newline, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [138013] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(3885), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(3887), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(3891), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(3893), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(3895), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(3897), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(3899), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(3901), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(3905), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(3907), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(3909), 1, sym__brace_expr_start, - ACTIONS(7343), 1, - anon_sym_LF, - ACTIONS(7345), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(1740), 1, sym_string, - STATE(3614), 1, + STATE(3515), 1, + sym__word_part, + ACTIONS(3903), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1748), 2, + sym_simple_expansion, + sym_expansion, + STATE(1801), 2, + sym_brace_expression, + sym__expression, + STATE(1838), 2, + sym__word_like, + sym_concatenation, + ACTIONS(3889), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1741), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [138084] = 20, + ACTIONS(409), 1, + aux_sym_brace_expression_token1, + ACTIONS(413), 1, + anon_sym_DOLLAR, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(419), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(421), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(423), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(431), 1, + sym__backtick_open, + ACTIONS(433), 1, + sym__dollar_literal, + ACTIONS(435), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3038), 1, + sym_word, + STATE(1599), 1, + sym_string, + STATE(3555), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(425), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(1485), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(1487), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1796), 2, + sym__word_like, + sym_concatenation, + ACTIONS(411), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2023), 3, + STATE(1603), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [138155] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6609), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6611), 23, + sym__heredoc_newline, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [138192] = 20, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3639), 1, + sym_word, + ACTIONS(3641), 1, + aux_sym_brace_expression_token1, + ACTIONS(3645), 1, + anon_sym_DOLLAR, + ACTIONS(3647), 1, + anon_sym_DQUOTE, + ACTIONS(3649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3651), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3653), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3655), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3659), 1, + sym__backtick_open, + ACTIONS(3661), 1, + sym__dollar_literal, + ACTIONS(3663), 1, + sym__brace_expr_start, + STATE(1670), 1, + sym_string, + STATE(3540), 1, + sym__word_part, + ACTIONS(3657), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1693), 2, + sym_simple_expansion, + sym_expansion, + STATE(1783), 2, + sym_brace_expression, + sym__expression, + STATE(1820), 2, sym__word_like, sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + ACTIONS(3643), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1671), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [130567] = 22, - ACTIONS(2007), 1, + [138263] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(5087), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(5097), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(5101), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(5103), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(5107), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(5113), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(5119), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(5121), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(5123), 1, sym__brace_expr_start, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7347), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(2631), 1, sym_string, - STATE(3614), 1, + STATE(3563), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(5115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(2608), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(2639), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(2678), 2, + sym__word_like, + sym_concatenation, + ACTIONS(5105), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(2632), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [130645] = 22, - ACTIONS(2007), 1, + [138334] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(2493), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(2495), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(2499), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(2501), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(2503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(2505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(2507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(2509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(2513), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(2515), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(2517), 1, sym__brace_expr_start, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7349), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(1420), 1, sym_string, - STATE(3614), 1, + STATE(3522), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(2511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(1392), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(1426), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1504), 2, + sym__word_like, + sym_concatenation, + ACTIONS(2497), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, + STATE(1421), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [138405] = 20, + ACTIONS(409), 1, + aux_sym_brace_expression_token1, + ACTIONS(413), 1, + anon_sym_DOLLAR, + ACTIONS(415), 1, + anon_sym_DQUOTE, + ACTIONS(417), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(419), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(421), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(423), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(431), 1, + sym__backtick_open, + ACTIONS(433), 1, + sym__dollar_literal, + ACTIONS(435), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3038), 1, + sym_word, + STATE(1599), 1, + sym_string, + STATE(3555), 1, + sym__word_part, + ACTIONS(425), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1485), 2, + sym_brace_expression, + sym__expression, + STATE(1487), 2, + sym_simple_expansion, + sym_expansion, + STATE(1668), 2, sym__word_like, sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + ACTIONS(411), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1603), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [130723] = 22, - ACTIONS(2007), 1, + [138476] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6644), 11, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + anon_sym_EQ_TILDE, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7619), 18, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138513] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(3665), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(3667), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(3671), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(3673), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(3675), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(3677), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(3685), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(3687), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(3689), 1, sym__brace_expr_start, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7351), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(1712), 1, sym_string, - STATE(3614), 1, + STATE(3537), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(3683), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, - sym_brace_expression, - sym__expression, - STATE(2752), 2, + STATE(1724), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1791), 2, + sym_brace_expression, + sym__expression, + STATE(1822), 2, + sym__word_like, + sym_concatenation, + ACTIONS(3669), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, + STATE(1714), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [138584] = 20, + ACTIONS(201), 1, + aux_sym_brace_expression_token1, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_DQUOTE, + ACTIONS(209), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(213), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(215), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(223), 1, + sym__backtick_open, + ACTIONS(225), 1, + sym__dollar_literal, + ACTIONS(227), 1, + sym__brace_expr_start, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1167), 1, + sym_comment, + STATE(1216), 1, + sym_string, + STATE(3506), 1, + sym__word_part, + ACTIONS(217), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1209), 2, + sym_brace_expression, + sym__expression, + STATE(1224), 2, + sym_simple_expansion, + sym_expansion, + STATE(1288), 2, sym__word_like, sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + ACTIONS(203), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1217), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [130801] = 22, - ACTIONS(2007), 1, + [138655] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7075), 1, + ACTIONS(7643), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(7641), 23, + sym__heredoc_newline, + sym__file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [138692] = 20, + ACTIONS(315), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(319), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(321), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(323), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(329), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(337), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(339), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(341), 1, sym__brace_expr_start, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7353), 1, - anon_sym_RPAREN, - STATE(2741), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3200), 1, + sym_word, + STATE(1622), 1, sym_string, - STATE(3614), 1, + STATE(3529), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(331), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(1596), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(1626), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1770), 2, + sym__word_like, + sym_concatenation, + ACTIONS(317), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(1625), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [130879] = 22, - ACTIONS(2007), 1, + [138763] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7645), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(7647), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(7651), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(7653), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(7655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(7657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(7659), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(7661), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(7665), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(7667), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(7669), 1, sym__brace_expr_start, - ACTIONS(7355), 1, - anon_sym_LF, - ACTIONS(7357), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(2055), 1, sym_string, - STATE(3614), 1, + STATE(3551), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(7663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(2040), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(2059), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(2111), 2, + sym__word_like, + sym_concatenation, + ACTIONS(7649), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2009), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(2057), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [130957] = 22, - ACTIONS(2007), 1, + [138834] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(7645), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(7647), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(7651), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(7653), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(7655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(7657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(7659), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(7661), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(7665), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(7667), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(7669), 1, sym__brace_expr_start, - ACTIONS(7359), 1, - anon_sym_LF, - ACTIONS(7361), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(2055), 1, sym_string, - STATE(3614), 1, + STATE(3551), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(7663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(2040), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(2059), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(2123), 2, + sym__word_like, + sym_concatenation, + ACTIONS(7649), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2030), 3, + STATE(2057), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [138905] = 20, + ACTIONS(201), 1, + aux_sym_brace_expression_token1, + ACTIONS(205), 1, + anon_sym_DOLLAR, + ACTIONS(207), 1, + anon_sym_DQUOTE, + ACTIONS(209), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(211), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(213), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(215), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(223), 1, + sym__backtick_open, + ACTIONS(225), 1, + sym__dollar_literal, + ACTIONS(227), 1, + sym__brace_expr_start, + ACTIONS(1151), 1, + sym_word, + ACTIONS(1167), 1, + sym_comment, + STATE(1216), 1, + sym_string, + STATE(3506), 1, + sym__word_part, + ACTIONS(217), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1209), 2, + sym_brace_expression, + sym__expression, + STATE(1224), 2, + sym_simple_expansion, + sym_expansion, + STATE(1290), 2, sym__word_like, sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + ACTIONS(203), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1217), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [131035] = 22, - ACTIONS(2007), 1, + [138976] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(5087), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(5097), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(5101), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(5103), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(5107), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(5113), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(5119), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(5121), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(5123), 1, sym__brace_expr_start, - ACTIONS(7363), 1, - anon_sym_LF, - ACTIONS(7365), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(2631), 1, sym_string, - STATE(3614), 1, + STATE(3563), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(5115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(2608), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(2639), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(2666), 2, + sym__word_like, + sym_concatenation, + ACTIONS(5105), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2008), 3, - sym__word_like, - sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + STATE(2632), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [131113] = 22, - ACTIONS(2007), 1, + [139047] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7071), 1, + ACTIONS(3499), 1, sym_word, - ACTIONS(7075), 1, + ACTIONS(3501), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(3505), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(3507), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(3513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(3515), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(3519), 1, sym__backtick_open, - ACTIONS(7095), 1, + ACTIONS(3521), 1, sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(3523), 1, sym__brace_expr_start, - ACTIONS(7233), 1, - anon_sym_LF, - ACTIONS(7367), 1, - anon_sym_RPAREN, - STATE(2741), 1, + STATE(1763), 1, sym_string, - STATE(3614), 1, + STATE(3539), 1, sym__word_part, - ACTIONS(7091), 2, + ACTIONS(3517), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, + STATE(1667), 2, + sym_simple_expansion, + sym_expansion, + STATE(1777), 2, sym_brace_expression, sym__expression, - STATE(2752), 2, + STATE(1834), 2, + sym__word_like, + sym_concatenation, + ACTIONS(3503), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1652), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [139118] = 20, + ACTIONS(113), 1, + aux_sym_brace_expression_token1, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(119), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(127), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(135), 1, + sym__backtick_open, + ACTIONS(137), 1, + sym__dollar_literal, + ACTIONS(139), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2324), 1, + sym_word, + STATE(1292), 1, + sym_string, + STATE(3526), 1, + sym__word_part, + ACTIONS(129), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1242), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + STATE(1273), 2, + sym_brace_expression, + sym__expression, + STATE(1394), 2, + sym__word_like, + sym_concatenation, + ACTIONS(115), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2019), 3, + STATE(1334), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [139189] = 20, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6970), 1, + sym_word, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3401), 2, sym__word_like, sym_concatenation, - aux_sym_array_repeat1, - STATE(2743), 5, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [131191] = 10, - ACTIONS(2007), 1, + [139260] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, - anon_sym_LT_LT, - ACTIONS(3298), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, - sym__file_descriptor, - STATE(2283), 1, - sym_heredoc_redirect, - ACTIONS(7371), 2, + ACTIONS(6601), 6, anon_sym_AMP, anon_sym_PIPE, - STATE(2098), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(3292), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7369), 13, + anon_sym_LT_LT, + ACTIONS(6603), 23, + sym__heredoc_newline, + sym__file_descriptor, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -162761,28 +169716,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [131244] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3296), 1, - anon_sym_LT_LT, - ACTIONS(3298), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, - sym__file_descriptor, - STATE(2283), 1, - sym_heredoc_redirect, - ACTIONS(7375), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2052), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(3292), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(3294), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -162790,42 +169723,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7373), 13, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [131297] = 10, - ACTIONS(2007), 1, + anon_sym_LT_LT_DASH, + [139297] = 20, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3377), 1, + sym_word, + ACTIONS(3387), 1, + aux_sym_brace_expression_token1, + ACTIONS(3391), 1, + anon_sym_DOLLAR, + ACTIONS(3393), 1, + anon_sym_DQUOTE, + ACTIONS(3397), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3399), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3401), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3403), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3409), 1, + sym__backtick_open, + ACTIONS(3411), 1, + sym__dollar_literal, + ACTIONS(3413), 1, + sym__brace_expr_start, + STATE(2104), 1, + sym_string, + STATE(3523), 1, + sym__word_part, + ACTIONS(3405), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2100), 2, + sym_brace_expression, + sym__expression, + STATE(2109), 2, + sym_simple_expansion, + sym_expansion, + STATE(2148), 2, + sym__word_like, + sym_concatenation, + ACTIONS(3395), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2108), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [139368] = 20, + ACTIONS(599), 1, + aux_sym_brace_expression_token1, + ACTIONS(603), 1, + anon_sym_DOLLAR, + ACTIONS(605), 1, + anon_sym_DQUOTE, + ACTIONS(607), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(609), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(611), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(613), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(621), 1, + sym__backtick_open, + ACTIONS(623), 1, + sym__dollar_literal, + ACTIONS(625), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2816), 1, + sym_word, + STATE(1586), 1, + sym_string, + STATE(3543), 1, + sym__word_part, + ACTIONS(615), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1617), 2, + sym_brace_expression, + sym__expression, + STATE(1618), 2, + sym_simple_expansion, + sym_expansion, + STATE(1715), 2, + sym__word_like, + sym_concatenation, + ACTIONS(601), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1588), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [139439] = 20, + ACTIONS(479), 1, + aux_sym_brace_expression_token1, + ACTIONS(483), 1, + anon_sym_DOLLAR, + ACTIONS(485), 1, + anon_sym_DQUOTE, + ACTIONS(487), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(489), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(491), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(493), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(501), 1, + sym__backtick_open, + ACTIONS(503), 1, + sym__dollar_literal, + ACTIONS(505), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3129), 1, + sym_word, + STATE(1555), 1, + sym_string, + STATE(3561), 1, + sym__word_part, + ACTIONS(495), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1552), 2, + sym_brace_expression, + sym__expression, + STATE(1558), 2, + sym_simple_expansion, + sym_expansion, + STATE(1761), 2, + sym__word_like, + sym_concatenation, + ACTIONS(481), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1557), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [139510] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(6300), 1, + sym__concat, + ACTIONS(7677), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(7680), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(7683), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7379), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2202), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(7671), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7155), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(7674), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -162833,122 +169910,435 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7377), 13, - ts_builtin_sym_end, + ACTIONS(7152), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [131350] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [139563] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, - anon_sym_LT_LT, - ACTIONS(3298), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, - sym__file_descriptor, - STATE(2283), 1, - sym_heredoc_redirect, - ACTIONS(7383), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(3292), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(3294), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7381), 13, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [131403] = 10, - ACTIONS(2007), 1, + ACTIONS(3639), 1, + sym_word, + ACTIONS(3641), 1, + aux_sym_brace_expression_token1, + ACTIONS(3645), 1, + anon_sym_DOLLAR, + ACTIONS(3647), 1, + anon_sym_DQUOTE, + ACTIONS(3649), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3651), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3653), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3655), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3659), 1, + sym__backtick_open, + ACTIONS(3661), 1, + sym__dollar_literal, + ACTIONS(3663), 1, + sym__brace_expr_start, + STATE(1670), 1, + sym_string, + STATE(3540), 1, + sym__word_part, + ACTIONS(3657), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1693), 2, + sym_simple_expansion, + sym_expansion, + STATE(1783), 2, + sym_brace_expression, + sym__expression, + STATE(1856), 2, + sym__word_like, + sym_concatenation, + ACTIONS(3643), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1671), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [139634] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, - anon_sym_LT_LT, - ACTIONS(3298), 1, - anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, - sym__file_descriptor, - STATE(2283), 1, - sym_heredoc_redirect, - ACTIONS(7387), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2046), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(3292), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(3294), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7385), 13, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [131456] = 5, - ACTIONS(2007), 1, + ACTIONS(6970), 1, + sym_word, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3412), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [139705] = 20, + ACTIONS(1167), 1, sym_comment, - STATE(2283), 1, - sym_heredoc_redirect, - STATE(2096), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7391), 6, + ACTIONS(2600), 1, + sym_word, + ACTIONS(2602), 1, + aux_sym_brace_expression_token1, + ACTIONS(2606), 1, + anon_sym_DOLLAR, + ACTIONS(2608), 1, + anon_sym_DQUOTE, + ACTIONS(2610), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2612), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2614), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2616), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2620), 1, + sym__backtick_open, + ACTIONS(2622), 1, + sym__dollar_literal, + ACTIONS(2624), 1, + sym__brace_expr_start, + STATE(1369), 1, + sym_string, + STATE(3535), 1, + sym__word_part, + ACTIONS(2618), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1376), 2, + sym_simple_expansion, + sym_expansion, + STATE(1451), 2, + sym_brace_expression, + sym__expression, + STATE(1525), 2, + sym__word_like, + sym_concatenation, + ACTIONS(2604), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1370), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [139776] = 20, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3271), 1, + sym_word, + ACTIONS(3273), 1, + aux_sym_brace_expression_token1, + ACTIONS(3277), 1, + anon_sym_DOLLAR, + ACTIONS(3279), 1, + anon_sym_DQUOTE, + ACTIONS(3281), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3283), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3285), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3287), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3291), 1, + sym__backtick_open, + ACTIONS(3293), 1, + sym__dollar_literal, + ACTIONS(3295), 1, + sym__brace_expr_start, + STATE(1655), 1, + sym_string, + STATE(3533), 1, + sym__word_part, + ACTIONS(3289), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1672), 2, + sym_simple_expansion, + sym_expansion, + STATE(1779), 2, + sym_brace_expression, + sym__expression, + STATE(1862), 2, + sym__word_like, + sym_concatenation, + ACTIONS(3275), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1656), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [139847] = 20, + ACTIONS(315), 1, + aux_sym_brace_expression_token1, + ACTIONS(319), 1, + anon_sym_DOLLAR, + ACTIONS(321), 1, + anon_sym_DQUOTE, + ACTIONS(323), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(325), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(329), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(337), 1, + sym__backtick_open, + ACTIONS(339), 1, + sym__dollar_literal, + ACTIONS(341), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3200), 1, + sym_word, + STATE(1622), 1, + sym_string, + STATE(3529), 1, + sym__word_part, + ACTIONS(331), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1596), 2, + sym_brace_expression, + sym__expression, + STATE(1626), 2, + sym_simple_expansion, + sym_expansion, + STATE(1772), 2, + sym__word_like, + sym_concatenation, + ACTIONS(317), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1625), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [139918] = 20, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6970), 1, + sym_word, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3419), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [139989] = 20, + ACTIONS(599), 1, + aux_sym_brace_expression_token1, + ACTIONS(603), 1, + anon_sym_DOLLAR, + ACTIONS(605), 1, + anon_sym_DQUOTE, + ACTIONS(607), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(609), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(611), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(613), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(621), 1, + sym__backtick_open, + ACTIONS(623), 1, + sym__dollar_literal, + ACTIONS(625), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2816), 1, + sym_word, + STATE(1586), 1, + sym_string, + STATE(3543), 1, + sym__word_part, + ACTIONS(615), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1617), 2, + sym_brace_expression, + sym__expression, + STATE(1618), 2, + sym_simple_expansion, + sym_expansion, + STATE(1718), 2, + sym__word_like, + sym_concatenation, + ACTIONS(601), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1588), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [140060] = 20, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3271), 1, + sym_word, + ACTIONS(3273), 1, + aux_sym_brace_expression_token1, + ACTIONS(3277), 1, + anon_sym_DOLLAR, + ACTIONS(3279), 1, + anon_sym_DQUOTE, + ACTIONS(3281), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3283), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3285), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3287), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3291), 1, + sym__backtick_open, + ACTIONS(3293), 1, + sym__dollar_literal, + ACTIONS(3295), 1, + sym__brace_expr_start, + STATE(1655), 1, + sym_string, + STATE(3533), 1, + sym__word_part, + ACTIONS(3289), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1672), 2, + sym_simple_expansion, + sym_expansion, + STATE(1779), 2, + sym_brace_expression, + sym__expression, + STATE(1859), 2, + sym__word_like, + sym_concatenation, + ACTIONS(3275), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1656), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [140131] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7688), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(7389), 22, + ACTIONS(7686), 23, + sym__heredoc_newline, sym__file_descriptor, ts_builtin_sym_end, anon_sym_LF, @@ -162971,28 +170361,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [131499] = 10, - ACTIONS(2007), 1, + [140168] = 20, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(4963), 1, + sym_word, + ACTIONS(4973), 1, + aux_sym_brace_expression_token1, + ACTIONS(4977), 1, + anon_sym_DOLLAR, + ACTIONS(4979), 1, + anon_sym_DQUOTE, + ACTIONS(4983), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4985), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4987), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4989), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4995), 1, + sym__backtick_open, + ACTIONS(4997), 1, + sym__dollar_literal, + ACTIONS(4999), 1, + sym__brace_expr_start, + STATE(2621), 1, + sym_string, + STATE(3568), 1, + sym__word_part, + ACTIONS(4991), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2598), 2, + sym_simple_expansion, + sym_expansion, + STATE(2609), 2, + sym_brace_expression, + sym__expression, + STATE(2668), 2, + sym__word_like, + sym_concatenation, + ACTIONS(4981), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2624), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [140239] = 20, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6970), 1, + sym_word, + ACTIONS(6978), 1, + aux_sym_brace_expression_token1, + ACTIONS(6982), 1, + anon_sym_DOLLAR, + ACTIONS(6984), 1, + anon_sym_DQUOTE, + ACTIONS(6986), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6988), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6990), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6992), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6996), 1, + sym__backtick_open, + ACTIONS(6998), 1, + sym__dollar_literal, + ACTIONS(7000), 1, + sym__brace_expr_start, + STATE(3352), 1, + sym_string, + STATE(3520), 1, + sym__word_part, + ACTIONS(6994), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3343), 2, + sym_simple_expansion, + sym_expansion, + STATE(3351), 2, + sym_brace_expression, + sym__expression, + STATE(3424), 2, + sym__word_like, + sym_concatenation, + ACTIONS(6980), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3342), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [140310] = 20, + ACTIONS(55), 1, + aux_sym_brace_expression_token1, + ACTIONS(59), 1, + anon_sym_DOLLAR, + ACTIONS(61), 1, + anon_sym_DQUOTE, + ACTIONS(63), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(65), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(67), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(69), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(77), 1, + sym__backtick_open, + ACTIONS(79), 1, + sym__dollar_literal, + ACTIONS(81), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2253), 1, + sym_word, + STATE(1265), 1, + sym_string, + STATE(3512), 1, + sym__word_part, + ACTIONS(71), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1331), 2, + sym_brace_expression, + sym__expression, + STATE(1342), 2, + sym_simple_expansion, + sym_expansion, + STATE(1475), 2, + sym__word_like, + sym_concatenation, + ACTIONS(57), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1338), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [140381] = 20, + ACTIONS(479), 1, + aux_sym_brace_expression_token1, + ACTIONS(483), 1, + anon_sym_DOLLAR, + ACTIONS(485), 1, + anon_sym_DQUOTE, + ACTIONS(487), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(489), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(491), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(493), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(501), 1, + sym__backtick_open, + ACTIONS(503), 1, + sym__dollar_literal, + ACTIONS(505), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3129), 1, + sym_word, + STATE(1555), 1, + sym_string, + STATE(3561), 1, + sym__word_part, + ACTIONS(495), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1552), 2, + sym_brace_expression, + sym__expression, + STATE(1558), 2, + sym_simple_expansion, + sym_expansion, + STATE(1764), 2, + sym__word_like, + sym_concatenation, + ACTIONS(481), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1557), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [140452] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(6300), 1, + sym__concat, + ACTIONS(7677), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(7680), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(7683), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7395), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2203), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(7671), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7176), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(7674), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163000,42 +170598,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7393), 13, - ts_builtin_sym_end, + ACTIONS(7173), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [131552] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [140505] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(6300), 1, + sym__concat, + ACTIONS(7677), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(7680), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(7683), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7399), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2204), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(7671), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7182), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(7674), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163043,42 +170640,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7397), 13, - ts_builtin_sym_end, + ACTIONS(7179), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [131605] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [140558] = 20, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(3885), 1, + sym_word, + ACTIONS(3887), 1, + aux_sym_brace_expression_token1, + ACTIONS(3891), 1, + anon_sym_DOLLAR, + ACTIONS(3893), 1, + anon_sym_DQUOTE, + ACTIONS(3895), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3897), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3899), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3901), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3905), 1, + sym__backtick_open, + ACTIONS(3907), 1, + sym__dollar_literal, + ACTIONS(3909), 1, + sym__brace_expr_start, + STATE(1740), 1, + sym_string, + STATE(3515), 1, + sym__word_part, + ACTIONS(3903), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1748), 2, + sym_simple_expansion, + sym_expansion, + STATE(1801), 2, + sym_brace_expression, + sym__expression, + STATE(1841), 2, + sym__word_like, + sym_concatenation, + ACTIONS(3889), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1741), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [140629] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7696), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(7699), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(7702), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7403), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2089), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(7690), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7330), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(7693), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163086,80 +170731,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7401), 13, - ts_builtin_sym_end, + ACTIONS(7328), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [131658] = 5, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [140679] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(7405), 1, - sym__concat, - STATE(2040), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, + ACTIONS(7707), 1, + aux_sym_brace_expression_token1, + ACTIONS(7709), 1, + aux_sym__brace_element_token1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, + ACTIONS(7715), 1, + anon_sym_DQUOTE, + ACTIONS(7719), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 18, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, sym__backtick_open, - sym__dollar_literal, + ACTIONS(7731), 1, sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + STATE(2894), 1, + sym_string, + ACTIONS(7705), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2256), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [140747] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3461), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131701] = 10, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [140817] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7410), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7322), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163167,80 +170870,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7408), 13, - ts_builtin_sym_end, + ACTIONS(7320), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [131754] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7414), 1, - anon_sym_LF, - STATE(2108), 1, - aux_sym_program_repeat1, - ACTIONS(7412), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7416), 18, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [131797] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [140867] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7420), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2202), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7470), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163248,42 +170910,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7418), 13, - ts_builtin_sym_end, + ACTIONS(7468), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [131850] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [140917] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7424), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2060), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7474), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163291,42 +170950,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7422), 13, - ts_builtin_sym_end, + ACTIONS(7472), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [131903] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [140967] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7428), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2102), 2, + STATE(2203), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7486), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163334,42 +170990,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7426), 13, - ts_builtin_sym_end, + ACTIONS(7484), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [131956] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141017] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7432), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7508), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163377,42 +171030,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7430), 13, - ts_builtin_sym_end, + ACTIONS(7506), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132009] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141067] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7436), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2204), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7552), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163420,42 +171070,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7434), 13, - ts_builtin_sym_end, + ACTIONS(7550), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132062] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141117] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7440), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2056), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7564), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163463,50 +171110,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7438), 13, - ts_builtin_sym_end, + ACTIONS(7562), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132115] = 5, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141167] = 10, + ACTIONS(1167), 1, sym_comment, - STATE(2283), 1, + ACTIONS(2784), 1, + anon_sym_LT_LT, + ACTIONS(2786), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2808), 1, + sym__file_descriptor, + STATE(2475), 1, sym_heredoc_redirect, - STATE(2106), 2, + STATE(2205), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(7444), 6, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7442), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(7560), 4, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163514,29 +171150,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [132158] = 10, - ACTIONS(2007), 1, + ACTIONS(7558), 8, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141217] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7448), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2058), 2, + STATE(2210), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7426), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163544,42 +171190,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7446), 13, - ts_builtin_sym_end, + ACTIONS(7424), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132211] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141267] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7452), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2057), 2, + STATE(2211), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7236), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163587,42 +171230,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7450), 13, - ts_builtin_sym_end, + ACTIONS(7234), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132264] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141317] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7456), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7244), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163630,42 +171270,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7454), 13, - ts_builtin_sym_end, + ACTIONS(7242), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132317] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141367] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7460), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2037), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7270), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163673,42 +171310,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7458), 13, - ts_builtin_sym_end, + ACTIONS(7268), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132370] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141417] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7464), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7278), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163716,42 +171350,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7462), 13, - ts_builtin_sym_end, + ACTIONS(7276), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132423] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141467] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7468), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7288), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163759,42 +171390,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7466), 13, - ts_builtin_sym_end, + ACTIONS(7286), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132476] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141517] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7472), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2212), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7288), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163802,42 +171430,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7470), 13, - ts_builtin_sym_end, + ACTIONS(7286), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132529] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141567] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7476), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2213), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7359), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163845,42 +171470,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7474), 13, - ts_builtin_sym_end, + ACTIONS(7357), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132582] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141617] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7480), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2217), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7365), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163888,42 +171510,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7478), 13, - ts_builtin_sym_end, + ACTIONS(7363), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132635] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141667] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7484), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2094), 2, + STATE(2220), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7380), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163931,42 +171550,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7482), 13, - ts_builtin_sym_end, + ACTIONS(7378), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132688] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141717] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7488), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7384), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -163974,42 +171590,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7486), 13, - ts_builtin_sym_end, + ACTIONS(7382), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132741] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141767] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7492), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2055), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7388), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164017,42 +171630,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7490), 13, - ts_builtin_sym_end, + ACTIONS(7386), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132794] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141817] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7496), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2034), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7396), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164060,42 +171670,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7494), 13, - ts_builtin_sym_end, + ACTIONS(7394), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132847] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141867] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7500), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7432), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164103,80 +171710,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7498), 13, - ts_builtin_sym_end, + ACTIONS(7430), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132900] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7502), 1, - anon_sym_LF, - STATE(2064), 1, - aux_sym_program_repeat1, - ACTIONS(958), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(956), 18, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [132943] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141917] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7507), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2083), 2, + STATE(2222), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7436), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164184,42 +171750,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7505), 13, - ts_builtin_sym_end, + ACTIONS(7434), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [132996] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [141967] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7436), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2225), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7444), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164227,42 +171790,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7434), 13, - ts_builtin_sym_end, + ACTIONS(7442), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133049] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142017] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7511), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2226), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7448), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164270,42 +171830,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7509), 13, - ts_builtin_sym_end, + ACTIONS(7446), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133102] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142067] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7515), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2063), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7452), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164313,42 +171870,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7513), 13, - ts_builtin_sym_end, + ACTIONS(7450), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133155] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142117] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7519), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2228), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7456), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164356,42 +171910,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7517), 13, - ts_builtin_sym_end, + ACTIONS(7454), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133208] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142167] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7523), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2069), 2, + STATE(2229), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7452), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164399,42 +171950,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7521), 13, - ts_builtin_sym_end, + ACTIONS(7450), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133261] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142217] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7523), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7490), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164442,42 +171990,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7521), 13, - ts_builtin_sym_end, + ACTIONS(7488), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133314] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142267] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7527), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2054), 2, + STATE(2235), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7494), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164485,42 +172030,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7525), 13, - ts_builtin_sym_end, + ACTIONS(7492), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133367] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142317] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7531), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2066), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7512), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164528,42 +172070,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7529), 13, - ts_builtin_sym_end, + ACTIONS(7510), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133420] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142367] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7444), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2038), 2, + STATE(2236), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7524), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164571,42 +172110,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7442), 13, - ts_builtin_sym_end, + ACTIONS(7522), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133473] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142417] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7535), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2237), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7528), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164614,42 +172150,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7533), 13, - ts_builtin_sym_end, + ACTIONS(7526), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133526] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142467] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7436), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7532), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164657,42 +172190,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7434), 13, - ts_builtin_sym_end, + ACTIONS(7530), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133579] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142517] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7539), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7536), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164700,42 +172230,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7537), 13, - ts_builtin_sym_end, + ACTIONS(7534), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133632] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142567] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7519), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2067), 2, + STATE(2239), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7540), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164743,42 +172270,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7517), 13, - ts_builtin_sym_end, + ACTIONS(7538), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133685] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142617] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7531), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2076), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7548), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164786,42 +172310,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7529), 13, - ts_builtin_sym_end, + ACTIONS(7546), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133738] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142667] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7543), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7556), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164829,42 +172350,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7541), 13, - ts_builtin_sym_end, + ACTIONS(7554), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133791] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142717] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7547), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2240), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7228), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164872,42 +172390,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7545), 13, - ts_builtin_sym_end, + ACTIONS(7226), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133844] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142767] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7551), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2101), 2, + STATE(2241), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7556), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164915,42 +172430,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7549), 13, - ts_builtin_sym_end, + ACTIONS(7554), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133897] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142817] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7555), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2243), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7228), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -164958,42 +172470,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7553), 13, - ts_builtin_sym_end, + ACTIONS(7226), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [133950] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142867] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7559), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2075), 2, + STATE(2244), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7228), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165001,42 +172510,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7557), 13, - ts_builtin_sym_end, + ACTIONS(7226), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134003] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142917] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7563), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2247), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7410), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165044,42 +172550,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7561), 13, - ts_builtin_sym_end, + ACTIONS(7408), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134056] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [142967] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7567), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2107), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7414), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165087,42 +172590,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7565), 13, - ts_builtin_sym_end, + ACTIONS(7412), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134109] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143017] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7531), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2047), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7440), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165130,42 +172630,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7529), 13, - ts_builtin_sym_end, + ACTIONS(7438), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134162] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143067] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7551), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2099), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7504), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165173,42 +172670,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7549), 13, - ts_builtin_sym_end, + ACTIONS(7502), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134215] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143117] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7571), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2249), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7284), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165216,80 +172710,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7569), 13, - ts_builtin_sym_end, + ACTIONS(7282), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134268] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7573), 1, - sym__concat, - STATE(2040), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 18, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [134311] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143167] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7571), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2041), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7326), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165297,42 +172750,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7569), 13, - ts_builtin_sym_end, + ACTIONS(7324), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134364] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143217] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7577), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2080), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7248), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165340,50 +172790,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7575), 13, - ts_builtin_sym_end, + ACTIONS(7246), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134417] = 5, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143267] = 10, + ACTIONS(1167), 1, sym_comment, - STATE(2283), 1, + ACTIONS(2784), 1, + anon_sym_LT_LT, + ACTIONS(2786), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2808), 1, + sym__file_descriptor, + STATE(2475), 1, sym_heredoc_redirect, - STATE(2036), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(7428), 6, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7426), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(7369), 4, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165391,29 +172830,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [134460] = 10, - ACTIONS(2007), 1, + ACTIONS(7367), 8, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143317] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7581), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2250), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7355), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165421,42 +172870,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7579), 13, - ts_builtin_sym_end, + ACTIONS(7353), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134513] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143367] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7585), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7248), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165464,42 +172910,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7583), 13, - ts_builtin_sym_end, + ACTIONS(7246), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134566] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143417] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7597), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(7600), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(7603), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7589), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(7591), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7594), 7, + ACTIONS(7248), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165507,42 +172950,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7587), 13, - ts_builtin_sym_end, + ACTIONS(7246), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134619] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143467] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7608), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2071), 2, + STATE(2251), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7355), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165550,42 +172990,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7606), 13, - ts_builtin_sym_end, + ACTIONS(7353), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134672] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143517] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7612), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2252), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7369), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165593,42 +173030,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7610), 13, - ts_builtin_sym_end, + ACTIONS(7367), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134725] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143567] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7616), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7516), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165636,42 +173070,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7614), 13, - ts_builtin_sym_end, + ACTIONS(7514), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134778] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143617] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7620), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2081), 2, + STATE(2254), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7520), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165679,42 +173110,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7618), 13, - ts_builtin_sym_end, + ACTIONS(7518), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134831] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143667] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7616), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7392), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165722,42 +173150,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7614), 13, - ts_builtin_sym_end, + ACTIONS(7390), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134884] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143717] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7391), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7252), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165765,42 +173190,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7389), 13, - ts_builtin_sym_end, + ACTIONS(7250), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134937] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143767] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7624), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7252), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165808,42 +173230,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7622), 13, - ts_builtin_sym_end, + ACTIONS(7250), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [134990] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143817] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7628), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2095), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7373), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165851,42 +173270,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7626), 13, - ts_builtin_sym_end, + ACTIONS(7371), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [135043] = 10, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143867] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7511), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2103), 2, + STATE(2255), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7400), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165894,50 +173310,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7509), 13, - ts_builtin_sym_end, + ACTIONS(7398), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [135096] = 5, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143917] = 10, + ACTIONS(1167), 1, sym_comment, - STATE(2283), 1, + ACTIONS(2784), 1, + anon_sym_LT_LT, + ACTIONS(2786), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2808), 1, + sym__file_descriptor, + STATE(2475), 1, sym_heredoc_redirect, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(7399), 6, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7397), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(7544), 4, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165945,29 +173350,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [135139] = 10, - ACTIONS(2007), 1, + ACTIONS(7542), 8, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [143967] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3296), 1, + ACTIONS(2784), 1, anon_sym_LT_LT, - ACTIONS(3298), 1, + ACTIONS(2786), 1, anon_sym_LT_LT_DASH, - ACTIONS(3320), 1, + ACTIONS(2808), 1, sym__file_descriptor, - STATE(2283), 1, + STATE(2475), 1, sym_heredoc_redirect, - ACTIONS(7632), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2096), 2, + STATE(2189), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(3292), 3, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(3294), 7, + ACTIONS(7318), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165975,122 +173390,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7630), 13, - ts_builtin_sym_end, + ACTIONS(7316), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [135192] = 5, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [144017] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(7634), 1, - anon_sym_LF, - STATE(2064), 1, - aux_sym_program_repeat1, - ACTIONS(6351), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7636), 18, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135235] = 3, - ACTIONS(2007), 1, + ACTIONS(7737), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [144085] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(6235), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, + ACTIONS(7741), 1, + aux_sym_brace_expression_token1, + ACTIONS(7744), 1, + aux_sym__brace_element_token1, + ACTIONS(7747), 1, + sym_number, + ACTIONS(7750), 1, anon_sym_DOLLAR, + ACTIONS(7753), 1, + anon_sym_DQUOTE, + ACTIONS(7759), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7762), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 19, - sym__concat, + ACTIONS(7765), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7768), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7774), 1, sym__backtick_open, - sym__dollar_literal, + ACTIONS(7777), 1, sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + STATE(2894), 1, + sym_string, + ACTIONS(7739), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + ACTIONS(7756), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [144153] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7780), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3454), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135273] = 5, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2191), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [144223] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7638), 1, - sym__concat, - STATE(2122), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 6, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2784), 1, + anon_sym_LT_LT, + ACTIONS(2786), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2808), 1, + sym__file_descriptor, + STATE(2475), 1, + sym_heredoc_redirect, + STATE(2263), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6231), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(7256), 4, anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7254), 8, + sym__heredoc_newline, + anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [144273] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2784), 1, + anon_sym_LT_LT, + ACTIONS(2786), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2808), 1, + sym__file_descriptor, + STATE(2475), 1, + sym_heredoc_redirect, + STATE(2264), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(2780), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(7260), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166098,71 +173618,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [135315] = 3, - ACTIONS(2007), 1, + ACTIONS(7258), 8, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [144323] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, + ACTIONS(7707), 1, + aux_sym_brace_expression_token1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, + ACTIONS(7715), 1, + anon_sym_DQUOTE, + ACTIONS(7719), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 19, - sym__concat, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, sym__backtick_open, - sym__dollar_literal, + ACTIONS(7731), 1, sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7782), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3493), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2262), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [144393] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3445), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135353] = 5, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [144463] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7640), 1, - sym_heredoc_body, - ACTIONS(7642), 1, - sym_heredoc_end, - ACTIONS(6205), 6, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(2784), 1, + anon_sym_LT_LT, + ACTIONS(2786), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2808), 1, + sym__file_descriptor, + STATE(2475), 1, + sym_heredoc_redirect, + STATE(2189), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6207), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(7296), 4, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166170,755 +173758,1117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [135395] = 3, - ACTIONS(2007), 1, + ACTIONS(7294), 8, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [144513] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 11, - anon_sym_BANG, + ACTIONS(2784), 1, + anon_sym_LT_LT, + ACTIONS(2786), 1, + anon_sym_LT_LT_DASH, + ACTIONS(2808), 1, + sym__file_descriptor, + STATE(2475), 1, + sym_heredoc_redirect, + STATE(2189), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(2780), 3, anon_sym_LT, anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + anon_sym_AMP_GT, + ACTIONS(7300), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + ACTIONS(2782), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7298), 8, + sym__heredoc_newline, + anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + anon_sym_PIPE_AMP, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [144563] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3391), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135433] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [144633] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3408), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135471] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [144703] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5868), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7784), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3393), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135509] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2268), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [144773] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5904), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3406), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135547] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [144843] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7786), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3453), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135585] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2270), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [144913] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5988), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3459), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135623] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [144983] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6165), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7788), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3484), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135661] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2272), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [145053] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6175), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3489), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135699] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [145123] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5980), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7790), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3380), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135737] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7644), 1, - sym__concat, - STATE(2122), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6237), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [135779] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2274), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [145193] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6000), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3442), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135817] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [145263] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6030), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7792), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3409), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135855] = 20, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2276), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [145333] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7075), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(7095), 1, - sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(2741), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3614), 1, - sym__word_part, - ACTIONS(7091), 2, + STATE(3415), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, - sym_brace_expression, - sym__expression, - STATE(2752), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1995), 3, - sym__word_like, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2743), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [135927] = 3, - ACTIONS(2007), 1, + [145403] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6066), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7794), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3475), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135965] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2278), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [145473] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, + ACTIONS(7707), 1, + aux_sym_brace_expression_token1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, + ACTIONS(7715), 1, + anon_sym_DQUOTE, + ACTIONS(7719), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 19, - sym__concat, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, sym__backtick_open, - sym__dollar_literal, + ACTIONS(7731), 1, sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3479), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, sym_raw_string, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136003] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [145543] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7796), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3377), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136041] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2280), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [145613] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5832), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3385), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136079] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [145683] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, + ACTIONS(7707), 1, + aux_sym_brace_expression_token1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, + ACTIONS(7715), 1, + anon_sym_DQUOTE, + ACTIONS(7719), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 19, - sym__concat, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, sym__backtick_open, - sym__dollar_literal, + ACTIONS(7731), 1, sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7798), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3398), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2282), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [145753] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3404), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136117] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [145823] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 11, - anon_sym_BANG, + STATE(2475), 1, + sym_heredoc_redirect, + STATE(2301), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7256), 8, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(7254), 17, + sym__heredoc_newline, + sym__file_descriptor, + anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + anon_sym_PIPE_AMP, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [145863] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7800), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3413), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136155] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2285), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [145933] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 19, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3416), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136193] = 5, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [146003] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7647), 1, - sym_heredoc_body, - ACTIONS(7649), 1, - sym_heredoc_end, - ACTIONS(6213), 6, + STATE(2475), 1, + sym_heredoc_redirect, + STATE(2302), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7260), 8, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6215), 22, + ACTIONS(7258), 17, + sym__heredoc_newline, sym__file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166927,623 +174877,733 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [136235] = 4, + [146043] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(7651), 1, - aux_sym__conditional_token1, - ACTIONS(7416), 3, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - ACTIONS(7412), 26, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_BANG_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7802), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3427), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136275] = 20, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2288), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [146113] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7075), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(7095), 1, - sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(2741), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3614), 1, - sym__word_part, - ACTIONS(7091), 2, + STATE(3430), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, - sym_brace_expression, - sym__expression, - STATE(2752), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1998), 3, - sym__word_like, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2743), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [136347] = 21, - ACTIONS(2007), 1, + [146183] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6989), 1, - sym_word, - ACTIONS(6997), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(7005), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(7017), 1, - sym__dollar_literal, - ACTIONS(7019), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(3390), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7804), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3859), 1, - sym__case_patterns, - ACTIONS(7013), 2, + STATE(3441), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, + STATE(2290), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [136421] = 21, - ACTIONS(2007), 1, + [146253] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6989), 1, - sym_word, - ACTIONS(6997), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(7005), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(7017), 1, - sym__dollar_literal, - ACTIONS(7019), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(3390), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3572), 1, - sym__word_part, - STATE(3706), 1, - sym__case_patterns, - ACTIONS(7013), 2, + STATE(3446), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(3421), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [136495] = 4, - ACTIONS(2007), 1, + [146323] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 18, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7806), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3455), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136535] = 3, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2292), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [146393] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, + ACTIONS(7707), 1, + aux_sym_brace_expression_token1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, + ACTIONS(7715), 1, + anon_sym_DQUOTE, + ACTIONS(7719), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 19, - sym__concat, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, sym__backtick_open, - sym__dollar_literal, + ACTIONS(7731), 1, sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3458), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [146463] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7808), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3470), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136573] = 20, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2294), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [146533] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7075), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(7095), 1, - sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(2741), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3614), 1, - sym__word_part, - ACTIONS(7091), 2, + STATE(3472), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, - sym_brace_expression, - sym__expression, - STATE(2752), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1994), 3, - sym__word_like, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2743), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [136645] = 20, - ACTIONS(2007), 1, + [146603] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 1, - sym_word, - ACTIONS(7075), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(7095), 1, - sym__dollar_literal, - ACTIONS(7097), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(2741), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7810), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3614), 1, - sym__word_part, - ACTIONS(7091), 2, + STATE(3480), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2718), 2, - sym_brace_expression, - sym__expression, - STATE(2752), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1996), 3, - sym__word_like, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2743), 5, + STATE(2296), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [136717] = 3, - ACTIONS(2007), 1, + [146673] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6046), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, + ACTIONS(7707), 1, + aux_sym_brace_expression_token1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, + ACTIONS(7715), 1, + anon_sym_DQUOTE, + ACTIONS(7719), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 19, - sym__concat, + ACTIONS(7723), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, sym__backtick_open, - sym__dollar_literal, + ACTIONS(7731), 1, sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3481), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [146743] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, + ACTIONS(7713), 1, + anon_sym_DOLLAR, + ACTIONS(7715), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7729), 1, + sym__backtick_open, + ACTIONS(7731), 1, + sym__brace_expr_start, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7812), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, + sym_string, + STATE(3492), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136755] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6000), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5998), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [136792] = 20, - ACTIONS(2007), 1, + STATE(2896), 2, + sym_simple_expansion, + sym_expansion, + STATE(2298), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [146813] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(2613), 1, - sym_word, - ACTIONS(2615), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(2619), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(2621), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(2623), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2625), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2627), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2629), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2633), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(2635), 1, - sym__dollar_literal, - ACTIONS(2637), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(1429), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3590), 1, - sym__word_part, - ACTIONS(2631), 2, + STATE(3495), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1428), 2, - sym_brace_expression, - sym__expression, - STATE(1458), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1657), 2, - sym__word_like, - sym_concatenation, - ACTIONS(2617), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1432), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [136863] = 20, - ACTIONS(2007), 1, + [146883] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(3290), 1, - sym_word, - ACTIONS(3300), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(3304), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3322), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(3324), 1, - sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(2153), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7814), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3605), 1, - sym__word_part, - ACTIONS(3318), 2, + STATE(3426), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2155), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(2193), 2, + STATE(2300), 3, sym_brace_expression, + aux_sym__brace_element, sym__expression, - STATE(2292), 2, - sym__word_like, - sym_concatenation, - ACTIONS(3308), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2154), 5, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [136934] = 20, - ACTIONS(2007), 1, + [146953] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, - sym_word, - ACTIONS(4543), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(4547), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(4549), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(4551), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4553), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4555), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4557), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4561), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(4563), 1, - sym__dollar_literal, - ACTIONS(4565), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(1764), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3604), 1, - sym__word_part, - ACTIONS(4559), 2, + STATE(3371), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1747), 2, - sym_brace_expression, - sym__expression, - STATE(1780), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1910), 2, - sym__word_like, - sym_concatenation, - ACTIONS(4545), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1766), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [137005] = 3, - ACTIONS(2007), 1, + [147023] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 6, + STATE(2475), 1, + sym_heredoc_redirect, + STATE(2189), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7296), 8, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6452), 23, - sym__concat, + ACTIONS(7294), 17, + sym__heredoc_newline, sym__file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167552,33 +175612,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [137042] = 4, - ACTIONS(2007), 1, + [147063] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7653), 1, - sym_heredoc_end, - ACTIONS(6252), 6, + STATE(2475), 1, + sym_heredoc_redirect, + STATE(2189), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7300), 8, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6254), 22, + ACTIONS(7298), 17, + sym__heredoc_newline, sym__file_descriptor, - ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167587,9626 +175647,2070 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [137081] = 20, - ACTIONS(2007), 1, + [147103] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(4541), 1, - sym_word, - ACTIONS(4543), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(4547), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(4549), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(4551), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4553), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4555), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4557), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4561), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(4563), 1, - sym__dollar_literal, - ACTIONS(4565), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(1764), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7816), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3604), 1, - sym__word_part, - ACTIONS(4559), 2, + STATE(3465), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1747), 2, - sym_brace_expression, - sym__expression, - STATE(1780), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1955), 2, - sym__word_like, - sym_concatenation, - ACTIONS(4545), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1766), 5, + STATE(2304), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [137152] = 20, - ACTIONS(2007), 1, + [147173] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(2447), 1, - sym_word, - ACTIONS(2449), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(2453), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(2457), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2459), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2461), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2463), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2467), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(2469), 1, - sym__dollar_literal, - ACTIONS(2471), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(1365), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3570), 1, - sym__word_part, - ACTIONS(2465), 2, + STATE(3373), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1395), 2, - sym_brace_expression, - sym__expression, - STATE(1409), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1500), 2, - sym__word_like, - sym_concatenation, - ACTIONS(2451), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1389), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [137223] = 20, - ACTIONS(433), 1, + [147243] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(437), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(439), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(441), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(443), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(445), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(455), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(457), 1, - sym__dollar_literal, - ACTIONS(459), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3124), 1, - sym_word, - STATE(1519), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7818), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3560), 1, - sym__word_part, - ACTIONS(449), 2, + STATE(3423), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1513), 2, - sym_brace_expression, - sym__expression, - STATE(1522), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1704), 2, - sym__word_like, - sym_concatenation, - ACTIONS(435), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1521), 5, + STATE(2306), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [137294] = 20, - ACTIONS(433), 1, + [147313] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(437), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(439), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(441), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(443), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(445), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(455), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(457), 1, - sym__dollar_literal, - ACTIONS(459), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3124), 1, - sym_word, - STATE(1519), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3560), 1, - sym__word_part, - ACTIONS(449), 2, + STATE(3429), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1513), 2, - sym_brace_expression, - sym__expression, - STATE(1522), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1706), 2, - sym__word_like, - sym_concatenation, - ACTIONS(435), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1521), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [137365] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5818), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5816), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [137402] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5868), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5866), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [137439] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5904), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5902), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [137476] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5934), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5932), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [137513] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5988), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5986), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [137550] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6165), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6163), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [137587] = 3, - ACTIONS(2007), 1, + [147383] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6175), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6173), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [137624] = 20, - ACTIONS(499), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(503), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(505), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(507), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(509), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(511), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(513), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(521), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(523), 1, - sym__dollar_literal, - ACTIONS(525), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2712), 1, - sym_word, - STATE(1585), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7820), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3569), 1, - sym__word_part, - ACTIONS(515), 2, + STATE(3467), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1580), 2, - sym_brace_expression, - sym__expression, - STATE(1589), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1718), 2, - sym__word_like, - sym_concatenation, - ACTIONS(501), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1588), 5, + STATE(2308), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [137695] = 20, - ACTIONS(499), 1, + [147453] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(503), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(505), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(507), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(509), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(511), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(513), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(521), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(523), 1, - sym__dollar_literal, - ACTIONS(525), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2712), 1, - sym_word, - STATE(1585), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3569), 1, - sym__word_part, - ACTIONS(515), 2, + STATE(3488), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1580), 2, - sym_brace_expression, - sym__expression, - STATE(1589), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1722), 2, - sym__word_like, - sym_concatenation, - ACTIONS(501), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1588), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [137766] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7655), 1, - sym_heredoc_end, - ACTIONS(6258), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6260), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [137805] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5980), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5978), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [137842] = 20, - ACTIONS(2007), 1, + [147523] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(3290), 1, - sym_word, - ACTIONS(3300), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(3304), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3322), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(3324), 1, - sym__dollar_literal, - ACTIONS(3326), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(2153), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7822), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3605), 1, - sym__word_part, - ACTIONS(3318), 2, + STATE(3378), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2155), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(2193), 2, + STATE(2310), 3, sym_brace_expression, + aux_sym__brace_element, sym__expression, - STATE(2227), 2, - sym__word_like, - sym_concatenation, - ACTIONS(3308), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2154), 5, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [137913] = 20, - ACTIONS(201), 1, + [147593] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(205), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(207), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(209), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(211), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(213), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(215), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(223), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(225), 1, - sym__dollar_literal, - ACTIONS(227), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - ACTIONS(1991), 1, - sym_word, - ACTIONS(2007), 1, - sym_comment, - STATE(1214), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3585), 1, - sym__word_part, - ACTIONS(217), 2, + STATE(3383), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1201), 2, - sym_brace_expression, - sym__expression, - STATE(1206), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1305), 2, - sym__word_like, - sym_concatenation, - ACTIONS(203), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1183), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [137984] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6030), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6028), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [138021] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6046), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6044), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [138058] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6066), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6064), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [138095] = 3, - ACTIONS(2007), 1, + [147663] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6074), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [138132] = 20, - ACTIONS(565), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(569), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(571), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(573), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(575), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(577), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(579), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(587), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(589), 1, - sym__dollar_literal, - ACTIONS(591), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2698), 1, - sym_word, - STATE(1535), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7824), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3575), 1, - sym__word_part, - ACTIONS(581), 2, + STATE(3396), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1512), 2, - sym_brace_expression, - sym__expression, - STATE(1538), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1732), 2, - sym__word_like, - sym_concatenation, - ACTIONS(567), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1537), 5, + STATE(2312), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [138203] = 20, - ACTIONS(565), 1, + [147733] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(569), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(571), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(573), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(575), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(577), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(579), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(587), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(589), 1, - sym__dollar_literal, - ACTIONS(591), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2698), 1, - sym_word, - STATE(1535), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3575), 1, - sym__word_part, - ACTIONS(581), 2, + STATE(3400), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1512), 2, - sym_brace_expression, - sym__expression, - STATE(1538), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1734), 2, - sym__word_like, - sym_concatenation, - ACTIONS(567), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1537), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [138274] = 20, - ACTIONS(55), 1, + [147803] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(59), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(61), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(63), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(65), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(67), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(77), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(79), 1, - sym__dollar_literal, - ACTIONS(81), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2093), 1, - sym_word, - STATE(1314), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7826), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3594), 1, - sym__word_part, - ACTIONS(71), 2, + STATE(3411), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1311), 2, - sym_brace_expression, - sym__expression, - STATE(1350), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1398), 2, - sym__word_like, - sym_concatenation, - ACTIONS(57), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1333), 5, + STATE(2314), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [138345] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5806), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5804), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [138382] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5832), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5830), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [138419] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5838), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5836), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [138456] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5844), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5842), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [138493] = 20, - ACTIONS(2007), 1, + [147873] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, - sym_word, - ACTIONS(2475), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(2479), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(2481), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(2483), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2485), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2487), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2489), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2493), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(2495), 1, - sym__dollar_literal, - ACTIONS(2497), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(1470), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3586), 1, - sym__word_part, - ACTIONS(2491), 2, + STATE(3420), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1401), 2, - sym_brace_expression, - sym__expression, - STATE(1486), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1612), 2, - sym__word_like, - sym_concatenation, - ACTIONS(2477), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1471), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [138564] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5882), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5880), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [138601] = 20, - ACTIONS(2007), 1, + [147943] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(2473), 1, - sym_word, - ACTIONS(2475), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(2479), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(2481), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(2483), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2485), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2487), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2489), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2493), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(2495), 1, - sym__dollar_literal, - ACTIONS(2497), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(1470), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7828), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3586), 1, - sym__word_part, - ACTIONS(2491), 2, + STATE(3428), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1401), 2, - sym_brace_expression, - sym__expression, - STATE(1486), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1613), 2, - sym__word_like, - sym_concatenation, - ACTIONS(2477), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1471), 5, + STATE(2316), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [138672] = 20, - ACTIONS(2007), 1, + [148013] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, - sym_word, - ACTIONS(3535), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(3539), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(3541), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(3543), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3545), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3547), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3549), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3553), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(3555), 1, - sym__dollar_literal, - ACTIONS(3557), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(1701), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3587), 1, - sym__word_part, - ACTIONS(3551), 2, + STATE(3432), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1725), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1861), 2, + STATE(2257), 3, sym_brace_expression, + aux_sym__brace_element, sym__expression, - STATE(1954), 2, - sym__word_like, - sym_concatenation, - ACTIONS(3537), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1703), 5, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [138743] = 20, - ACTIONS(2007), 1, + [148083] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(3533), 1, - sym_word, - ACTIONS(3535), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(3539), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(3541), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(3543), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3545), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3547), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3549), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3553), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(3555), 1, - sym__dollar_literal, - ACTIONS(3557), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(1701), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7830), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3587), 1, - sym__word_part, - ACTIONS(3551), 2, + STATE(3447), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1725), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1861), 2, + STATE(2318), 3, sym_brace_expression, + aux_sym__brace_element, sym__expression, - STATE(1960), 2, - sym__word_like, - sym_concatenation, - ACTIONS(3537), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1703), 5, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [138814] = 20, - ACTIONS(2007), 1, + [148153] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(3403), 1, - sym_word, - ACTIONS(3405), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(3409), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(3411), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(3413), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3415), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3419), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3423), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(3425), 1, - sym__dollar_literal, - ACTIONS(3427), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(1717), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3611), 1, - sym__word_part, - ACTIONS(3421), 2, + STATE(3451), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1858), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1871), 2, + STATE(2257), 3, sym_brace_expression, + aux_sym__brace_element, sym__expression, - STATE(1895), 2, - sym__word_like, - sym_concatenation, - ACTIONS(3407), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1723), 5, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [138885] = 20, - ACTIONS(55), 1, + [148223] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(59), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(61), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(63), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(65), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(67), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(77), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(79), 1, - sym__dollar_literal, - ACTIONS(81), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2093), 1, - sym_word, - STATE(1314), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7832), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3594), 1, - sym__word_part, - ACTIONS(71), 2, + STATE(3463), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1311), 2, - sym_brace_expression, - sym__expression, - STATE(1350), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1420), 2, - sym__word_like, - sym_concatenation, - ACTIONS(57), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1333), 5, + STATE(2320), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [138956] = 20, - ACTIONS(2007), 1, + [148293] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(4741), 1, - sym_word, - ACTIONS(4743), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(4747), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(4749), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(4751), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4753), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4755), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4757), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4761), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(4763), 1, - sym__dollar_literal, - ACTIONS(4765), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(1802), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3580), 1, - sym__word_part, - ACTIONS(4759), 2, + STATE(3466), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1756), 2, - sym_brace_expression, - sym__expression, - STATE(1818), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1909), 2, - sym__word_like, - sym_concatenation, - ACTIONS(4745), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1804), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [139027] = 20, - ACTIONS(113), 1, + [148363] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(117), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(119), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(121), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(123), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(127), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(135), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(137), 1, - sym__dollar_literal, - ACTIONS(139), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2222), 1, - sym_word, - STATE(1317), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7834), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3574), 1, - sym__word_part, - ACTIONS(129), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1232), 2, - sym_brace_expression, - sym__expression, - STATE(1326), 2, - sym_simple_expansion, - sym_expansion, - STATE(1449), 2, - sym__word_like, - sym_concatenation, - ACTIONS(115), 3, - sym_number, + STATE(3476), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, sym_raw_string, sym_ansi_c_string, - STATE(1318), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [139098] = 20, - ACTIONS(113), 1, - aux_sym_brace_expression_token1, - ACTIONS(117), 1, - anon_sym_DOLLAR, - ACTIONS(119), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(127), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(135), 1, - sym__backtick_open, - ACTIONS(137), 1, - sym__dollar_literal, - ACTIONS(139), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2222), 1, - sym_word, - STATE(1317), 1, - sym_string, - STATE(3574), 1, - sym__word_part, - ACTIONS(129), 2, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1232), 2, - sym_brace_expression, - sym__expression, - STATE(1326), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1463), 2, - sym__word_like, - sym_concatenation, - ACTIONS(115), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1318), 5, + STATE(2322), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [139169] = 3, - ACTIONS(2007), 1, + [148433] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6351), 11, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - anon_sym_EQ_TILDE, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7636), 18, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, + ACTIONS(7711), 1, sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [139206] = 20, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(4741), 1, - sym_word, - ACTIONS(4743), 1, - aux_sym_brace_expression_token1, - ACTIONS(4747), 1, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(4749), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(4751), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4753), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4755), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4757), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4761), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(4763), 1, - sym__dollar_literal, - ACTIONS(4765), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(1802), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3580), 1, - sym__word_part, - ACTIONS(4759), 2, + STATE(3482), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1756), 2, - sym_brace_expression, - sym__expression, - STATE(1818), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1918), 2, - sym__word_like, - sym_concatenation, - ACTIONS(4745), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1804), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [139277] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6446), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6448), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [139314] = 20, - ACTIONS(2007), 1, + [148503] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5185), 1, - sym_word, - ACTIONS(5195), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(5199), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(5201), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(5205), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5207), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5209), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5211), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5217), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(5219), 1, - sym__dollar_literal, - ACTIONS(5221), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(2670), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7836), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3579), 1, - sym__word_part, - ACTIONS(5213), 2, + STATE(3496), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2665), 2, - sym_brace_expression, - sym__expression, - STATE(2680), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(2723), 2, - sym__word_like, - sym_concatenation, - ACTIONS(5203), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2671), 5, + STATE(2324), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [139385] = 20, - ACTIONS(2007), 1, + [148573] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 1, - sym_word, - ACTIONS(5073), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(5077), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(5083), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5085), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5087), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5089), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(5097), 1, - sym__dollar_literal, - ACTIONS(5099), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(2691), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3564), 1, - sym__word_part, - ACTIONS(5091), 2, + STATE(3502), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2673), 2, - sym_brace_expression, - sym__expression, - STATE(2701), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(2750), 2, - sym__word_like, - sym_concatenation, - ACTIONS(5081), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2692), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [139456] = 20, - ACTIONS(2007), 1, + [148643] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 1, - sym_word, - ACTIONS(5073), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(5077), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(5079), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(5083), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5085), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5087), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5089), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(5097), 1, - sym__dollar_literal, - ACTIONS(5099), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(2691), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7838), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3564), 1, - sym__word_part, - ACTIONS(5091), 2, + STATE(3372), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2673), 2, - sym_brace_expression, - sym__expression, - STATE(2701), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(2753), 2, - sym__word_like, - sym_concatenation, - ACTIONS(5081), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2692), 5, + STATE(2326), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [139527] = 4, - ACTIONS(2007), 1, + [148713] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6223), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [139566] = 20, - ACTIONS(339), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(343), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(345), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(347), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(349), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(351), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(353), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(361), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(363), 1, - sym__dollar_literal, - ACTIONS(365), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2851), 1, - sym_word, - STATE(1664), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3622), 1, - sym__word_part, - ACTIONS(355), 2, + STATE(3374), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1648), 2, - sym_brace_expression, - sym__expression, - STATE(1674), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1781), 2, - sym__word_like, - sym_concatenation, - ACTIONS(341), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1665), 5, + STATE(2257), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [139637] = 20, - ACTIONS(2007), 1, + [148783] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6989), 1, - sym_word, - ACTIONS(6997), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(7005), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(7017), 1, - sym__dollar_literal, - ACTIONS(7019), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(3390), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7840), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3572), 1, - sym__word_part, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3495), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, + STATE(3381), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [139708] = 20, - ACTIONS(339), 1, - aux_sym_brace_expression_token1, - ACTIONS(343), 1, - anon_sym_DOLLAR, - ACTIONS(345), 1, - anon_sym_DQUOTE, - ACTIONS(347), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(351), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(361), 1, - sym__backtick_open, - ACTIONS(363), 1, - sym__dollar_literal, - ACTIONS(365), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2851), 1, - sym_word, - STATE(1664), 1, - sym_string, - STATE(3622), 1, - sym__word_part, - ACTIONS(355), 2, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1648), 2, - sym_brace_expression, - sym__expression, - STATE(1674), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1785), 2, - sym__word_like, - sym_concatenation, - ACTIONS(341), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1665), 5, + STATE(2328), 3, + sym_brace_expression, + aux_sym__brace_element, + sym__expression, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [139779] = 3, - ACTIONS(2007), 1, + [148853] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6436), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [139816] = 20, - ACTIONS(659), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(663), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(665), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(667), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(669), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(671), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(673), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(681), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(683), 1, - sym__dollar_literal, - ACTIONS(685), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2783), 1, - sym_word, - STATE(1688), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7735), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3600), 1, - sym__word_part, - ACTIONS(675), 2, + STATE(3384), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1501), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1654), 2, + STATE(2257), 3, sym_brace_expression, + aux_sym__brace_element, sym__expression, - STATE(1806), 2, - sym__word_like, - sym_concatenation, - ACTIONS(661), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1689), 5, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [139887] = 20, - ACTIONS(659), 1, + [148923] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(663), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(665), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(667), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(669), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(671), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(673), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(681), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(683), 1, - sym__dollar_literal, - ACTIONS(685), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2783), 1, - sym_word, - STATE(1688), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7842), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3600), 1, - sym__word_part, - ACTIONS(675), 2, + STATE(3390), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1501), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1654), 2, + STATE(2265), 3, sym_brace_expression, + aux_sym__brace_element, sym__expression, - STATE(1808), 2, - sym__word_like, - sym_concatenation, - ACTIONS(661), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1689), 5, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [139958] = 20, - ACTIONS(2007), 1, + [148993] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(2118), 1, - sym_word, - ACTIONS(2124), 1, + ACTIONS(7707), 1, aux_sym_brace_expression_token1, - ACTIONS(2128), 1, + ACTIONS(7711), 1, + sym_number, + ACTIONS(7713), 1, anon_sym_DOLLAR, - ACTIONS(2130), 1, + ACTIONS(7715), 1, anon_sym_DQUOTE, - ACTIONS(2132), 1, + ACTIONS(7719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2134), 1, + ACTIONS(7721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2136), 1, + ACTIONS(7723), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2138), 1, + ACTIONS(7725), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2142), 1, + ACTIONS(7729), 1, sym__backtick_open, - ACTIONS(2144), 1, - sym__dollar_literal, - ACTIONS(2146), 1, + ACTIONS(7731), 1, sym__brace_expr_start, - STATE(1239), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(7844), 1, + aux_sym__brace_element_token1, + STATE(2894), 1, sym_string, - STATE(3608), 1, - sym__word_part, - ACTIONS(2140), 2, + STATE(3487), 1, + aux_sym_brace_expression_repeat1, + ACTIONS(7717), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(7727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1252), 2, + STATE(2896), 2, sym_simple_expansion, sym_expansion, - STATE(1355), 2, + STATE(2266), 3, sym_brace_expression, + aux_sym__brace_element, sym__expression, - STATE(1448), 2, - sym__word_like, - sym_concatenation, - ACTIONS(2126), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1240), 5, + STATE(2897), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [140029] = 20, - ACTIONS(201), 1, + [149063] = 18, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(2495), 1, aux_sym_brace_expression_token1, - ACTIONS(205), 1, + ACTIONS(2499), 1, anon_sym_DOLLAR, - ACTIONS(207), 1, + ACTIONS(2501), 1, anon_sym_DQUOTE, - ACTIONS(209), 1, + ACTIONS(2503), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(211), 1, + ACTIONS(2505), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(213), 1, + ACTIONS(2507), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(215), 1, + ACTIONS(2509), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(223), 1, + ACTIONS(2513), 1, sym__backtick_open, - ACTIONS(225), 1, - sym__dollar_literal, - ACTIONS(227), 1, + ACTIONS(2517), 1, sym__brace_expr_start, - ACTIONS(1991), 1, + ACTIONS(7846), 1, sym_word, - ACTIONS(2007), 1, - sym_comment, - STATE(1214), 1, + ACTIONS(7848), 1, + sym__dollar_literal, + STATE(1420), 1, sym_string, - STATE(3585), 1, - sym__word_part, - ACTIONS(217), 2, + ACTIONS(2511), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1201), 2, - sym_brace_expression, - sym__expression, - STATE(1206), 2, + STATE(1426), 2, sym_simple_expansion, sym_expansion, - STATE(1304), 2, - sym__word_like, - sym_concatenation, - ACTIONS(203), 3, + ACTIONS(2497), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1183), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [140100] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6235), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6237), 23, - sym__concat, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [140137] = 20, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2118), 1, - sym_word, - ACTIONS(2124), 1, - aux_sym_brace_expression_token1, - ACTIONS(2128), 1, - anon_sym_DOLLAR, - ACTIONS(2130), 1, - anon_sym_DQUOTE, - ACTIONS(2132), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2134), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2136), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2138), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2142), 1, - sym__backtick_open, - ACTIONS(2144), 1, - sym__dollar_literal, - ACTIONS(2146), 1, - sym__brace_expr_start, - STATE(1239), 1, - sym_string, - STATE(3608), 1, + STATE(1396), 3, sym__word_part, - ACTIONS(2140), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1252), 2, - sym_simple_expansion, - sym_expansion, - STATE(1355), 2, sym_brace_expression, sym__expression, - STATE(1373), 2, - sym__word_like, - sym_concatenation, - ACTIONS(2126), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1240), 5, + STATE(1421), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [140208] = 20, - ACTIONS(2007), 1, + [149128] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2613), 1, - sym_word, - ACTIONS(2615), 1, + ACTIONS(5097), 1, aux_sym_brace_expression_token1, - ACTIONS(2619), 1, + ACTIONS(5101), 1, anon_sym_DOLLAR, - ACTIONS(2621), 1, + ACTIONS(5103), 1, anon_sym_DQUOTE, - ACTIONS(2623), 1, + ACTIONS(5107), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2625), 1, + ACTIONS(5109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2627), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2629), 1, + ACTIONS(5113), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2633), 1, + ACTIONS(5119), 1, sym__backtick_open, - ACTIONS(2635), 1, - sym__dollar_literal, - ACTIONS(2637), 1, + ACTIONS(5123), 1, sym__brace_expr_start, - STATE(1429), 1, + ACTIONS(7850), 1, + sym_word, + ACTIONS(7852), 1, + sym__dollar_literal, + STATE(2631), 1, sym_string, - STATE(3590), 1, - sym__word_part, - ACTIONS(2631), 2, + ACTIONS(5115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1428), 2, - sym_brace_expression, - sym__expression, - STATE(1458), 2, + STATE(2639), 2, sym_simple_expansion, sym_expansion, - STATE(1656), 2, - sym__word_like, - sym_concatenation, - ACTIONS(2617), 3, + ACTIONS(5105), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1432), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [140279] = 20, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6989), 1, - sym_word, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, - sym__backtick_open, - ACTIONS(7017), 1, - sym__dollar_literal, - ACTIONS(7019), 1, - sym__brace_expr_start, - STATE(3390), 1, - sym_string, - STATE(3572), 1, + STATE(2611), 3, sym__word_part, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3395), 2, sym_brace_expression, sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3435), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, + STATE(2632), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [140350] = 20, - ACTIONS(2007), 1, + [149193] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3800), 1, - sym_word, - ACTIONS(3802), 1, + ACTIONS(2344), 1, aux_sym_brace_expression_token1, - ACTIONS(3806), 1, + ACTIONS(2348), 1, anon_sym_DOLLAR, - ACTIONS(3808), 1, + ACTIONS(2350), 1, anon_sym_DQUOTE, - ACTIONS(3810), 1, + ACTIONS(2352), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3812), 1, + ACTIONS(2354), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3814), 1, + ACTIONS(2356), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3816), 1, + ACTIONS(2358), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3820), 1, + ACTIONS(2362), 1, sym__backtick_open, - ACTIONS(3822), 1, - sym__dollar_literal, - ACTIONS(3824), 1, + ACTIONS(2366), 1, sym__brace_expr_start, - STATE(1832), 1, + ACTIONS(7854), 1, + sym_word, + ACTIONS(7856), 1, + sym__dollar_literal, + STATE(1293), 1, sym_string, - STATE(3615), 1, - sym__word_part, - ACTIONS(3818), 2, + ACTIONS(2360), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1762), 2, - sym_brace_expression, - sym__expression, - STATE(1839), 2, + STATE(1303), 2, sym_simple_expansion, sym_expansion, - STATE(1940), 2, - sym__word_like, - sym_concatenation, - ACTIONS(3804), 3, + ACTIONS(2346), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1833), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [140421] = 20, - ACTIONS(259), 1, - aux_sym_brace_expression_token1, - ACTIONS(263), 1, - anon_sym_DOLLAR, - ACTIONS(265), 1, - anon_sym_DQUOTE, - ACTIONS(267), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(269), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(271), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(273), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(281), 1, - sym__backtick_open, - ACTIONS(283), 1, - sym__dollar_literal, - ACTIONS(285), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2247), 1, - sym_word, - STATE(1250), 1, - sym_string, - STATE(3557), 1, + STATE(1262), 3, sym__word_part, - ACTIONS(275), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1224), 2, sym_brace_expression, sym__expression, - STATE(1291), 2, - sym_simple_expansion, - sym_expansion, - STATE(1404), 2, - sym__word_like, - sym_concatenation, - ACTIONS(261), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1251), 5, + STATE(1294), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [140492] = 20, - ACTIONS(2007), 1, + [149258] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, - sym_word, - ACTIONS(6997), 1, + ACTIONS(3887), 1, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, + ACTIONS(3891), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, + ACTIONS(3893), 1, anon_sym_DQUOTE, - ACTIONS(7005), 1, + ACTIONS(3895), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, + ACTIONS(3897), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, + ACTIONS(3899), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, + ACTIONS(3901), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(3905), 1, sym__backtick_open, - ACTIONS(7017), 1, - sym__dollar_literal, - ACTIONS(7019), 1, + ACTIONS(3909), 1, sym__brace_expr_start, - STATE(3390), 1, + ACTIONS(7858), 1, + sym_word, + ACTIONS(7860), 1, + sym__dollar_literal, + STATE(1740), 1, sym_string, - STATE(3572), 1, - sym__word_part, - ACTIONS(7013), 2, + ACTIONS(3903), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, + STATE(1748), 2, sym_simple_expansion, sym_expansion, - STATE(3451), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + ACTIONS(3889), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [140563] = 20, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2797), 1, - sym_word, - ACTIONS(2811), 1, - aux_sym_brace_expression_token1, - ACTIONS(2815), 1, - anon_sym_DOLLAR, - ACTIONS(2817), 1, - anon_sym_DQUOTE, - ACTIONS(2821), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2823), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2825), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2827), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2833), 1, - sym__backtick_open, - ACTIONS(2835), 1, - sym__dollar_literal, - ACTIONS(2837), 1, - sym__brace_expr_start, - STATE(2438), 1, - sym_string, - STATE(3568), 1, + STATE(1658), 3, sym__word_part, - ACTIONS(2829), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2435), 2, - sym_simple_expansion, - sym_expansion, - STATE(2445), 2, sym_brace_expression, sym__expression, - STATE(2541), 2, - sym__word_like, - sym_concatenation, - ACTIONS(2819), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2439), 5, + STATE(1741), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [140634] = 20, - ACTIONS(259), 1, + [149323] = 18, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6789), 1, aux_sym_brace_expression_token1, - ACTIONS(263), 1, + ACTIONS(6793), 1, anon_sym_DOLLAR, - ACTIONS(265), 1, + ACTIONS(6795), 1, anon_sym_DQUOTE, - ACTIONS(267), 1, + ACTIONS(6797), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(269), 1, + ACTIONS(6799), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(271), 1, + ACTIONS(6801), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(273), 1, + ACTIONS(6803), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(281), 1, + ACTIONS(6807), 1, sym__backtick_open, - ACTIONS(283), 1, - sym__dollar_literal, - ACTIONS(285), 1, + ACTIONS(6811), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2247), 1, + ACTIONS(7862), 1, sym_word, - STATE(1250), 1, + ACTIONS(7864), 1, + sym__dollar_literal, + STATE(3060), 1, sym_string, - STATE(3557), 1, - sym__word_part, - ACTIONS(275), 2, + ACTIONS(6805), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1224), 2, - sym_brace_expression, - sym__expression, - STATE(1291), 2, + STATE(3079), 2, sym_simple_expansion, sym_expansion, - STATE(1412), 2, - sym__word_like, - sym_concatenation, - ACTIONS(261), 3, + ACTIONS(6791), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1251), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [140705] = 20, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6989), 1, - sym_word, - ACTIONS(6997), 1, - aux_sym_brace_expression_token1, - ACTIONS(7001), 1, - anon_sym_DOLLAR, - ACTIONS(7003), 1, - anon_sym_DQUOTE, - ACTIONS(7005), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, - sym__backtick_open, - ACTIONS(7017), 1, - sym__dollar_literal, - ACTIONS(7019), 1, - sym__brace_expr_start, - STATE(3390), 1, - sym_string, - STATE(3572), 1, + STATE(3161), 3, sym__word_part, - ACTIONS(7013), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3395), 2, sym_brace_expression, sym__expression, - STATE(3396), 2, - sym_simple_expansion, - sym_expansion, - STATE(3457), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3394), 5, + STATE(3061), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [140776] = 20, - ACTIONS(2007), 1, + [149388] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6989), 1, - sym_word, - ACTIONS(6997), 1, + ACTIONS(3273), 1, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, + ACTIONS(3277), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, + ACTIONS(3279), 1, anon_sym_DQUOTE, - ACTIONS(7005), 1, + ACTIONS(3281), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, + ACTIONS(3283), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, + ACTIONS(3285), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, + ACTIONS(3287), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(3291), 1, sym__backtick_open, - ACTIONS(7017), 1, - sym__dollar_literal, - ACTIONS(7019), 1, + ACTIONS(3295), 1, sym__brace_expr_start, - STATE(3390), 1, + ACTIONS(7866), 1, + sym_word, + ACTIONS(7868), 1, + sym__dollar_literal, + STATE(1655), 1, sym_string, - STATE(3572), 1, - sym__word_part, - ACTIONS(7013), 2, + ACTIONS(3289), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3395), 2, - sym_brace_expression, - sym__expression, - STATE(3396), 2, + STATE(1672), 2, sym_simple_expansion, sym_expansion, - STATE(3571), 2, - sym__word_like, - sym_concatenation, - ACTIONS(6999), 3, + ACTIONS(3275), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(3394), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [140847] = 20, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2797), 1, - sym_word, - ACTIONS(2811), 1, - aux_sym_brace_expression_token1, - ACTIONS(2815), 1, - anon_sym_DOLLAR, - ACTIONS(2817), 1, - anon_sym_DQUOTE, - ACTIONS(2821), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2823), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2825), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2827), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2833), 1, - sym__backtick_open, - ACTIONS(2835), 1, - sym__dollar_literal, - ACTIONS(2837), 1, - sym__brace_expr_start, - STATE(2438), 1, - sym_string, - STATE(3568), 1, + STATE(1781), 3, sym__word_part, - ACTIONS(2829), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2435), 2, - sym_simple_expansion, - sym_expansion, - STATE(2445), 2, sym_brace_expression, sym__expression, - STATE(2556), 2, - sym__word_like, - sym_concatenation, - ACTIONS(2819), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2439), 5, + STATE(1656), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [140918] = 20, - ACTIONS(2007), 1, + [149453] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5185), 1, + ACTIONS(7870), 1, + sym__concat, + STATE(2337), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 9, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, sym_word, - ACTIONS(5195), 1, - aux_sym_brace_expression_token1, - ACTIONS(5199), 1, anon_sym_DOLLAR, - ACTIONS(5201), 1, - anon_sym_DQUOTE, - ACTIONS(5205), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5209), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5211), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5217), 1, + ACTIONS(6428), 16, sym__backtick_open, - ACTIONS(5219), 1, sym__dollar_literal, - ACTIONS(5221), 1, sym__brace_expr_start, - STATE(2670), 1, - sym_string, - STATE(3579), 1, - sym__word_part, - ACTIONS(5213), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2665), 2, - sym_brace_expression, - sym__expression, - STATE(2680), 2, - sym_simple_expansion, - sym_expansion, - STATE(2721), 2, - sym__word_like, - sym_concatenation, - ACTIONS(5203), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, sym_number, + anon_sym_DQUOTE, sym_raw_string, sym_ansi_c_string, - STATE(2671), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [140989] = 20, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3800), 1, - sym_word, - ACTIONS(3802), 1, - aux_sym_brace_expression_token1, - ACTIONS(3806), 1, - anon_sym_DOLLAR, - ACTIONS(3808), 1, - anon_sym_DQUOTE, - ACTIONS(3810), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3812), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3814), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3816), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3820), 1, - sym__backtick_open, - ACTIONS(3822), 1, - sym__dollar_literal, - ACTIONS(3824), 1, - sym__brace_expr_start, - STATE(1832), 1, - sym_string, - STATE(3615), 1, - sym__word_part, - ACTIONS(3818), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1762), 2, - sym_brace_expression, - sym__expression, - STATE(1839), 2, - sym_simple_expansion, - sym_expansion, - STATE(1946), 2, - sym__word_like, - sym_concatenation, - ACTIONS(3804), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1833), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [141060] = 20, - ACTIONS(2007), 1, + [149492] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2447), 1, - sym_word, - ACTIONS(2449), 1, + ACTIONS(3641), 1, aux_sym_brace_expression_token1, - ACTIONS(2453), 1, + ACTIONS(3645), 1, anon_sym_DOLLAR, - ACTIONS(2455), 1, + ACTIONS(3647), 1, anon_sym_DQUOTE, - ACTIONS(2457), 1, + ACTIONS(3649), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2459), 1, + ACTIONS(3651), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2461), 1, + ACTIONS(3653), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2463), 1, + ACTIONS(3655), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2467), 1, + ACTIONS(3659), 1, sym__backtick_open, - ACTIONS(2469), 1, - sym__dollar_literal, - ACTIONS(2471), 1, + ACTIONS(3663), 1, sym__brace_expr_start, - STATE(1365), 1, + ACTIONS(7873), 1, + sym_word, + ACTIONS(7875), 1, + sym__dollar_literal, + STATE(1670), 1, sym_string, - STATE(3570), 1, - sym__word_part, - ACTIONS(2465), 2, + ACTIONS(3657), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1395), 2, - sym_brace_expression, - sym__expression, - STATE(1409), 2, + STATE(1693), 2, sym_simple_expansion, sym_expansion, - STATE(1517), 2, - sym__word_like, - sym_concatenation, - ACTIONS(2451), 3, + ACTIONS(3643), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1389), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [141131] = 20, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3403), 1, - sym_word, - ACTIONS(3405), 1, - aux_sym_brace_expression_token1, - ACTIONS(3409), 1, - anon_sym_DOLLAR, - ACTIONS(3411), 1, - anon_sym_DQUOTE, - ACTIONS(3413), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3415), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3419), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3423), 1, - sym__backtick_open, - ACTIONS(3425), 1, - sym__dollar_literal, - ACTIONS(3427), 1, - sym__brace_expr_start, - STATE(1717), 1, - sym_string, - STATE(3611), 1, + STATE(1786), 3, sym__word_part, - ACTIONS(3421), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1858), 2, - sym_simple_expansion, - sym_expansion, - STATE(1871), 2, sym_brace_expression, sym__expression, - STATE(1897), 2, - sym__word_like, - sym_concatenation, - ACTIONS(3407), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1723), 5, + STATE(1671), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [141202] = 20, - ACTIONS(3), 1, + [149557] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, + ACTIONS(6817), 1, aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, + ACTIONS(6821), 1, anon_sym_DOLLAR, - ACTIONS(7667), 1, + ACTIONS(6823), 1, anon_sym_DQUOTE, - ACTIONS(7671), 1, + ACTIONS(6825), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, + ACTIONS(6827), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, + ACTIONS(6829), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, + ACTIONS(6831), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, + ACTIONS(6835), 1, sym__backtick_open, - ACTIONS(7683), 1, + ACTIONS(6839), 1, sym__brace_expr_start, - STATE(2920), 1, + ACTIONS(7877), 1, + sym_word, + ACTIONS(7879), 1, + sym__dollar_literal, + STATE(3162), 1, sym_string, - STATE(3505), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, + ACTIONS(6833), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2931), 2, + STATE(3131), 2, sym_simple_expansion, sym_expansion, - STATE(2232), 3, + ACTIONS(6819), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(3126), 3, + sym__word_part, sym_brace_expression, - aux_sym__brace_element, sym__expression, - STATE(2923), 5, + STATE(3163), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [141272] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, + [149622] = 18, + ACTIONS(55), 1, aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, + ACTIONS(59), 1, anon_sym_DOLLAR, - ACTIONS(7667), 1, + ACTIONS(61), 1, anon_sym_DQUOTE, - ACTIONS(7671), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3479), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [141342] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6252), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6254), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [141378] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7685), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [141446] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7687), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3449), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2223), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [141516] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3456), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [141586] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6555), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6557), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [141622] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7689), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3465), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2226), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [141692] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3487), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [141762] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6551), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6553), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [141798] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7691), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3437), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2229), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [141868] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3462), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [141938] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7693), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3506), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2231), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142008] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3519), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142078] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7697), 1, - aux_sym_brace_expression_token1, - ACTIONS(7700), 1, - aux_sym__brace_element_token1, - ACTIONS(7703), 1, - sym_number, - ACTIONS(7706), 1, - anon_sym_DOLLAR, - ACTIONS(7709), 1, - anon_sym_DQUOTE, - ACTIONS(7715), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7718), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7721), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7724), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7730), 1, - sym__backtick_open, - ACTIONS(7733), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - ACTIONS(7695), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - ACTIONS(7712), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7727), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142146] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7736), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3545), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2234), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142216] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3553), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142286] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3475), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142356] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7738), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3469), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2237), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142426] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3529), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142496] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7740), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3432), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2239), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142566] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3442), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142636] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7742), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3473), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2241), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142706] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3482), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142776] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7746), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7744), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [142812] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7748), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3532), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2244), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142882] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3543), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [142952] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7750), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3434), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2246), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143022] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3443), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143092] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7752), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3464), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2248), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143162] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3470), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143232] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7754), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3486), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2250), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143302] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3493), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143372] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7756), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3509), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2252), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143442] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3515), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143512] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6559), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6561), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [143548] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7758), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3531), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2255), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143618] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3533), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143688] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7762), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(7760), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2221), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143756] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7764), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3542), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2297), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143826] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7766), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3416), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2219), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143896] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7768), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3551), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2276), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [143966] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7770), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3554), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2261), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [144036] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3476), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [144106] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7772), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3508), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2263), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [144176] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3429), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [144246] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7774), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3483), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2265), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [144316] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3514), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [144386] = 11, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5816), 1, - sym__concat, - ACTIONS(7782), 1, - anon_sym_LT_LT, - ACTIONS(7785), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7788), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2376), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7776), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7215), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(7212), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(7779), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [144438] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7791), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3422), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2268), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [144508] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3426), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [144578] = 11, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5816), 1, - sym__concat, - ACTIONS(7782), 1, - anon_sym_LT_LT, - ACTIONS(7785), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7788), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2380), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7776), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7250), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(7247), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(7779), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [144630] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7793), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3431), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2271), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [144700] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3438), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [144770] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7795), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3452), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2273), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [144840] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3460), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [144910] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7797), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3471), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2275), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [144980] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3478), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [145050] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3423), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [145120] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7799), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3498), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2218), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [145190] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7801), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3466), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2279), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [145260] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3477), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [145330] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7803), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3520), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2281), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [145400] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3527), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [145470] = 11, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5816), 1, - sym__concat, - ACTIONS(7782), 1, - anon_sym_LT_LT, - ACTIONS(7785), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7788), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2382), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7776), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7240), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(7237), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(7779), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [145522] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6543), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6545), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [145558] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7805), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3503), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2285), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [145628] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3510), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [145698] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7809), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7807), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [145734] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7811), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3534), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2288), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [145804] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3536), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [145874] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6258), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6260), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [145910] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7813), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3550), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2291), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [145980] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3415), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [146050] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6547), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6549), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [146086] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7817), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7815), 22, - sym__file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [146122] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7819), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3480), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2295), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [146192] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3538), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [146262] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - ACTIONS(7821), 1, - aux_sym__brace_element_token1, - STATE(2920), 1, - sym_string, - STATE(3433), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2235), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [146332] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(7659), 1, - aux_sym_brace_expression_token1, - ACTIONS(7661), 1, - aux_sym__brace_element_token1, - ACTIONS(7663), 1, - sym_number, - ACTIONS(7665), 1, - anon_sym_DOLLAR, - ACTIONS(7667), 1, - anon_sym_DQUOTE, - ACTIONS(7671), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7673), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7675), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7677), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7681), 1, - sym__backtick_open, - ACTIONS(7683), 1, - sym__brace_expr_start, - STATE(2920), 1, - sym_string, - STATE(3547), 1, - aux_sym_brace_expression_repeat1, - ACTIONS(7669), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7679), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2931), 2, - sym_simple_expansion, - sym_expansion, - STATE(2232), 3, - sym_brace_expression, - aux_sym__brace_element, - sym__expression, - STATE(2923), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [146402] = 18, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3405), 1, - aux_sym_brace_expression_token1, - ACTIONS(3409), 1, - anon_sym_DOLLAR, - ACTIONS(3411), 1, - anon_sym_DQUOTE, - ACTIONS(3413), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3415), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3417), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3419), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3423), 1, - sym__backtick_open, - ACTIONS(3427), 1, - sym__brace_expr_start, - ACTIONS(7823), 1, - sym_word, - ACTIONS(7825), 1, - sym__dollar_literal, - STATE(1717), 1, - sym_string, - ACTIONS(3421), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1858), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3407), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1874), 3, - sym__word_part, - sym_brace_expression, - sym__expression, - STATE(1723), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [146467] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7391), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7389), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [146516] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2314), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7577), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7575), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [146565] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2318), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7375), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7373), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [146614] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2321), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7424), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7422), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [146663] = 18, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6296), 1, - aux_sym_brace_expression_token1, - ACTIONS(6300), 1, - anon_sym_DOLLAR, - ACTIONS(6302), 1, - anon_sym_DQUOTE, - ACTIONS(6304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6306), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6308), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6310), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6314), 1, - sym__backtick_open, - ACTIONS(6318), 1, - sym__brace_expr_start, - ACTIONS(7827), 1, - sym_word, - ACTIONS(7829), 1, - sym__dollar_literal, - STATE(2114), 1, - sym_string, - ACTIONS(6312), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2116), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(6298), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2109), 3, - sym__word_part, - sym_brace_expression, - sym__expression, - STATE(2115), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [146728] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7523), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7521), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [146777] = 18, - ACTIONS(499), 1, - aux_sym_brace_expression_token1, - ACTIONS(503), 1, - anon_sym_DOLLAR, - ACTIONS(505), 1, - anon_sym_DQUOTE, - ACTIONS(507), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(509), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(511), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(513), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(521), 1, - sym__backtick_open, - ACTIONS(525), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7831), 1, - sym_word, - ACTIONS(7833), 1, - sym__dollar_literal, - STATE(1585), 1, - sym_string, - ACTIONS(515), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1589), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(501), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1694), 3, - sym__word_part, - sym_brace_expression, - sym__expression, - STATE(1588), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [146842] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2324), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7523), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7521), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [146891] = 18, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2475), 1, - aux_sym_brace_expression_token1, - ACTIONS(2479), 1, - anon_sym_DOLLAR, - ACTIONS(2481), 1, - anon_sym_DQUOTE, - ACTIONS(2483), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2485), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2487), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2489), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2493), 1, - sym__backtick_open, - ACTIONS(2497), 1, - sym__brace_expr_start, - ACTIONS(7835), 1, - sym_word, - ACTIONS(7837), 1, - sym__dollar_literal, - STATE(1470), 1, - sym_string, - ACTIONS(2491), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1486), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(2477), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1434), 3, - sym__word_part, - sym_brace_expression, - sym__expression, - STATE(1471), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [146956] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2367), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7571), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7569), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147005] = 18, - ACTIONS(339), 1, - aux_sym_brace_expression_token1, - ACTIONS(343), 1, - anon_sym_DOLLAR, - ACTIONS(345), 1, - anon_sym_DQUOTE, - ACTIONS(347), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(349), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(351), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(353), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(361), 1, - sym__backtick_open, - ACTIONS(365), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7839), 1, - sym_word, - ACTIONS(7841), 1, - sym__dollar_literal, - STATE(1664), 1, - sym_string, - ACTIONS(355), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1674), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(341), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1649), 3, - sym__word_part, - sym_brace_expression, - sym__expression, - STATE(1665), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [147070] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7464), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7462), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147119] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2332), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7492), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7490), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147168] = 18, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5073), 1, - aux_sym_brace_expression_token1, - ACTIONS(5077), 1, - anon_sym_DOLLAR, - ACTIONS(5079), 1, - anon_sym_DQUOTE, - ACTIONS(5083), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5085), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5087), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5089), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5095), 1, - sym__backtick_open, - ACTIONS(5099), 1, - sym__brace_expr_start, - ACTIONS(7843), 1, - sym_word, - ACTIONS(7845), 1, - sym__dollar_literal, - STATE(2691), 1, - sym_string, - ACTIONS(5091), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2701), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(5081), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(2676), 3, - sym__word_part, - sym_brace_expression, - sym__expression, - STATE(2692), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [147233] = 5, - ACTIONS(2007), 1, - sym_comment, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7399), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7397), 16, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [147272] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7543), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7541), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147321] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2333), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7440), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7438), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147370] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2334), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7448), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7446), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147419] = 18, - ACTIONS(433), 1, - aux_sym_brace_expression_token1, - ACTIONS(437), 1, - anon_sym_DOLLAR, - ACTIONS(439), 1, - anon_sym_DQUOTE, - ACTIONS(441), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(443), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(445), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(447), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(455), 1, - sym__backtick_open, - ACTIONS(459), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7847), 1, - sym_word, - ACTIONS(7849), 1, - sym__dollar_literal, - STATE(1519), 1, - sym_string, - ACTIONS(449), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1522), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(435), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1550), 3, - sym__word_part, - sym_brace_expression, - sym__expression, - STATE(1521), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [147484] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7456), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7454), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147533] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7857), 1, - anon_sym_LT_LT, - ACTIONS(7860), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7863), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7851), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7589), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(7587), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(7854), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [147582] = 18, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3802), 1, - aux_sym_brace_expression_token1, - ACTIONS(3806), 1, - anon_sym_DOLLAR, - ACTIONS(3808), 1, - anon_sym_DQUOTE, - ACTIONS(3810), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3812), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3814), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3816), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3820), 1, - sym__backtick_open, - ACTIONS(3824), 1, - sym__brace_expr_start, - ACTIONS(7866), 1, - sym_word, - ACTIONS(7868), 1, - sym__dollar_literal, - STATE(1832), 1, - sym_string, - ACTIONS(3818), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1839), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3804), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1773), 3, - sym__word_part, - sym_brace_expression, - sym__expression, - STATE(1833), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [147647] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7488), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7486), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147696] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2336), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7515), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7513), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147745] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7432), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7430), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147794] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7519), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7517), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147843] = 18, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(3535), 1, - aux_sym_brace_expression_token1, - ACTIONS(3539), 1, - anon_sym_DOLLAR, - ACTIONS(3541), 1, - anon_sym_DQUOTE, - ACTIONS(3543), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3545), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3547), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3549), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3553), 1, - sym__backtick_open, - ACTIONS(3557), 1, - sym__brace_expr_start, - ACTIONS(7870), 1, - sym_word, - ACTIONS(7872), 1, - sym__dollar_literal, - STATE(1701), 1, - sym_string, - ACTIONS(3551), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1725), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(3537), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1868), 3, - sym__word_part, - sym_brace_expression, - sym__expression, - STATE(1703), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [147908] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2337), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7531), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7529), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [147957] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2338), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7519), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7517), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148006] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2341), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7531), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7529), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148055] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2342), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7531), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7529), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148104] = 5, - ACTIONS(2007), 1, - sym_comment, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7391), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7389), 16, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [148143] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2349), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7452), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7450), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148192] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7468), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7466), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148241] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7472), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7470), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148290] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7480), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7478), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148339] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2351), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7484), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7482), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148388] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7500), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7498), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148437] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7436), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7434), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148486] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7511), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7509), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148535] = 18, - ACTIONS(113), 1, - aux_sym_brace_expression_token1, - ACTIONS(117), 1, - anon_sym_DOLLAR, - ACTIONS(119), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(123), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(125), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(127), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(135), 1, - sym__backtick_open, - ACTIONS(139), 1, - sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7874), 1, - sym_word, - ACTIONS(7876), 1, - sym__dollar_literal, - STATE(1317), 1, - sym_string, - ACTIONS(129), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1326), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(115), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1238), 3, - sym__word_part, - sym_brace_expression, - sym__expression, - STATE(1318), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [148600] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2353), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7551), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7549), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148649] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7436), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7434), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148698] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7436), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7434), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148747] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2354), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7551), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7549), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148796] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2355), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7511), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7509), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148845] = 18, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6404), 1, - aux_sym_brace_expression_token1, - ACTIONS(6408), 1, - anon_sym_DOLLAR, - ACTIONS(6410), 1, - anon_sym_DQUOTE, - ACTIONS(6412), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6414), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6416), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6418), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6422), 1, - sym__backtick_open, - ACTIONS(6426), 1, - sym__brace_expr_start, - ACTIONS(7878), 1, - sym_word, - ACTIONS(7880), 1, - sym__dollar_literal, - STATE(3028), 1, - sym_string, - ACTIONS(6420), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3032), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(6406), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(3026), 3, - sym__word_part, - sym_brace_expression, - sym__expression, - STATE(3030), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [148910] = 5, - ACTIONS(2007), 1, - sym_comment, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2313), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7444), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7442), 16, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [148949] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2391), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7444), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7442), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [148998] = 18, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2449), 1, - aux_sym_brace_expression_token1, - ACTIONS(2453), 1, - anon_sym_DOLLAR, - ACTIONS(2455), 1, - anon_sym_DQUOTE, - ACTIONS(2457), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2459), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2461), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2463), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2467), 1, - sym__backtick_open, - ACTIONS(2471), 1, - sym__brace_expr_start, - ACTIONS(7882), 1, - sym_word, - ACTIONS(7884), 1, - sym__dollar_literal, - STATE(1365), 1, - sym_string, - ACTIONS(2465), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1409), 2, - sym_simple_expansion, - sym_expansion, - ACTIONS(2451), 3, - sym_number, - sym_raw_string, - sym_ansi_c_string, - STATE(1421), 3, - sym__word_part, - sym_brace_expression, - sym__expression, - STATE(1389), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [149063] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7476), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7474), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149112] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2360), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7507), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7505), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149161] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7581), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7579), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149210] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2372), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7371), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7369), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149259] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7616), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7614), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149308] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7616), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7614), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149357] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7624), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7622), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149406] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2363), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7628), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7626), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149455] = 10, - ACTIONS(2007), 1, + ACTIONS(65), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(67), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(69), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(77), 1, + sym__backtick_open, + ACTIONS(81), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2304), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7608), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7606), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149504] = 18, - ACTIONS(2007), 1, + ACTIONS(7881), 1, + sym_word, + ACTIONS(7883), 1, + sym__dollar_literal, + STATE(1265), 1, + sym_string, + ACTIONS(71), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1342), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(57), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1346), 3, + sym__word_part, + sym_brace_expression, + sym__expression, + STATE(1338), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [149687] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5195), 1, + ACTIONS(7647), 1, aux_sym_brace_expression_token1, - ACTIONS(5199), 1, + ACTIONS(7651), 1, anon_sym_DOLLAR, - ACTIONS(5201), 1, + ACTIONS(7653), 1, anon_sym_DQUOTE, - ACTIONS(5205), 1, + ACTIONS(7655), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5207), 1, + ACTIONS(7657), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5209), 1, + ACTIONS(7659), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5211), 1, + ACTIONS(7661), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5217), 1, + ACTIONS(7665), 1, sym__backtick_open, - ACTIONS(5221), 1, + ACTIONS(7669), 1, sym__brace_expr_start, - ACTIONS(7886), 1, + ACTIONS(7885), 1, sym_word, - ACTIONS(7888), 1, + ACTIONS(7887), 1, sym__dollar_literal, - STATE(2670), 1, + STATE(2055), 1, sym_string, - ACTIONS(5213), 2, + ACTIONS(7663), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2680), 2, + STATE(2059), 2, sym_simple_expansion, sym_expansion, - ACTIONS(5203), 3, + ACTIONS(7649), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2667), 3, + STATE(2044), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(2671), 5, + STATE(2057), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [149569] = 10, - ACTIONS(2007), 1, + [149752] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2310), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7527), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7525), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149618] = 10, - ACTIONS(2007), 1, + ACTIONS(7056), 1, + aux_sym_brace_expression_token1, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, + anon_sym_DQUOTE, + ACTIONS(7064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7066), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7068), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7070), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7074), 1, + sym__backtick_open, + ACTIONS(7078), 1, + sym__brace_expr_start, + ACTIONS(7889), 1, + sym_word, + ACTIONS(7891), 1, + sym__dollar_literal, + STATE(2703), 1, + sym_string, + ACTIONS(7072), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2701), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(7058), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2686), 3, + sym__word_part, + sym_brace_expression, + sym__expression, + STATE(2682), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [149817] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7555), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7553), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149667] = 5, - ACTIONS(2007), 1, + ACTIONS(3387), 1, + aux_sym_brace_expression_token1, + ACTIONS(3391), 1, + anon_sym_DOLLAR, + ACTIONS(3393), 1, + anon_sym_DQUOTE, + ACTIONS(3397), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3399), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3401), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3403), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3409), 1, + sym__backtick_open, + ACTIONS(3413), 1, + sym__brace_expr_start, + ACTIONS(7893), 1, + sym_word, + ACTIONS(7895), 1, + sym__dollar_literal, + STATE(2104), 1, + sym_string, + ACTIONS(3405), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2109), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(3395), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(2086), 3, + sym__word_part, + sym_brace_expression, + sym__expression, + STATE(2108), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [149882] = 18, + ACTIONS(113), 1, + aux_sym_brace_expression_token1, + ACTIONS(117), 1, + anon_sym_DOLLAR, + ACTIONS(119), 1, + anon_sym_DQUOTE, + ACTIONS(121), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(123), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(125), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(127), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(135), 1, + sym__backtick_open, + ACTIONS(139), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, sym_comment, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2330), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7428), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7426), 16, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [149706] = 10, - ACTIONS(2007), 1, + ACTIONS(7897), 1, + sym_word, + ACTIONS(7899), 1, + sym__dollar_literal, + STATE(1292), 1, + sym_string, + ACTIONS(129), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1242), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(115), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1276), 3, + sym__word_part, + sym_brace_expression, + sym__expression, + STATE(1334), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [149947] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7535), 4, + ACTIONS(7901), 1, + sym__concat, + STATE(2366), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7533), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149755] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7585), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7583), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149804] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, + ACTIONS(6435), 17, + sym__heredoc_newline, sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7547), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7545), 7, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -177214,30 +177718,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [149853] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2299), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7428), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -177245,15 +177725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - ACTIONS(7426), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [149902] = 18, + anon_sym_LT_LT_DASH, + [149986] = 18, ACTIONS(201), 1, aux_sym_brace_expression_token1, ACTIONS(205), 1, @@ -177272,996 +177745,606 @@ static const uint16_t ts_small_parse_table[] = { sym__backtick_open, ACTIONS(227), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7890), 1, + ACTIONS(7903), 1, sym_word, - ACTIONS(7892), 1, + ACTIONS(7905), 1, sym__dollar_literal, - STATE(1214), 1, + STATE(1216), 1, sym_string, ACTIONS(217), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1206), 2, + STATE(1224), 2, sym_simple_expansion, sym_expansion, ACTIONS(203), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1207), 3, + STATE(1210), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(1183), 5, + STATE(1217), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [149967] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7410), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7408), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [150016] = 18, - ACTIONS(2007), 1, + [150051] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2615), 1, + ACTIONS(6564), 1, aux_sym_brace_expression_token1, - ACTIONS(2619), 1, + ACTIONS(6568), 1, anon_sym_DOLLAR, - ACTIONS(2621), 1, + ACTIONS(6570), 1, anon_sym_DQUOTE, - ACTIONS(2623), 1, + ACTIONS(6572), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2625), 1, + ACTIONS(6574), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2627), 1, + ACTIONS(6576), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2629), 1, + ACTIONS(6578), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2633), 1, + ACTIONS(6582), 1, sym__backtick_open, - ACTIONS(2637), 1, + ACTIONS(6586), 1, sym__brace_expr_start, - ACTIONS(7894), 1, + ACTIONS(7907), 1, sym_word, - ACTIONS(7896), 1, + ACTIONS(7909), 1, sym__dollar_literal, - STATE(1429), 1, + STATE(2816), 1, sym_string, - ACTIONS(2631), 2, + ACTIONS(6580), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1458), 2, + STATE(2852), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2617), 3, + ACTIONS(6566), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1408), 3, + STATE(2795), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(1432), 5, + STATE(2848), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [150081] = 18, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2811), 1, + [150116] = 18, + ACTIONS(259), 1, aux_sym_brace_expression_token1, - ACTIONS(2815), 1, + ACTIONS(263), 1, anon_sym_DOLLAR, - ACTIONS(2817), 1, + ACTIONS(265), 1, anon_sym_DQUOTE, - ACTIONS(2821), 1, + ACTIONS(267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2823), 1, + ACTIONS(269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2825), 1, + ACTIONS(271), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2827), 1, + ACTIONS(273), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2833), 1, + ACTIONS(281), 1, sym__backtick_open, - ACTIONS(2837), 1, + ACTIONS(285), 1, sym__brace_expr_start, - ACTIONS(7898), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7911), 1, sym_word, - ACTIONS(7900), 1, + ACTIONS(7913), 1, sym__dollar_literal, - STATE(2438), 1, + STATE(1301), 1, sym_string, - ACTIONS(2829), 2, + ACTIONS(275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2435), 2, + STATE(1319), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2819), 3, + ACTIONS(261), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2455), 3, + STATE(1266), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(2439), 5, + STATE(1302), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [150146] = 18, - ACTIONS(2007), 1, + [150181] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6495), 1, + ACTIONS(4973), 1, aux_sym_brace_expression_token1, - ACTIONS(6499), 1, + ACTIONS(4977), 1, anon_sym_DOLLAR, - ACTIONS(6501), 1, + ACTIONS(4979), 1, anon_sym_DQUOTE, - ACTIONS(6503), 1, + ACTIONS(4983), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6505), 1, + ACTIONS(4985), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6507), 1, + ACTIONS(4987), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6509), 1, + ACTIONS(4989), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6513), 1, + ACTIONS(4995), 1, sym__backtick_open, - ACTIONS(6517), 1, + ACTIONS(4999), 1, sym__brace_expr_start, - ACTIONS(7902), 1, + ACTIONS(7915), 1, sym_word, - ACTIONS(7904), 1, + ACTIONS(7917), 1, sym__dollar_literal, - STATE(2916), 1, + STATE(2621), 1, sym_string, - ACTIONS(6511), 2, + ACTIONS(4991), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2941), 2, + STATE(2598), 2, sym_simple_expansion, sym_expansion, - ACTIONS(6497), 3, + ACTIONS(4981), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2948), 3, + STATE(2602), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(2917), 5, + STATE(2624), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [150211] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2362), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7559), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7557), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [150260] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7612), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7610), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [150309] = 18, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(4543), 1, + [150246] = 18, + ACTIONS(599), 1, aux_sym_brace_expression_token1, - ACTIONS(4547), 1, + ACTIONS(603), 1, anon_sym_DOLLAR, - ACTIONS(4549), 1, + ACTIONS(605), 1, anon_sym_DQUOTE, - ACTIONS(4551), 1, + ACTIONS(607), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4553), 1, + ACTIONS(609), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4555), 1, + ACTIONS(611), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4557), 1, + ACTIONS(613), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4561), 1, + ACTIONS(621), 1, sym__backtick_open, - ACTIONS(4565), 1, + ACTIONS(625), 1, sym__brace_expr_start, - ACTIONS(7906), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7919), 1, sym_word, - ACTIONS(7908), 1, + ACTIONS(7921), 1, sym__dollar_literal, - STATE(1764), 1, + STATE(1586), 1, sym_string, - ACTIONS(4559), 2, + ACTIONS(615), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1780), 2, + STATE(1618), 2, sym_simple_expansion, sym_expansion, - ACTIONS(4545), 3, + ACTIONS(601), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1752), 3, + STATE(1486), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(1766), 5, + STATE(1588), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [150374] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2364), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7620), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7618), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [150423] = 18, - ACTIONS(2007), 1, + [150311] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(2124), 1, + ACTIONS(4048), 1, aux_sym_brace_expression_token1, - ACTIONS(2128), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR, - ACTIONS(2130), 1, + ACTIONS(4054), 1, anon_sym_DQUOTE, - ACTIONS(2132), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2134), 1, + ACTIONS(4062), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2136), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2138), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2142), 1, + ACTIONS(4070), 1, sym__backtick_open, - ACTIONS(2146), 1, + ACTIONS(4074), 1, sym__brace_expr_start, - ACTIONS(7910), 1, + ACTIONS(5455), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5457), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7923), 1, sym_word, - ACTIONS(7912), 1, + ACTIONS(7925), 1, sym__dollar_literal, - STATE(1239), 1, + STATE(1879), 1, sym_string, - ACTIONS(2140), 2, + ACTIONS(4068), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1252), 2, + STATE(1869), 2, sym_simple_expansion, sym_expansion, - ACTIONS(2126), 3, + ACTIONS(4056), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1294), 3, + STATE(1888), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(1240), 5, + STATE(1886), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [150488] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7383), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7381), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [150537] = 18, - ACTIONS(565), 1, + [150376] = 18, + ACTIONS(665), 1, aux_sym_brace_expression_token1, - ACTIONS(569), 1, + ACTIONS(669), 1, anon_sym_DOLLAR, - ACTIONS(571), 1, + ACTIONS(671), 1, anon_sym_DQUOTE, - ACTIONS(573), 1, + ACTIONS(673), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(575), 1, + ACTIONS(675), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(577), 1, + ACTIONS(677), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(579), 1, + ACTIONS(679), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(587), 1, + ACTIONS(687), 1, sym__backtick_open, - ACTIONS(591), 1, + ACTIONS(691), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7914), 1, + ACTIONS(7927), 1, sym_word, - ACTIONS(7916), 1, + ACTIONS(7929), 1, sym__dollar_literal, - STATE(1535), 1, + STATE(1517), 1, sym_string, - ACTIONS(581), 2, + ACTIONS(681), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1538), 2, + STATE(1607), 2, sym_simple_expansion, sym_expansion, - ACTIONS(567), 3, + ACTIONS(667), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1530), 3, + STATE(1559), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(1537), 5, + STATE(1518), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [150602] = 18, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6719), 1, + [150441] = 18, + ACTIONS(479), 1, aux_sym_brace_expression_token1, - ACTIONS(6723), 1, + ACTIONS(483), 1, anon_sym_DOLLAR, - ACTIONS(6725), 1, + ACTIONS(485), 1, anon_sym_DQUOTE, - ACTIONS(6727), 1, + ACTIONS(487), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6729), 1, + ACTIONS(489), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6731), 1, + ACTIONS(491), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6733), 1, + ACTIONS(493), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6737), 1, + ACTIONS(501), 1, sym__backtick_open, - ACTIONS(6741), 1, + ACTIONS(505), 1, sym__brace_expr_start, - ACTIONS(7918), 1, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7931), 1, sym_word, - ACTIONS(7920), 1, + ACTIONS(7933), 1, sym__dollar_literal, - STATE(3221), 1, + STATE(1555), 1, sym_string, - ACTIONS(6735), 2, + ACTIONS(495), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3225), 2, + STATE(1558), 2, sym_simple_expansion, sym_expansion, - ACTIONS(6721), 3, + ACTIONS(481), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(3159), 3, + STATE(1650), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(3145), 5, + STATE(1557), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [150667] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7420), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7418), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [150716] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7632), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7630), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [150765] = 18, - ACTIONS(2007), 1, + [150506] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6997), 1, + ACTIONS(2788), 1, aux_sym_brace_expression_token1, - ACTIONS(7001), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR, - ACTIONS(7003), 1, + ACTIONS(2794), 1, anon_sym_DQUOTE, - ACTIONS(7005), 1, + ACTIONS(2798), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7007), 1, + ACTIONS(2800), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7009), 1, + ACTIONS(2802), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7011), 1, + ACTIONS(2804), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7015), 1, + ACTIONS(2810), 1, sym__backtick_open, - ACTIONS(7019), 1, + ACTIONS(2814), 1, sym__brace_expr_start, - ACTIONS(7922), 1, + ACTIONS(7935), 1, sym_word, - ACTIONS(7924), 1, + ACTIONS(7937), 1, sym__dollar_literal, - STATE(3390), 1, + STATE(2397), 1, sym_string, - ACTIONS(7013), 2, + ACTIONS(2806), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3396), 2, + STATE(2413), 2, sym_simple_expansion, sym_expansion, - ACTIONS(6999), 3, + ACTIONS(2796), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(3400), 3, + STATE(2392), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(3394), 5, + STATE(2398), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [150830] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7395), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7393), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [150879] = 18, - ACTIONS(2007), 1, + [150571] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3300), 1, + ACTIONS(6456), 1, aux_sym_brace_expression_token1, - ACTIONS(3304), 1, + ACTIONS(6460), 1, anon_sym_DOLLAR, - ACTIONS(3306), 1, + ACTIONS(6462), 1, anon_sym_DQUOTE, - ACTIONS(3310), 1, + ACTIONS(6464), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3312), 1, + ACTIONS(6466), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3314), 1, + ACTIONS(6468), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3316), 1, + ACTIONS(6470), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3322), 1, + ACTIONS(6474), 1, sym__backtick_open, - ACTIONS(3326), 1, + ACTIONS(6478), 1, sym__brace_expr_start, - ACTIONS(7926), 1, + ACTIONS(7939), 1, sym_word, - ACTIONS(7928), 1, + ACTIONS(7941), 1, sym__dollar_literal, - STATE(2153), 1, + STATE(2973), 1, sym_string, - ACTIONS(3318), 2, + ACTIONS(6472), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2155), 2, + STATE(2946), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3308), 3, + ACTIONS(6458), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2202), 3, + STATE(2980), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(2154), 5, + STATE(2978), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [150944] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2376), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7496), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7494), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [150993] = 18, - ACTIONS(2007), 1, + [150636] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(3262), 1, + ACTIONS(6868), 1, aux_sym_brace_expression_token1, - ACTIONS(3266), 1, + ACTIONS(6872), 1, anon_sym_DOLLAR, - ACTIONS(3268), 1, + ACTIONS(6874), 1, anon_sym_DQUOTE, - ACTIONS(3276), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3284), 1, - sym__backtick_open, - ACTIONS(3288), 1, - sym__brace_expr_start, - ACTIONS(5354), 1, + ACTIONS(6876), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5356), 1, + ACTIONS(6878), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6880), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5358), 1, + ACTIONS(6882), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7930), 1, + ACTIONS(6886), 1, + sym__backtick_open, + ACTIONS(6890), 1, + sym__brace_expr_start, + ACTIONS(7943), 1, sym_word, - ACTIONS(7932), 1, + ACTIONS(7945), 1, sym__dollar_literal, - STATE(1935), 1, + STATE(2390), 1, sym_string, - ACTIONS(3282), 2, + ACTIONS(6884), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1951), 2, + STATE(2402), 2, sym_simple_expansion, sym_expansion, - ACTIONS(3270), 3, + ACTIONS(6870), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1929), 3, + STATE(2371), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(1937), 5, + STATE(2395), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [151058] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7539), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7537), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [151107] = 18, - ACTIONS(2007), 1, + [150701] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6867), 1, + ACTIONS(6978), 1, aux_sym_brace_expression_token1, - ACTIONS(6871), 1, + ACTIONS(6982), 1, anon_sym_DOLLAR, - ACTIONS(6873), 1, + ACTIONS(6984), 1, anon_sym_DQUOTE, - ACTIONS(6875), 1, + ACTIONS(6986), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6877), 1, + ACTIONS(6988), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6879), 1, + ACTIONS(6990), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6881), 1, + ACTIONS(6992), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6885), 1, + ACTIONS(6996), 1, sym__backtick_open, - ACTIONS(6889), 1, + ACTIONS(7000), 1, sym__brace_expr_start, - ACTIONS(7934), 1, + ACTIONS(7947), 1, sym_word, - ACTIONS(7936), 1, + ACTIONS(7949), 1, sym__dollar_literal, - STATE(2412), 1, + STATE(3352), 1, sym_string, - ACTIONS(6883), 2, + ACTIONS(6994), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2405), 2, + STATE(3343), 2, sym_simple_expansion, sym_expansion, - ACTIONS(6869), 3, + ACTIONS(6980), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2429), 3, + STATE(3332), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(2421), 5, + STATE(3342), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [151172] = 18, - ACTIONS(2007), 1, + [150766] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(4743), 1, + ACTIONS(2602), 1, aux_sym_brace_expression_token1, - ACTIONS(4747), 1, + ACTIONS(2606), 1, anon_sym_DOLLAR, - ACTIONS(4749), 1, + ACTIONS(2608), 1, anon_sym_DQUOTE, - ACTIONS(4751), 1, + ACTIONS(2610), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4753), 1, + ACTIONS(2612), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4755), 1, + ACTIONS(2614), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4757), 1, + ACTIONS(2616), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4761), 1, + ACTIONS(2620), 1, sym__backtick_open, - ACTIONS(4765), 1, + ACTIONS(2624), 1, sym__brace_expr_start, - ACTIONS(7938), 1, + ACTIONS(7951), 1, sym_word, - ACTIONS(7940), 1, + ACTIONS(7953), 1, sym__dollar_literal, - STATE(1802), 1, + STATE(1369), 1, sym_string, - ACTIONS(4759), 2, + ACTIONS(2618), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1818), 2, + STATE(1376), 2, sym_simple_expansion, sym_expansion, - ACTIONS(4745), 3, + ACTIONS(2604), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1760), 3, + STATE(1360), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(1804), 5, + STATE(1370), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [151237] = 5, - ACTIONS(2007), 1, + [150831] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7942), 1, + ACTIONS(7955), 1, sym__concat, - STATE(2401), 1, + STATE(2337), 1, aux_sym_concatenation_repeat1, - ACTIONS(6229), 9, + ACTIONS(6433), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -178271,7 +178354,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 16, + ACTIONS(6435), 16, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -178288,595 +178371,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [151276] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2380), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7567), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7565), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [151325] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7399), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7397), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [151374] = 18, - ACTIONS(2007), 1, + [150870] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6789), 1, + ACTIONS(2630), 1, aux_sym_brace_expression_token1, - ACTIONS(6793), 1, + ACTIONS(2634), 1, anon_sym_DOLLAR, - ACTIONS(6795), 1, + ACTIONS(2636), 1, anon_sym_DQUOTE, - ACTIONS(6797), 1, + ACTIONS(2638), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6799), 1, + ACTIONS(2640), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6801), 1, + ACTIONS(2642), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6803), 1, + ACTIONS(2644), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(6807), 1, + ACTIONS(2648), 1, sym__backtick_open, - ACTIONS(6811), 1, + ACTIONS(2652), 1, sym__brace_expr_start, - ACTIONS(7944), 1, + ACTIONS(7957), 1, sym_word, - ACTIONS(7946), 1, + ACTIONS(7959), 1, sym__dollar_literal, - STATE(3149), 1, + STATE(1413), 1, sym_string, - ACTIONS(6805), 2, + ACTIONS(2646), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3185), 2, + STATE(1416), 2, sym_simple_expansion, sym_expansion, - ACTIONS(6791), 3, + ACTIONS(2632), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(3172), 3, + STATE(1375), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(3150), 5, + STATE(1415), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [151439] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7563), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7561), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [151488] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2382), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7460), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7458), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [151537] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7379), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7377), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [151586] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2397), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7403), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7401), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [151635] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2319), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7571), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7569), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [151684] = 18, - ACTIONS(2007), 1, + [150935] = 18, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7075), 1, + ACTIONS(3667), 1, aux_sym_brace_expression_token1, - ACTIONS(7079), 1, + ACTIONS(3671), 1, anon_sym_DOLLAR, - ACTIONS(7081), 1, + ACTIONS(3673), 1, anon_sym_DQUOTE, - ACTIONS(7083), 1, + ACTIONS(3675), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7085), 1, + ACTIONS(3677), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7087), 1, + ACTIONS(3679), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7089), 1, + ACTIONS(3681), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7093), 1, + ACTIONS(3685), 1, sym__backtick_open, - ACTIONS(7097), 1, + ACTIONS(3689), 1, sym__brace_expr_start, - ACTIONS(7948), 1, + ACTIONS(7961), 1, sym_word, - ACTIONS(7950), 1, + ACTIONS(7963), 1, sym__dollar_literal, - STATE(2741), 1, + STATE(1712), 1, sym_string, - ACTIONS(7091), 2, + ACTIONS(3683), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2752), 2, + STATE(1724), 2, sym_simple_expansion, sym_expansion, - ACTIONS(7077), 3, + ACTIONS(3669), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(2734), 3, + STATE(1799), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(2743), 5, + STATE(1714), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [151749] = 18, - ACTIONS(659), 1, + [151000] = 18, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6529), 1, aux_sym_brace_expression_token1, - ACTIONS(663), 1, + ACTIONS(6533), 1, anon_sym_DOLLAR, - ACTIONS(665), 1, + ACTIONS(6535), 1, anon_sym_DQUOTE, - ACTIONS(667), 1, + ACTIONS(6537), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(669), 1, + ACTIONS(6539), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(671), 1, + ACTIONS(6541), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(673), 1, + ACTIONS(6543), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(681), 1, + ACTIONS(6547), 1, sym__backtick_open, - ACTIONS(685), 1, + ACTIONS(6551), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7952), 1, + ACTIONS(7965), 1, sym_word, - ACTIONS(7954), 1, + ACTIONS(7967), 1, sym__dollar_literal, - STATE(1688), 1, + STATE(2078), 1, sym_string, - ACTIONS(675), 2, + ACTIONS(6545), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1501), 2, + STATE(2098), 2, sym_simple_expansion, sym_expansion, - ACTIONS(661), 3, + ACTIONS(6531), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1659), 3, + STATE(2089), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(1689), 5, + STATE(2068), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [151814] = 18, - ACTIONS(259), 1, + [151065] = 18, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(3501), 1, aux_sym_brace_expression_token1, - ACTIONS(263), 1, + ACTIONS(3505), 1, anon_sym_DOLLAR, - ACTIONS(265), 1, + ACTIONS(3507), 1, anon_sym_DQUOTE, - ACTIONS(267), 1, + ACTIONS(3509), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(269), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(271), 1, + ACTIONS(3513), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(273), 1, + ACTIONS(3515), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(281), 1, + ACTIONS(3519), 1, sym__backtick_open, - ACTIONS(285), 1, + ACTIONS(3523), 1, sym__brace_expr_start, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7956), 1, + ACTIONS(7969), 1, sym_word, - ACTIONS(7958), 1, + ACTIONS(7971), 1, sym__dollar_literal, - STATE(1250), 1, + STATE(1763), 1, sym_string, - ACTIONS(275), 2, + ACTIONS(3517), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1291), 2, + STATE(1667), 2, sym_simple_expansion, sym_expansion, - ACTIONS(261), 3, + ACTIONS(3503), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1235), 3, + STATE(1782), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(1251), 5, + STATE(1652), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [151879] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7960), 1, - sym__concat, - STATE(2401), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 9, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 16, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, + [151130] = 18, + ACTIONS(315), 1, aux_sym_brace_expression_token1, - sym_number, + ACTIONS(319), 1, + anon_sym_DOLLAR, + ACTIONS(321), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(323), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(325), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(329), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(337), 1, + sym__backtick_open, + ACTIONS(341), 1, + sym__brace_expr_start, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7973), 1, + sym_word, + ACTIONS(7975), 1, + sym__dollar_literal, + STATE(1622), 1, + sym_string, + ACTIONS(331), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [151918] = 18, - ACTIONS(55), 1, + STATE(1626), 2, + sym_simple_expansion, + sym_expansion, + ACTIONS(317), 3, + sym_number, + sym_raw_string, + sym_ansi_c_string, + STATE(1611), 3, + sym__word_part, + sym_brace_expression, + sym__expression, + STATE(1625), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [151195] = 18, + ACTIONS(409), 1, aux_sym_brace_expression_token1, - ACTIONS(59), 1, + ACTIONS(413), 1, anon_sym_DOLLAR, - ACTIONS(61), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(63), 1, + ACTIONS(417), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(65), 1, + ACTIONS(419), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(67), 1, + ACTIONS(421), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 1, + ACTIONS(423), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(77), 1, + ACTIONS(431), 1, sym__backtick_open, - ACTIONS(81), 1, + ACTIONS(435), 1, sym__brace_expr_start, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7963), 1, + ACTIONS(7977), 1, sym_word, - ACTIONS(7965), 1, + ACTIONS(7979), 1, sym__dollar_literal, - STATE(1314), 1, + STATE(1599), 1, sym_string, - ACTIONS(71), 2, + ACTIONS(425), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1350), 2, + STATE(1487), 2, sym_simple_expansion, sym_expansion, - ACTIONS(57), 3, + ACTIONS(411), 3, sym_number, sym_raw_string, sym_ansi_c_string, - STATE(1284), 3, + STATE(1537), 3, sym__word_part, sym_brace_expression, sym__expression, - STATE(1333), 5, + STATE(1603), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [151983] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(2807), 1, - anon_sym_LT_LT, - ACTIONS(2809), 1, - anon_sym_LT_LT_DASH, - ACTIONS(2831), 1, - sym__file_descriptor, - STATE(2534), 1, - sym_heredoc_redirect, - STATE(2323), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(2803), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7387), 4, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(2805), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - ACTIONS(7385), 7, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [152032] = 5, - ACTIONS(2007), 1, + [151260] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7967), 1, - sym_heredoc_body, - ACTIONS(7969), 1, - sym_heredoc_end, - ACTIONS(6205), 8, + ACTIONS(7981), 1, + sym__concat, + STATE(2366), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -178885,7 +178669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6207), 16, + ACTIONS(6428), 17, + sym__heredoc_newline, sym__file_descriptor, anon_sym_LF, anon_sym_AMP_AMP, @@ -178902,10 +178687,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [152070] = 3, - ACTIONS(2007), 1, + [151299] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 9, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -178915,8 +178702,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 17, - sym__concat, + ACTIONS(6340), 16, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -178933,14 +178719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152104] = 5, - ACTIONS(2007), 1, + [151335] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7971), 1, - sym__concat, - STATE(2406), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 8, + ACTIONS(6489), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -178949,7 +178731,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6237), 16, + ACTIONS(6491), 18, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, anon_sym_LF, anon_sym_AMP_AMP, @@ -178966,41 +178750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [152142] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6434), 9, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 17, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [152176] = 3, - ACTIONS(2007), 1, + [151369] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 9, + ACTIONS(6189), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -179010,7 +178763,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 17, + ACTIONS(6187), 17, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -179028,10 +178781,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152210] = 3, - ACTIONS(2007), 1, + [151403] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 9, + ACTIONS(6270), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -179041,7 +178794,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 17, + ACTIONS(6268), 17, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -179059,10 +178812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152244] = 3, - ACTIONS(2007), 1, + [151437] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 9, + ACTIONS(6426), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -179072,7 +178825,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 17, + ACTIONS(6428), 17, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -179090,10 +178843,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152278] = 3, - ACTIONS(2007), 1, + [151471] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 9, + ACTIONS(6143), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -179103,7 +178856,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 17, + ACTIONS(6141), 17, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -179121,72 +178874,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152312] = 3, - ACTIONS(2007), 1, + [151505] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 9, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 17, + ACTIONS(6183), 8, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6181), 18, + sym__heredoc_newline, sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [152346] = 3, - ACTIONS(2007), 1, + sym__file_descriptor, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [151539] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 9, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 17, + ACTIONS(6244), 8, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6242), 18, + sym__heredoc_newline, sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [152380] = 3, - ACTIONS(2007), 1, + sym__file_descriptor, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [151573] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 9, + ACTIONS(6105), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -179196,7 +178949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 17, + ACTIONS(6103), 17, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -179214,41 +178967,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152414] = 3, - ACTIONS(2007), 1, + [151607] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 9, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 17, + ACTIONS(6260), 8, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6258), 18, + sym__heredoc_newline, sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [152448] = 3, - ACTIONS(2007), 1, + sym__file_descriptor, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [151641] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 9, + ACTIONS(6489), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -179258,7 +179011,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 17, + ACTIONS(6491), 17, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -179276,45 +179029,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152482] = 3, - ACTIONS(2007), 1, + [151675] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 9, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 17, + ACTIONS(6143), 8, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6141), 18, + sym__heredoc_newline, sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [152516] = 5, - ACTIONS(2007), 1, + sym__file_descriptor, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [151709] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7974), 1, - sym__concat, - STATE(2406), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 8, + ACTIONS(5969), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -179323,7 +179072,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6231), 16, + ACTIONS(5967), 18, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, anon_sym_LF, anon_sym_AMP_AMP, @@ -179340,10 +179091,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [152554] = 3, - ACTIONS(2007), 1, + [151743] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 9, + ACTIONS(6322), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -179353,7 +179104,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 17, + ACTIONS(6320), 17, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -179371,41 +179122,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152588] = 3, - ACTIONS(2007), 1, + [151777] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 9, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 17, + ACTIONS(6270), 8, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6268), 18, + sym__heredoc_newline, sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [152622] = 3, - ACTIONS(2007), 1, + sym__file_descriptor, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [151811] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 9, + ACTIONS(5905), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -179415,7 +179166,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 17, + ACTIONS(5903), 17, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -179433,10 +179184,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152656] = 3, - ACTIONS(2007), 1, + [151845] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 9, + ACTIONS(5969), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -179446,7 +179197,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 17, + ACTIONS(5967), 17, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -179464,72 +179215,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152690] = 3, - ACTIONS(2007), 1, + [151879] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 9, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 17, + ACTIONS(6300), 1, sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [152724] = 3, - ACTIONS(2007), 1, + ACTIONS(7990), 1, + anon_sym_LT_LT, + ACTIONS(7993), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7996), 1, + sym__file_descriptor, + STATE(2673), 1, + sym_heredoc_redirect, + ACTIONS(7155), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(2555), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7984), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(7152), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + ACTIONS(7987), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [151929] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 9, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 17, + ACTIONS(6300), 1, sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [152758] = 3, - ACTIONS(2007), 1, + ACTIONS(7990), 1, + anon_sym_LT_LT, + ACTIONS(7993), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7996), 1, + sym__file_descriptor, + STATE(2673), 1, + sym_heredoc_redirect, + ACTIONS(7176), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(2556), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7984), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(7173), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + ACTIONS(7987), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [151979] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 9, + ACTIONS(6300), 1, + sym__concat, + ACTIONS(7990), 1, + anon_sym_LT_LT, + ACTIONS(7993), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7996), 1, + sym__file_descriptor, + STATE(2673), 1, + sym_heredoc_redirect, + ACTIONS(7182), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(2557), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7984), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(7179), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + ACTIONS(7987), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + [152029] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6019), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -179539,7 +179345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 17, + ACTIONS(6017), 17, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -179557,14 +179363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152792] = 5, - ACTIONS(2007), 1, + [152063] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7976), 1, - sym_heredoc_body, - ACTIONS(7978), 1, - sym_heredoc_end, - ACTIONS(6213), 8, + ACTIONS(6083), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -179573,7 +179375,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6215), 16, + ACTIONS(6081), 18, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, anon_sym_LF, anon_sym_AMP_AMP, @@ -179590,10 +179394,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [152830] = 3, - ACTIONS(2007), 1, + [152097] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 9, + ACTIONS(6493), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -179603,7 +179407,7 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 17, + ACTIONS(6495), 17, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -179621,41 +179425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152864] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5934), 9, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 17, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [152898] = 3, - ACTIONS(2007), 1, + [152131] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 9, + ACTIONS(6302), 9, anon_sym_BANG, anon_sym_RBRACK, anon_sym_EQ, @@ -179665,40 +179438,8 @@ static const uint16_t ts_small_parse_table[] = { sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 17, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_BANG_EQ, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [152932] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6227), 1, + ACTIONS(6300), 17, sym__concat, - ACTIONS(6221), 9, - anon_sym_BANG, - anon_sym_RBRACK, - anon_sym_EQ, - anon_sym_EQ_EQ, - anon_sym_DASHa, - anon_sym_DASHo, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 16, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -179715,10 +179456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152968] = 3, - ACTIONS(2007), 1, + [152165] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 8, + ACTIONS(6485), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -179727,7 +179468,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5880), 17, + ACTIONS(6487), 18, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -179745,10 +179487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153001] = 3, - ACTIONS(2007), 1, + [152199] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 8, + ACTIONS(6426), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -179757,7 +179499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5978), 17, + ACTIONS(6428), 18, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -179775,10 +179518,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153034] = 3, - ACTIONS(2007), 1, + [152233] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 8, + ACTIONS(6493), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -179787,7 +179530,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5830), 17, + ACTIONS(6495), 18, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -179805,88 +179549,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153067] = 3, - ACTIONS(2007), 1, + [152267] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6028), 17, + ACTIONS(6300), 1, sym__concat, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [153100] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5904), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(8005), 1, anon_sym_LT_LT, - ACTIONS(5902), 17, - sym__concat, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, + ACTIONS(8008), 1, anon_sym_LT_LT_DASH, - [153133] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6000), 8, - anon_sym_SEMI, + ACTIONS(8011), 1, + sym__file_descriptor, + STATE(2667), 1, + sym_heredoc_redirect, + ACTIONS(7155), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + STATE(2479), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7999), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5998), 17, - sym__concat, - sym__file_descriptor, + ACTIONS(7152), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + ACTIONS(8002), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -179894,41 +179588,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [153166] = 3, - ACTIONS(2007), 1, + [152317] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5932), 17, + ACTIONS(6109), 9, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6107), 17, sym__concat, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [153199] = 3, - ACTIONS(2007), 1, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [152351] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 8, + ACTIONS(6019), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -179937,7 +179631,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5816), 17, + ACTIONS(6017), 18, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -179955,10 +179650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153232] = 3, - ACTIONS(2007), 1, + [152385] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 8, + ACTIONS(6302), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -179967,7 +179662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5866), 17, + ACTIONS(6300), 18, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -179985,10 +179681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153265] = 3, - ACTIONS(2007), 1, + [152419] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 8, + ACTIONS(6109), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -179997,7 +179693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6064), 17, + ACTIONS(6107), 18, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -180015,10 +179712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153298] = 3, - ACTIONS(2007), 1, + [152453] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 8, + ACTIONS(5905), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -180027,7 +179724,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6074), 17, + ACTIONS(5903), 18, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -180045,59 +179743,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153331] = 4, - ACTIONS(2007), 1, + [152487] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7980), 1, - sym_heredoc_end, - ACTIONS(6258), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, + ACTIONS(6300), 1, + sym__concat, + ACTIONS(8005), 1, anon_sym_LT_LT, - ACTIONS(6260), 16, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, + ACTIONS(8008), 1, anon_sym_LT_LT_DASH, - [153366] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5988), 8, - anon_sym_SEMI, + ACTIONS(8011), 1, + sym__file_descriptor, + STATE(2667), 1, + sym_heredoc_redirect, + ACTIONS(7176), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + STATE(2489), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(7999), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5986), 17, - sym__concat, - sym__file_descriptor, + ACTIONS(7173), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + ACTIONS(8002), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180105,11 +179782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [153399] = 3, - ACTIONS(2007), 1, + [152537] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 8, + ACTIONS(6177), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -180118,7 +179794,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6436), 17, + ACTIONS(6175), 18, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -180136,41 +179813,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153432] = 4, - ACTIONS(2007), 1, + [152571] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, + ACTIONS(5951), 9, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5949), 17, sym__concat, - ACTIONS(6221), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6223), 16, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [153467] = 3, - ACTIONS(2007), 1, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [152605] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 8, + ACTIONS(6264), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -180179,7 +179856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6452), 17, + ACTIONS(6262), 18, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -180197,10 +179875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153500] = 3, - ACTIONS(2007), 1, + [152639] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 8, + ACTIONS(6101), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -180209,7 +179887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6044), 17, + ACTIONS(6099), 18, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -180227,48 +179906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153533] = 11, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5816), 1, - sym__concat, - ACTIONS(7988), 1, - anon_sym_LT_LT, - ACTIONS(7991), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7994), 1, - sym__file_descriptor, - STATE(2720), 1, - sym_heredoc_redirect, - ACTIONS(7250), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2500), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7982), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7247), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(7985), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [153582] = 3, - ACTIONS(2007), 1, + [152673] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 8, + ACTIONS(6105), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -180277,7 +179918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6163), 17, + ACTIONS(6103), 18, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -180295,10 +179937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153615] = 3, - ACTIONS(2007), 1, + [152707] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6189), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -180307,7 +179949,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6173), 17, + ACTIONS(6187), 18, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -180325,40 +179968,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153648] = 3, - ACTIONS(2007), 1, + [152741] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(5836), 17, + ACTIONS(6344), 1, sym__concat, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [153681] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5844), 8, + ACTIONS(6338), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -180367,8 +179982,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5842), 17, - sym__concat, + ACTIONS(6340), 17, + sym__heredoc_newline, sym__file_descriptor, anon_sym_LF, anon_sym_AMP_AMP, @@ -180385,156 +180000,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153714] = 11, - ACTIONS(2007), 1, + [152777] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5816), 1, + ACTIONS(6083), 9, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6081), 17, sym__concat, - ACTIONS(7988), 1, - anon_sym_LT_LT, - ACTIONS(7991), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7994), 1, - sym__file_descriptor, - STATE(2720), 1, - sym_heredoc_redirect, - ACTIONS(7240), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2542), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7982), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7237), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(7985), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [153763] = 11, - ACTIONS(2007), 1, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [152811] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5816), 1, + ACTIONS(6260), 9, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6258), 17, sym__concat, - ACTIONS(8003), 1, - anon_sym_LT_LT, - ACTIONS(8006), 1, - anon_sym_LT_LT_DASH, - ACTIONS(8009), 1, - sym__file_descriptor, - STATE(2749), 1, - sym_heredoc_redirect, - ACTIONS(7250), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2587), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7997), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7247), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(8000), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [153812] = 3, - ACTIONS(2007), 1, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [152845] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6237), 17, + ACTIONS(6177), 9, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6175), 17, sym__concat, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [153845] = 11, - ACTIONS(2007), 1, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [152879] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5816), 1, + ACTIONS(6485), 9, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6487), 17, sym__concat, - ACTIONS(8003), 1, - anon_sym_LT_LT, - ACTIONS(8006), 1, - anon_sym_LT_LT_DASH, - ACTIONS(8009), 1, - sym__file_descriptor, - STATE(2749), 1, - sym_heredoc_redirect, - ACTIONS(7240), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2591), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7997), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(7237), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(8000), 7, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - [153894] = 4, - ACTIONS(2007), 1, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [152913] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6101), 9, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6099), 17, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [152947] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8012), 1, - sym_heredoc_end, - ACTIONS(6252), 8, + ACTIONS(5951), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -180543,7 +180167,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6254), 16, + ACTIONS(5949), 18, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, anon_sym_LF, anon_sym_AMP_AMP, @@ -180560,10 +180186,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153929] = 3, - ACTIONS(2007), 1, + [152981] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 8, + ACTIONS(6322), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -180572,7 +180198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5804), 17, + ACTIONS(6320), 18, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -180590,37 +180217,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [153962] = 11, - ACTIONS(2007), 1, + [153015] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6264), 9, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6262), 17, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [153049] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6183), 9, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6181), 17, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [153083] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6244), 9, + anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_DASHa, + anon_sym_DASHo, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6242), 17, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_BANG_EQ, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [153117] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5816), 1, + ACTIONS(6300), 1, sym__concat, - ACTIONS(7988), 1, + ACTIONS(8005), 1, anon_sym_LT_LT, - ACTIONS(7991), 1, + ACTIONS(8008), 1, anon_sym_LT_LT_DASH, - ACTIONS(7994), 1, + ACTIONS(8011), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7215), 2, + ACTIONS(7182), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2494), 2, + STATE(2493), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(7982), 3, + ACTIONS(7999), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7212), 6, + ACTIONS(7179), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(7985), 7, + ACTIONS(8002), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180628,28 +180349,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154011] = 3, - ACTIONS(2007), 1, + [153167] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 8, - anon_sym_SEMI, + ACTIONS(5093), 1, + anon_sym_LT_LT, + ACTIONS(5095), 1, + anon_sym_LT_LT_DASH, + ACTIONS(5117), 1, + sym__file_descriptor, + STATE(2673), 1, + sym_heredoc_redirect, + ACTIONS(7396), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + STATE(2549), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6448), 17, - sym__concat, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180657,38 +180378,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [154044] = 11, - ACTIONS(2007), 1, + ACTIONS(7394), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153214] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5816), 1, - sym__concat, - ACTIONS(8003), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(8006), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(8009), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7215), 2, + ACTIONS(7444), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2586), 2, + STATE(2430), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(7997), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7212), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(8000), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180696,66 +180415,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154093] = 5, - ACTIONS(2007), 1, - sym_comment, - STATE(2720), 1, - sym_heredoc_redirect, - STATE(2589), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7399), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7397), 15, - sym__file_descriptor, - sym__backtick_close, + ACTIONS(7442), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [154129] = 10, - ACTIONS(2007), 1, + anon_sym_done, + [153261] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7444), 2, + ACTIONS(7448), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2594), 2, + STATE(2431), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7442), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180763,35 +180452,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154175] = 10, - ACTIONS(2007), 1, + ACTIONS(7446), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153308] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7581), 2, + ACTIONS(7452), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7579), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180799,35 +180489,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154221] = 10, - ACTIONS(2007), 1, + ACTIONS(7450), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153355] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7460), 2, + ACTIONS(7456), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2542), 2, + STATE(2433), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7458), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180835,35 +180526,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154267] = 10, - ACTIONS(2007), 1, + ACTIONS(7454), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153402] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7527), 2, + ACTIONS(7452), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2559), 2, + STATE(2434), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7525), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180871,35 +180563,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154313] = 10, - ACTIONS(2007), 1, + ACTIONS(7450), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153449] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7428), 2, + ACTIONS(7490), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2600), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7426), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180907,35 +180600,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154359] = 10, - ACTIONS(2007), 1, + ACTIONS(7488), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153496] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7616), 2, + ACTIONS(7494), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2441), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7614), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180943,35 +180637,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154405] = 10, - ACTIONS(2007), 1, + ACTIONS(7492), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153543] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7551), 2, + ACTIONS(7512), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2497), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7549), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180979,78 +180674,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154451] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8014), 1, - anon_sym_RBRACK, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [154511] = 10, - ACTIONS(2007), 1, + ACTIONS(7510), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153590] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7420), 2, + ACTIONS(7524), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2442), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7418), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181058,35 +180711,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154557] = 10, - ACTIONS(2007), 1, + ACTIONS(7522), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153637] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7511), 2, + ACTIONS(7528), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2499), 2, + STATE(2443), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7509), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181094,35 +180748,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154603] = 10, - ACTIONS(2007), 1, + ACTIONS(7526), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153684] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7492), 2, + ACTIONS(7532), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2612), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7490), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181130,35 +180785,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154649] = 10, - ACTIONS(2007), 1, + ACTIONS(7530), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153731] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7500), 2, + ACTIONS(7536), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7498), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181166,78 +180822,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154695] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8038), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [154755] = 10, - ACTIONS(2007), 1, + ACTIONS(7534), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153778] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7535), 2, + ACTIONS(7540), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2445), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7533), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181245,35 +180859,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154801] = 10, - ACTIONS(2007), 1, + ACTIONS(7538), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153825] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7511), 2, + ACTIONS(7548), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2614), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7509), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181281,35 +180896,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154847] = 10, - ACTIONS(2007), 1, + ACTIONS(7546), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153872] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7519), 2, + ACTIONS(7556), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2605), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7517), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181317,35 +180933,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154893] = 10, - ACTIONS(2007), 1, + ACTIONS(7554), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153919] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7379), 2, + ACTIONS(7228), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2446), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7377), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181353,78 +180970,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [154939] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8040), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [154999] = 10, - ACTIONS(2007), 1, + ACTIONS(7226), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [153966] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7403), 2, + ACTIONS(7556), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2567), 2, + STATE(2447), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7401), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181432,35 +181007,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155045] = 10, - ACTIONS(2007), 1, + ACTIONS(7554), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154013] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7608), 2, + ACTIONS(7228), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2533), 2, + STATE(2449), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7606), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181468,35 +181044,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155091] = 10, - ACTIONS(2007), 1, + ACTIONS(7226), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154060] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7432), 2, + ACTIONS(7228), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2450), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7430), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181504,66 +181081,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155137] = 5, - ACTIONS(2007), 1, - sym_comment, - STATE(2720), 1, - sym_heredoc_redirect, - STATE(2589), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7391), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7389), 15, - sym__file_descriptor, - sym__backtick_close, + ACTIONS(7226), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [155173] = 10, - ACTIONS(2007), 1, + anon_sym_done, + [154107] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7371), 2, + ACTIONS(7228), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2635), 2, + STATE(2476), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7369), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181571,78 +181118,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155219] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8042), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [155279] = 10, - ACTIONS(2007), 1, + ACTIONS(7226), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [154154] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7519), 2, + ACTIONS(7410), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2453), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7517), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181650,35 +181155,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155325] = 10, - ACTIONS(2007), 1, + ACTIONS(7408), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154201] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7420), 2, + ACTIONS(7414), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7418), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181686,35 +181192,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155371] = 10, - ACTIONS(2007), 1, + ACTIONS(7412), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154248] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7559), 2, + ACTIONS(7440), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2597), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7557), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181722,35 +181229,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155417] = 10, - ACTIONS(2007), 1, + ACTIONS(7438), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154295] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7620), 2, + ACTIONS(7504), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2548), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7618), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181758,35 +181266,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155463] = 10, - ACTIONS(2007), 1, + ACTIONS(7502), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154342] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7387), 2, + ACTIONS(7284), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2483), 2, + STATE(2455), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7385), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181794,121 +181303,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155509] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8044), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [155569] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8046), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [155629] = 10, - ACTIONS(2007), 1, + ACTIONS(7282), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154389] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7383), 2, + ACTIONS(7326), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7381), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181916,78 +181340,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155675] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8048), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [155735] = 10, - ACTIONS(2007), 1, + ACTIONS(7324), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154436] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7436), 2, + ACTIONS(7248), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7434), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -181995,35 +181377,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155781] = 10, - ACTIONS(2007), 1, + ACTIONS(7246), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154483] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7616), 2, + ACTIONS(7369), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7614), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182031,78 +181414,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155827] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8050), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [155887] = 10, - ACTIONS(2007), 1, + ACTIONS(7367), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154530] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7624), 2, + ACTIONS(7355), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2456), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7622), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182110,35 +181451,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155933] = 10, - ACTIONS(2007), 1, + ACTIONS(7353), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154577] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7632), 2, + ACTIONS(7248), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7630), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182146,35 +181488,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [155979] = 10, - ACTIONS(2007), 1, + ACTIONS(7246), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154624] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7628), 2, + ACTIONS(7248), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2546), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7626), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182182,35 +181525,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156025] = 10, - ACTIONS(2007), 1, + ACTIONS(7246), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154671] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7448), 2, + ACTIONS(7355), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2535), 2, + STATE(2457), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7446), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182218,35 +181562,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156071] = 10, - ACTIONS(2007), 1, + ACTIONS(7353), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154718] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7612), 2, + ACTIONS(7369), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2458), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7610), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182254,78 +181599,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156117] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8052), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [156177] = 10, - ACTIONS(2007), 1, + ACTIONS(7367), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154765] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7531), 2, + ACTIONS(7516), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2624), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7529), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182333,35 +181636,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156223] = 10, - ACTIONS(2007), 1, + ACTIONS(7514), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154812] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7496), 2, + ACTIONS(7520), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2586), 2, + STATE(2460), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7494), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182369,35 +181673,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156269] = 10, - ACTIONS(2007), 1, + ACTIONS(7518), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154859] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7440), 2, + ACTIONS(7392), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2525), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7438), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182405,35 +181710,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156315] = 10, - ACTIONS(2007), 1, + ACTIONS(7390), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154906] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7539), 2, + ACTIONS(7252), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7537), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182441,35 +181747,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156361] = 10, - ACTIONS(2007), 1, + ACTIONS(7250), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [154953] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7488), 2, + ACTIONS(7252), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7486), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182477,78 +181784,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156407] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8054), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [156467] = 10, - ACTIONS(2007), 1, + ACTIONS(7250), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [155000] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7577), 2, + ACTIONS(7373), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2588), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7575), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182556,35 +181821,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156513] = 10, - ACTIONS(2007), 1, + ACTIONS(7371), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [155047] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7511), 2, + ACTIONS(7400), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2461), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7509), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182592,35 +181858,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156559] = 10, - ACTIONS(2007), 1, + ACTIONS(7398), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [155094] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7551), 2, + ACTIONS(7544), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2562), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7549), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182628,35 +181895,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156605] = 10, - ACTIONS(2007), 1, + ACTIONS(7542), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [155141] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7567), 2, + ACTIONS(7318), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2587), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7565), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182664,35 +181932,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156651] = 10, - ACTIONS(2007), 1, + ACTIONS(7316), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [155188] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7375), 2, + ACTIONS(7410), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2618), 2, + STATE(2483), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7373), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182700,78 +181969,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156697] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8056), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [156757] = 10, - ACTIONS(2007), 1, + ACTIONS(7408), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155235] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7424), 2, + ACTIONS(7426), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2620), 2, + STATE(2511), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7422), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182779,35 +182006,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156803] = 10, - ACTIONS(2007), 1, + ACTIONS(7424), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155282] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7563), 2, + ACTIONS(7414), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7561), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182815,35 +182043,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156849] = 10, - ACTIONS(2007), 1, + ACTIONS(7412), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155329] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7519), 2, + ACTIONS(7440), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7517), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182851,35 +182080,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156895] = 10, - ACTIONS(2007), 1, + ACTIONS(7438), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155376] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7531), 2, + ACTIONS(7236), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2625), 2, + STATE(2512), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7529), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -182887,121 +182117,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [156941] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8058), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [157001] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8060), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [157061] = 10, - ACTIONS(2007), 1, + ACTIONS(7234), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155423] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7531), 2, + ACTIONS(7504), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2496), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7529), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183009,35 +182154,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157107] = 10, - ACTIONS(2007), 1, + ACTIONS(7502), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155470] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7460), 2, + ACTIONS(7486), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2591), 2, + STATE(2489), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7458), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183045,35 +182191,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157153] = 10, - ACTIONS(2007), 1, + ACTIONS(7484), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155517] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7472), 2, + ACTIONS(7284), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2486), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7470), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183081,66 +182228,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157199] = 5, - ACTIONS(2007), 1, - sym_comment, - STATE(2749), 1, - sym_heredoc_redirect, - STATE(2566), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7399), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7397), 15, - sym__file_descriptor, + ACTIONS(7282), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [157235] = 10, - ACTIONS(2007), 1, + [155564] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7608), 2, + ACTIONS(7326), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2634), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7606), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183148,78 +182265,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157281] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8062), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [157341] = 10, - ACTIONS(2007), 1, + ACTIONS(7324), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155611] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7519), 2, + ACTIONS(7248), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2512), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7517), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183227,35 +182302,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157387] = 10, - ACTIONS(2007), 1, + ACTIONS(7246), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155658] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7379), 2, + ACTIONS(7369), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7377), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183263,66 +182339,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157433] = 5, - ACTIONS(2007), 1, - sym_comment, - STATE(2749), 1, - sym_heredoc_redirect, - STATE(2566), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7391), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7389), 15, - sym__file_descriptor, + ACTIONS(7367), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [157469] = 10, - ACTIONS(2007), 1, + [155705] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7403), 2, + ACTIONS(7355), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2595), 2, + STATE(2487), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7401), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183330,35 +182376,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157515] = 10, - ACTIONS(2007), 1, + ACTIONS(7353), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155752] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7523), 2, + ACTIONS(7248), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7521), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183366,10 +182413,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157561] = 3, - ACTIONS(2007), 1, + ACTIONS(7246), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155799] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 8, + ACTIONS(6601), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -183378,7 +182433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6545), 16, + ACTIONS(6603), 17, + sym__heredoc_newline, sym__file_descriptor, anon_sym_LF, anon_sym_AMP_AMP, @@ -183395,35 +182451,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [157593] = 10, - ACTIONS(2007), 1, + [155832] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7480), 2, + ACTIONS(7248), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7478), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183431,35 +182480,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157639] = 10, - ACTIONS(2007), 1, + ACTIONS(7246), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155879] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7555), 2, + ACTIONS(7355), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2488), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7553), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183467,35 +182517,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157685] = 10, - ACTIONS(2007), 1, + ACTIONS(7353), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155926] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7452), 2, + ACTIONS(7369), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2565), 2, + STATE(2490), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7450), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183503,35 +182554,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157731] = 10, - ACTIONS(2007), 1, + ACTIONS(7367), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [155973] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7496), 2, + ACTIONS(7244), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2494), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7494), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183539,35 +182591,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157777] = 10, - ACTIONS(2007), 1, + ACTIONS(7242), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156020] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, - anon_sym_LT_LT, - ACTIONS(5193), 1, - anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, - sym__file_descriptor, - STATE(2720), 1, - sym_heredoc_redirect, - ACTIONS(7387), 2, + ACTIONS(6605), 8, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - STATE(2626), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7385), 6, - sym__backtick_close, + anon_sym_LT_LT, + ACTIONS(6607), 17, + sym__heredoc_newline, + sym__file_descriptor, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183575,35 +182628,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157823] = 10, - ACTIONS(2007), 1, + anon_sym_LT_LT_DASH, + [156053] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7391), 2, + ACTIONS(7508), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7389), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183611,10 +182658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157869] = 3, - ACTIONS(2007), 1, + ACTIONS(7506), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156100] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 8, + ACTIONS(7643), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -183623,7 +182678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6549), 16, + ACTIONS(7641), 17, + sym__heredoc_newline, sym__file_descriptor, anon_sym_LF, anon_sym_AMP_AMP, @@ -183640,35 +182696,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [157901] = 10, - ACTIONS(2007), 1, + [156133] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7395), 2, + ACTIONS(7516), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7393), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183676,35 +182725,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157947] = 10, - ACTIONS(2007), 1, + ACTIONS(7514), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156180] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7468), 2, + ACTIONS(7520), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2495), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7466), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183712,35 +182762,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [157993] = 10, - ACTIONS(2007), 1, + ACTIONS(7518), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156227] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, - anon_sym_LT_LT, - ACTIONS(5193), 1, - anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, - sym__file_descriptor, - STATE(2720), 1, - sym_heredoc_redirect, - ACTIONS(7472), 2, + ACTIONS(6609), 8, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7470), 6, - sym__backtick_close, + anon_sym_LT_LT, + ACTIONS(6611), 17, + sym__heredoc_newline, + sym__file_descriptor, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183748,35 +182799,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158039] = 10, - ACTIONS(2007), 1, + anon_sym_LT_LT_DASH, + [156260] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7523), 2, + ACTIONS(7392), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2519), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7521), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183784,35 +182829,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158085] = 10, - ACTIONS(2007), 1, + ACTIONS(7390), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156307] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7585), 2, + ACTIONS(7252), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7583), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183820,35 +182866,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158131] = 10, - ACTIONS(2007), 1, + ACTIONS(7250), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156354] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7480), 2, + ACTIONS(7252), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7478), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183856,35 +182903,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158177] = 10, - ACTIONS(2007), 1, + ACTIONS(7250), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156401] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7547), 2, + ACTIONS(7270), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7545), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183892,78 +182940,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158223] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8064), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [158283] = 10, - ACTIONS(2007), 1, + ACTIONS(7268), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156448] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7531), 2, + ACTIONS(7373), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2604), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7529), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -183971,35 +182977,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158329] = 10, - ACTIONS(2007), 1, + ACTIONS(7371), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156495] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7476), 2, + ACTIONS(7400), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2496), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7474), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184007,35 +183014,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158375] = 10, - ACTIONS(2007), 1, + ACTIONS(7398), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156542] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, - anon_sym_LT_LT, - ACTIONS(5071), 1, - anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, - sym__file_descriptor, - STATE(2749), 1, - sym_heredoc_redirect, - ACTIONS(7507), 2, + ACTIONS(7688), 8, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - STATE(2628), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + anon_sym_SEMI_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7505), 6, + anon_sym_LT_LT, + ACTIONS(7686), 17, + sym__heredoc_newline, + sym__file_descriptor, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184043,35 +183051,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158421] = 10, - ACTIONS(2007), 1, + anon_sym_LT_LT_DASH, + [156575] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7539), 2, + ACTIONS(7278), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7537), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184079,35 +183081,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158467] = 10, - ACTIONS(2007), 1, + ACTIONS(7276), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156622] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7452), 2, + ACTIONS(7288), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2551), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7450), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184115,35 +183118,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158513] = 10, - ACTIONS(2007), 1, + ACTIONS(7286), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156669] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7581), 2, + ACTIONS(7544), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7579), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184151,64 +183155,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158559] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6551), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6553), 16, - sym__file_descriptor, + ACTIONS(7542), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [158591] = 10, - ACTIONS(2007), 1, + [156716] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7484), 2, + ACTIONS(7318), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2555), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7482), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184216,35 +183192,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158637] = 10, - ACTIONS(2007), 1, + ACTIONS(7316), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156763] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7410), 2, + ACTIONS(7288), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2513), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7408), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184252,35 +183229,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158683] = 10, - ACTIONS(2007), 1, + ACTIONS(7286), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156810] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(8020), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(8023), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(8026), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7464), 2, + ACTIONS(7330), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(8014), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7462), 6, + ACTIONS(7328), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(8017), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184288,35 +183274,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158729] = 10, - ACTIONS(2007), 1, + [156857] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7500), 2, + ACTIONS(7300), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7498), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184324,10 +183303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158775] = 3, - ACTIONS(2007), 1, + ACTIONS(7298), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [156904] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 8, + ACTIONS(6613), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -184336,7 +183323,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6254), 16, + ACTIONS(6615), 17, + sym__heredoc_newline, sym__file_descriptor, anon_sym_LF, anon_sym_AMP_AMP, @@ -184353,35 +183341,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [158807] = 10, - ACTIONS(2007), 1, + [156937] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7616), 2, + ACTIONS(7256), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2502), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7614), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184389,35 +183370,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158853] = 10, - ACTIONS(2007), 1, + ACTIONS(7254), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [156984] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7492), 2, + ACTIONS(7296), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2543), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7490), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184425,35 +183407,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158899] = 10, - ACTIONS(2007), 1, + ACTIONS(7294), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [157031] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7410), 2, + ACTIONS(7300), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7408), 6, + ACTIONS(4967), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7298), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + [157078] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6617), 8, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6619), 17, + sym__heredoc_newline, + sym__file_descriptor, + anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184461,35 +183481,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158945] = 10, - ACTIONS(2007), 1, + anon_sym_LT_LT_DASH, + [157111] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7476), 2, + ACTIONS(7359), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2517), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7474), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184497,35 +183511,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [158991] = 10, - ACTIONS(2007), 1, + ACTIONS(7357), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [157158] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8072), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(8075), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(8078), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7589), 2, + ACTIONS(7365), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2522), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(8066), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7587), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(8069), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184533,35 +183548,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159037] = 10, - ACTIONS(2007), 1, + ACTIONS(7363), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [157205] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7571), 2, + ACTIONS(7260), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2499), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7569), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184569,35 +183585,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159083] = 10, - ACTIONS(2007), 1, + ACTIONS(7258), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [157252] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, - anon_sym_LT_LT, - ACTIONS(5071), 1, - anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, - sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7375), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2571), 2, + STATE(2515), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(7256), 6, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7373), 6, + anon_sym_LT_LT, + ACTIONS(7254), 16, + sym__heredoc_newline, + sym__file_descriptor, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - ACTIONS(5067), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184605,35 +183624,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159129] = 10, - ACTIONS(2007), 1, + anon_sym_LT_LT_DASH, + [157289] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7531), 2, + ACTIONS(7470), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2590), 2, + STATE(2479), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7529), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184641,35 +183654,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159175] = 10, - ACTIONS(2007), 1, + ACTIONS(7468), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [157336] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, - anon_sym_LT_LT, - ACTIONS(5193), 1, - anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, - sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7571), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2564), 2, + STATE(2529), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(7260), 6, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7569), 6, - sym__backtick_close, + anon_sym_LT_LT, + ACTIONS(7258), 16, + sym__heredoc_newline, + sym__file_descriptor, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184677,35 +183693,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159221] = 10, - ACTIONS(2007), 1, + anon_sym_LT_LT_DASH, + [157373] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7456), 2, + ACTIONS(7384), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7454), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184713,35 +183723,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159267] = 10, - ACTIONS(2007), 1, + ACTIONS(7382), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [157420] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7507), 2, + ACTIONS(7388), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2536), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7505), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184749,78 +183760,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159313] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8081), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [159373] = 10, - ACTIONS(2007), 1, + ACTIONS(7386), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [157467] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7531), 2, + ACTIONS(7396), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2609), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7529), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184828,35 +183797,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159419] = 10, - ACTIONS(2007), 1, + ACTIONS(7394), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [157514] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7515), 2, + ACTIONS(7260), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2474), 2, + STATE(2503), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7513), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184864,29 +183834,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159465] = 5, - ACTIONS(2007), 1, + ACTIONS(7258), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [157561] = 5, + ACTIONS(1167), 1, sym_comment, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - STATE(2462), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(7444), 6, + ACTIONS(7296), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(7442), 15, + ACTIONS(7294), 16, + sym__heredoc_newline, sym__file_descriptor, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184895,27 +183874,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [159501] = 3, - ACTIONS(2007), 1, + [157598] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7817), 8, - anon_sym_SEMI, + ACTIONS(4969), 1, + anon_sym_LT_LT, + ACTIONS(4971), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4993), 1, + sym__file_descriptor, + STATE(2667), 1, + sym_heredoc_redirect, + ACTIONS(7322), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + STATE(2498), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7815), 16, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184923,28 +183903,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [159533] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7809), 8, + ACTIONS(7320), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [157645] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(4969), 1, + anon_sym_LT_LT, + ACTIONS(4971), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4993), 1, + sym__file_descriptor, + STATE(2667), 1, + sym_heredoc_redirect, + ACTIONS(7432), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + STATE(2498), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7807), 16, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184952,36 +183940,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [159565] = 10, - ACTIONS(2007), 1, + ACTIONS(7430), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [157692] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7399), 2, + ACTIONS(7436), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2531), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7397), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -184989,29 +183977,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159611] = 5, - ACTIONS(2007), 1, + ACTIONS(7434), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [157739] = 10, + ACTIONS(1167), 1, sym_comment, - STATE(2720), 1, + ACTIONS(4969), 1, + anon_sym_LT_LT, + ACTIONS(4971), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4993), 1, + sym__file_descriptor, + STATE(2667), 1, sym_heredoc_redirect, - STATE(2484), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7428), 6, + ACTIONS(7444), 2, anon_sym_AMP, anon_sym_PIPE, + STATE(2538), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7426), 15, - sym__file_descriptor, + ACTIONS(4967), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7442), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + [157786] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(4969), 1, + anon_sym_LT_LT, + ACTIONS(4971), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4993), 1, + sym__file_descriptor, + STATE(2667), 1, + sym_heredoc_redirect, + ACTIONS(7448), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(2541), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(4965), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185019,28 +184051,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [159647] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6258), 8, + ACTIONS(7446), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [157833] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(5093), 1, + anon_sym_LT_LT, + ACTIONS(5095), 1, + anon_sym_LT_LT_DASH, + ACTIONS(5117), 1, + sym__file_descriptor, + STATE(2673), 1, + sym_heredoc_redirect, + ACTIONS(7256), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + STATE(2528), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6260), 16, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185048,36 +184088,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [159679] = 10, - ACTIONS(2007), 1, + ACTIONS(7254), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [157880] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7559), 2, + ACTIONS(7452), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2476), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7557), 6, + ACTIONS(4967), 7, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + ACTIONS(7450), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + [157927] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(4969), 1, + anon_sym_LT_LT, + ACTIONS(4971), 1, + anon_sym_LT_LT_DASH, + ACTIONS(4993), 1, + sym__file_descriptor, + STATE(2667), 1, + sym_heredoc_redirect, + ACTIONS(7456), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(2548), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(4965), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185085,53 +184162,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159725] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8083), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [159785] = 3, - ACTIONS(2007), 1, + ACTIONS(7454), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [157974] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 8, + ACTIONS(7639), 8, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, @@ -185140,7 +184182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6557), 16, + ACTIONS(7637), 17, + sym__heredoc_newline, sym__file_descriptor, anon_sym_LF, anon_sym_AMP_AMP, @@ -185157,35 +184200,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [159817] = 10, - ACTIONS(2007), 1, + [158007] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7620), 2, + ACTIONS(7452), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2622), 2, + STATE(2550), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7618), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185193,35 +184229,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159863] = 10, - ACTIONS(2007), 1, + ACTIONS(7450), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [158054] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7383), 2, + ACTIONS(7490), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7381), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185229,35 +184266,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159909] = 10, - ACTIONS(2007), 1, + ACTIONS(7488), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [158101] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7632), 2, + ACTIONS(7494), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2464), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7630), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185265,35 +184303,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [159955] = 10, - ACTIONS(2007), 1, + ACTIONS(7492), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [158148] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7543), 2, + ACTIONS(7296), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7541), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185301,35 +184340,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160001] = 10, - ACTIONS(2007), 1, + ACTIONS(7294), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [158195] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8091), 1, - anon_sym_LT_LT, - ACTIONS(8094), 1, - anon_sym_LT_LT_DASH, - ACTIONS(8097), 1, - sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7589), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2589), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(8085), 3, + ACTIONS(7300), 6, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7587), 6, - sym__backtick_close, + anon_sym_LT_LT, + ACTIONS(7298), 16, + sym__heredoc_newline, + sym__file_descriptor, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(8088), 7, + anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185337,35 +184379,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160047] = 10, - ACTIONS(2007), 1, + anon_sym_LT_LT_DASH, + [158232] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7436), 2, + ACTIONS(7552), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2493), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7434), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185373,35 +184409,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160093] = 10, - ACTIONS(2007), 1, + ACTIONS(7550), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [158279] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7395), 2, + ACTIONS(7512), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7393), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185409,35 +184446,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160139] = 10, - ACTIONS(2007), 1, + ACTIONS(7510), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [158326] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7567), 2, + ACTIONS(7564), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2500), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7565), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185445,35 +184483,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160185] = 10, - ACTIONS(2007), 1, + ACTIONS(7562), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [158373] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7444), 2, + ACTIONS(7524), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2579), 2, + STATE(2465), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7442), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185481,35 +184520,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160231] = 10, - ACTIONS(2007), 1, + ACTIONS(7522), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [158420] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7399), 2, + ACTIONS(7474), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7397), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185517,35 +184557,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160277] = 10, - ACTIONS(2007), 1, + ACTIONS(7472), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [158467] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7571), 2, + ACTIONS(7560), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2494), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7569), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185553,35 +184594,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160323] = 10, - ACTIONS(2007), 1, + ACTIONS(7558), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [158514] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7428), 2, + ACTIONS(7528), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2540), 2, + STATE(2467), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7426), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185589,35 +184631,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160369] = 10, - ACTIONS(2007), 1, + ACTIONS(7526), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [158561] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7535), 2, + ACTIONS(7322), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7533), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185625,35 +184668,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160415] = 10, - ACTIONS(2007), 1, + ACTIONS(7320), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [158608] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7440), 2, + ACTIONS(7532), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2544), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7438), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185661,35 +184705,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160461] = 10, - ACTIONS(2007), 1, + ACTIONS(7530), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [158655] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7563), 2, + ACTIONS(7470), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2555), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7561), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185697,35 +184742,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160507] = 10, - ACTIONS(2007), 1, + ACTIONS(7468), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [158702] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7391), 2, + ACTIONS(7474), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7389), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185733,35 +184779,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160553] = 10, - ACTIONS(2007), 1, + ACTIONS(7472), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [158749] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7424), 2, + ACTIONS(7536), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2509), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7422), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185769,121 +184816,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160599] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8100), 1, - anon_sym_RBRACK, - ACTIONS(8102), 1, - sym_number, - ACTIONS(8105), 1, - anon_sym_DOLLAR, - ACTIONS(8108), 1, - anon_sym_DQUOTE, - ACTIONS(8114), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8117), 1, - sym__index_word, - ACTIONS(8120), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8123), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8126), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8132), 1, - sym__backtick_open, - STATE(2996), 1, - sym_string, - ACTIONS(8111), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8129), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [160659] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8135), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [160719] = 10, - ACTIONS(2007), 1, + ACTIONS(7534), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [158796] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7436), 2, + ACTIONS(7486), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2556), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7434), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185891,35 +184853,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160765] = 10, - ACTIONS(2007), 1, + ACTIONS(7484), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [158843] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7511), 2, + ACTIONS(7508), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7509), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185927,35 +184890,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160811] = 10, - ACTIONS(2007), 1, + ACTIONS(7506), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [158890] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7551), 2, + ACTIONS(7540), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2468), 2, + STATE(2470), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7549), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185963,35 +184927,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160857] = 10, - ACTIONS(2007), 1, + ACTIONS(7538), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [158937] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7571), 2, + ACTIONS(7552), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2558), 2, + STATE(2557), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7569), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -185999,27 +184964,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160903] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6559), 8, + ACTIONS(7550), 7, + sym__heredoc_newline, + anon_sym_LF, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [158984] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(5093), 1, + anon_sym_LT_LT, + ACTIONS(5095), 1, + anon_sym_LT_LT_DASH, + ACTIONS(5117), 1, + sym__file_descriptor, + STATE(2673), 1, + sym_heredoc_redirect, + ACTIONS(7564), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, + STATE(2549), 2, + sym_redirect, + aux_sym_subshell_repeat1, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6561), 16, - sym__file_descriptor, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186027,36 +185001,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [160935] = 10, - ACTIONS(2007), 1, + ACTIONS(7562), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [159031] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7436), 2, + ACTIONS(7560), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2558), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7434), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186064,35 +185038,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [160981] = 10, - ACTIONS(2007), 1, + ACTIONS(7558), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [159078] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7616), 2, + ACTIONS(7548), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7614), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186100,35 +185075,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161027] = 10, - ACTIONS(2007), 1, + ACTIONS(7546), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [159125] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(8035), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(8038), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(8041), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7551), 2, + ACTIONS(7330), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2610), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(8029), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7549), 6, + ACTIONS(7328), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(8032), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186136,35 +185120,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161073] = 10, - ACTIONS(2007), 1, + [159172] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7468), 2, + ACTIONS(7556), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7466), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186172,29 +185149,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161119] = 5, - ACTIONS(2007), 1, + ACTIONS(7554), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [159219] = 5, + ACTIONS(1167), 1, sym_comment, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - STATE(2526), 2, + STATE(2562), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(7444), 6, + ACTIONS(7256), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(7442), 15, + ACTIONS(7254), 16, + sym__heredoc_newline, sym__file_descriptor, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186203,35 +185189,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [161155] = 10, - ACTIONS(2007), 1, + [159256] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, - anon_sym_LT_LT, - ACTIONS(5071), 1, - anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, - sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7624), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2566), 2, + STATE(2563), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(7260), 6, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7622), 6, + anon_sym_LT_LT, + ACTIONS(7258), 16, + sym__heredoc_newline, + sym__file_descriptor, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186239,35 +185220,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161201] = 10, - ACTIONS(2007), 1, + anon_sym_LT_LT_DASH, + [159293] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7371), 2, + ACTIONS(7426), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2503), 2, + STATE(2567), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7369), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186275,66 +185250,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161247] = 5, - ACTIONS(2007), 1, - sym_comment, - STATE(2749), 1, - sym_heredoc_redirect, - STATE(2531), 2, - sym_redirect, - aux_sym_subshell_repeat1, - ACTIONS(7428), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7426), 15, - sym__file_descriptor, + ACTIONS(7424), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [161283] = 10, - ACTIONS(2007), 1, + [159340] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7448), 2, + ACTIONS(7236), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2547), 2, + STATE(2568), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7446), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186342,35 +185287,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161329] = 10, - ACTIONS(2007), 1, + ACTIONS(7234), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [159387] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7456), 2, + ACTIONS(7244), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7454), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186378,35 +185324,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161375] = 10, - ACTIONS(2007), 1, + ACTIONS(7242), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [159434] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7628), 2, + ACTIONS(7270), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2629), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7626), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186414,35 +185361,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161421] = 10, - ACTIONS(2007), 1, + ACTIONS(7268), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [159481] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7488), 2, + ACTIONS(7278), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7486), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186450,35 +185398,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161467] = 10, - ACTIONS(2007), 1, + ACTIONS(7276), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [159528] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7523), 2, + ACTIONS(7288), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2487), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7521), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186486,35 +185435,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161513] = 10, - ACTIONS(2007), 1, + ACTIONS(7286), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [159575] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7547), 2, + ACTIONS(7288), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2419), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7545), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186522,35 +185472,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161559] = 10, - ACTIONS(2007), 1, + ACTIONS(7286), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [159622] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7515), 2, + ACTIONS(7228), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2560), 2, + STATE(2471), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7513), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186558,35 +185509,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161605] = 10, - ACTIONS(2007), 1, + ACTIONS(7226), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [159669] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7436), 2, + ACTIONS(7556), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2589), 2, + STATE(2472), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7434), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186594,35 +185546,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161651] = 10, - ACTIONS(2007), 1, + ACTIONS(7554), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [159716] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, - anon_sym_LT_LT, - ACTIONS(5193), 1, - anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, - sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7436), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2589), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(7296), 6, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7434), 6, + anon_sym_LT_LT, + ACTIONS(7294), 16, + sym__heredoc_newline, + sym__file_descriptor, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(5189), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186630,35 +185585,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161697] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5191), 1, - anon_sym_LT_LT, - ACTIONS(5193), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, - sym__file_descriptor, - STATE(2720), 1, + [159753] = 5, + ACTIONS(1167), 1, + sym_comment, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7432), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(2589), 2, + STATE(2498), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(7300), 6, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7430), 6, + anon_sym_LT_LT, + ACTIONS(7298), 16, + sym__heredoc_newline, + sym__file_descriptor, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(5189), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186666,35 +185617,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161743] = 10, - ACTIONS(2007), 1, + anon_sym_LT_LT_DASH, + [159790] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7543), 2, + ACTIONS(7359), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2570), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7541), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186702,35 +185647,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161789] = 10, - ACTIONS(2007), 1, + ACTIONS(7357), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [159837] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7555), 2, + ACTIONS(7365), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2422), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7553), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186738,35 +185684,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161835] = 10, - ACTIONS(2007), 1, + ACTIONS(7363), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [159884] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7585), 2, + ACTIONS(7380), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2425), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7583), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186774,78 +185721,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161881] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8016), 1, - sym_number, - ACTIONS(8018), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 1, - anon_sym_DQUOTE, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8026), 1, - sym__index_word, - ACTIONS(8028), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, - sym__backtick_open, - ACTIONS(8137), 1, - anon_sym_RBRACK, - STATE(2996), 1, - sym_string, - ACTIONS(8022), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8034), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2602), 2, - sym__expression, - aux_sym_variable_assignment_repeat1, - STATE(3012), 2, - sym_simple_expansion, - sym_expansion, - STATE(2997), 5, - sym__literal, - sym__access, - sym_command_substitution, - sym_arithmetic_expansion, - sym_process_substitution, - [161941] = 10, - ACTIONS(2007), 1, + ACTIONS(7378), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [159931] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7464), 2, + ACTIONS(7384), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7462), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186853,64 +185758,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [161987] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7746), 8, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7744), 16, - sym__file_descriptor, + ACTIONS(7382), 7, + sym__heredoc_newline, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [162019] = 10, - ACTIONS(2007), 1, + anon_sym_done, + [159978] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7527), 2, + ACTIONS(7388), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2631), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7525), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186918,35 +185795,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [162065] = 10, - ACTIONS(2007), 1, + ACTIONS(7386), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [160025] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7523), 2, + ACTIONS(7228), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2474), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7521), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186954,35 +185832,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [162111] = 10, - ACTIONS(2007), 1, + ACTIONS(7226), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [160072] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7612), 2, + ACTIONS(7432), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2566), 2, + STATE(2549), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7610), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -186990,35 +185869,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [162157] = 10, - ACTIONS(2007), 1, + ACTIONS(7430), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [160119] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5069), 1, + ACTIONS(5093), 1, anon_sym_LT_LT, - ACTIONS(5071), 1, + ACTIONS(5095), 1, anon_sym_LT_LT_DASH, - ACTIONS(5093), 1, + ACTIONS(5117), 1, sym__file_descriptor, - STATE(2749), 1, + STATE(2673), 1, sym_heredoc_redirect, - ACTIONS(7577), 2, + ACTIONS(7436), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2627), 2, + STATE(2427), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5065), 3, + ACTIONS(5089), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7575), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - ACTIONS(5067), 7, + ACTIONS(5091), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -187026,35 +185906,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [162203] = 10, - ACTIONS(2007), 1, + ACTIONS(7434), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [160166] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5191), 1, + ACTIONS(4969), 1, anon_sym_LT_LT, - ACTIONS(5193), 1, + ACTIONS(4971), 1, anon_sym_LT_LT_DASH, - ACTIONS(5215), 1, + ACTIONS(4993), 1, sym__file_descriptor, - STATE(2720), 1, + STATE(2667), 1, sym_heredoc_redirect, - ACTIONS(7484), 2, + ACTIONS(7380), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(2464), 2, + STATE(2526), 2, sym_redirect, aux_sym_subshell_repeat1, - ACTIONS(5187), 3, + ACTIONS(4965), 3, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, - ACTIONS(7482), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(5189), 7, + ACTIONS(4967), 7, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -187062,402 +185943,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_GT, anon_sym_LT_LT_LT, - [162249] = 16, + ACTIONS(7378), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [160213] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8044), 1, + anon_sym_RBRACK, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8139), 1, - sym__index_word, - STATE(2996), 1, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2522), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [162306] = 16, + [160273] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8141), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8068), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2516), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [162363] = 16, + [160333] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8143), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8070), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2495), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [162420] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8145), 1, - sym_heredoc_body, - ACTIONS(8147), 1, - sym_heredoc_end, - ACTIONS(6205), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6207), 15, - sym__file_descriptor, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [162455] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8149), 1, - sym__concat, - STATE(2644), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6231), 15, - sym__file_descriptor, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [162490] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8151), 1, - sym_heredoc_body, - ACTIONS(8153), 1, - sym_heredoc_end, - ACTIONS(6213), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6215), 15, - sym__file_descriptor, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [162525] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8155), 1, - sym__concat, - STATE(2644), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6237), 15, - sym__file_descriptor, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [162560] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8158), 1, - sym__concat, - STATE(2646), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6231), 15, - sym__file_descriptor, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [162595] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8160), 1, - sym__concat, - STATE(2646), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6237), 15, - sym__file_descriptor, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [162630] = 16, + [160393] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8163), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8072), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2493), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [162687] = 5, - ACTIONS(2007), 1, + [160453] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(8165), 1, - sym_heredoc_body, - ACTIONS(8167), 1, - sym_heredoc_end, - ACTIONS(6205), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6207), 15, - sym__file_descriptor, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [162722] = 5, - ACTIONS(2007), 1, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8074), 1, + anon_sym_RBRACK, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2585), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [160513] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8169), 1, - sym_heredoc_body, - ACTIONS(8171), 1, - sym_heredoc_end, - ACTIONS(6213), 6, + ACTIONS(8076), 1, + sym__concat, + STATE(2578), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6215), 15, + ACTIONS(6428), 16, + sym__heredoc_newline, sym__file_descriptor, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -187466,641 +186197,705 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [162757] = 16, + [160549] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8173), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8079), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2583), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [162814] = 16, + [160609] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8175), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8081), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2475), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [162871] = 16, + [160669] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8177), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8083), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2521), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [162928] = 16, + [160729] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8179), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8085), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2549), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [162985] = 16, + [160789] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8181), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8087), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2573), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [163042] = 16, + [160849] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8183), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8089), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2603), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [163099] = 16, + [160909] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8091), 1, + anon_sym_RBRACK, + ACTIONS(8093), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8096), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8099), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8105), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8108), 1, + sym__index_word, + ACTIONS(8111), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8114), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8117), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8123), 1, sym__backtick_open, - ACTIONS(8185), 1, - sym__index_word, - STATE(2996), 1, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8102), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8120), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2630), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [163156] = 16, + [160969] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8187), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8126), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2470), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [163213] = 16, + [161029] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8189), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8128), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2480), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [163270] = 16, + [161089] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8191), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8130), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2486), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [163327] = 16, + [161149] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8193), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8132), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2492), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [163384] = 16, + [161209] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8195), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8134), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2498), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [163441] = 16, + [161269] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8136), 1, + sym__concat, + STATE(2596), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6435), 16, + sym__heredoc_newline, + sym__file_descriptor, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [161305] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8197), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8138), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2504), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [163498] = 16, + [161365] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8199), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8140), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2510), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [163555] = 16, + [161425] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(8016), 1, + ACTIONS(8046), 1, sym_number, - ACTIONS(8018), 1, + ACTIONS(8048), 1, anon_sym_DOLLAR, - ACTIONS(8020), 1, + ACTIONS(8050), 1, anon_sym_DQUOTE, - ACTIONS(8024), 1, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8028), 1, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8030), 1, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 1, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8036), 1, + ACTIONS(8066), 1, sym__backtick_open, - ACTIONS(8201), 1, - sym__index_word, - STATE(2996), 1, + ACTIONS(8142), 1, + anon_sym_RBRACK, + STATE(2981), 1, sym_string, - ACTIONS(8022), 2, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, - ACTIONS(8034), 2, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2528), 2, + STATE(2585), 2, sym__expression, aux_sym_variable_assignment_repeat1, - STATE(3012), 2, + STATE(2976), 2, sym_simple_expansion, sym_expansion, - STATE(2997), 5, + STATE(2940), 5, sym__literal, sym__access, sym_command_substitution, sym_arithmetic_expansion, sym_process_substitution, - [163612] = 4, - ACTIONS(2007), 1, + [161485] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, + ACTIONS(8144), 1, sym__concat, - ACTIONS(6221), 6, + STATE(2578), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6223), 15, + ACTIONS(6435), 16, + sym__heredoc_newline, sym__file_descriptor, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -188109,18 +186904,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [163644] = 3, - ACTIONS(2007), 1, + [161521] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 6, + ACTIONS(8146), 1, + sym__concat, + STATE(2596), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6436), 16, - sym__concat, + ACTIONS(6428), 16, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_close, anon_sym_LF, @@ -188136,17 +186935,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [163674] = 3, - ACTIONS(2007), 1, + [161557] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8056), 1, + sym__index_word, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8149), 1, + anon_sym_RBRACK, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2585), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [161617] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 6, + ACTIONS(5951), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6237), 16, + ACTIONS(5949), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188163,17 +187006,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [163704] = 3, - ACTIONS(2007), 1, + [161648] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8151), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2580), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [161705] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8153), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2588), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [161762] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8155), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2573), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [161819] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 6, + ACTIONS(6426), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6448), 16, + ACTIONS(6428), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188190,17 +187157,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [163734] = 3, - ACTIONS(2007), 1, + [161850] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 6, + ACTIONS(6270), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6452), 16, + ACTIONS(6268), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188217,17 +187185,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [163764] = 3, - ACTIONS(2007), 1, + [161881] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 6, + ACTIONS(6489), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5816), 16, + ACTIONS(6491), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188244,17 +187213,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [163794] = 3, - ACTIONS(2007), 1, + [161912] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 6, + ACTIONS(6493), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5866), 16, + ACTIONS(6495), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188271,17 +187241,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [163824] = 3, - ACTIONS(2007), 1, + [161943] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 6, + ACTIONS(6083), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5986), 16, + ACTIONS(6081), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188298,45 +187269,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [163854] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6223), 15, - sym__file_descriptor, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [163886] = 3, - ACTIONS(2007), 1, + [161974] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 6, + ACTIONS(6101), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5998), 16, + ACTIONS(6099), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188353,25 +187297,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [163916] = 3, - ACTIONS(2007), 1, + [162005] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 6, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6074), 16, - sym__concat, + ACTIONS(6340), 16, + sym__heredoc_newline, sym__file_descriptor, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -188380,25 +187326,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [163946] = 3, - ACTIONS(2007), 1, + [162038] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 6, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6237), 16, - sym__concat, + ACTIONS(6340), 16, + sym__heredoc_newline, sym__file_descriptor, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -188407,17 +187355,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [163976] = 3, - ACTIONS(2007), 1, + [162071] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 6, + ACTIONS(6485), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5804), 16, + ACTIONS(6487), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188434,17 +187383,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164006] = 3, - ACTIONS(2007), 1, + [162102] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 6, + ACTIONS(6426), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6436), 16, + ACTIONS(6428), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -188461,26 +187411,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164036] = 4, - ACTIONS(2007), 1, + [162133] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8203), 1, - sym_heredoc_end, - ACTIONS(6252), 6, + ACTIONS(6101), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6254), 15, + ACTIONS(6099), 17, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -188489,17 +187439,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164068] = 3, - ACTIONS(2007), 1, + [162164] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 6, + ACTIONS(6105), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5902), 16, + ACTIONS(6103), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188516,17 +187467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164098] = 3, - ACTIONS(2007), 1, + [162195] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 6, + ACTIONS(6485), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6448), 16, + ACTIONS(6487), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -188543,25 +187495,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164128] = 3, - ACTIONS(2007), 1, + [162226] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 6, + ACTIONS(6083), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5932), 16, + ACTIONS(6081), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -188570,17 +187523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164158] = 3, - ACTIONS(2007), 1, + [162257] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 6, + ACTIONS(6105), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6452), 16, + ACTIONS(6103), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -188597,25 +187551,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164188] = 3, - ACTIONS(2007), 1, + [162288] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8157), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2583), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [162345] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 6, + ACTIONS(6493), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6163), 16, + ACTIONS(6495), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -188624,17 +187620,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164218] = 3, - ACTIONS(2007), 1, + [162376] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 6, + ACTIONS(6322), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6173), 16, + ACTIONS(6320), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188651,17 +187648,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164248] = 3, - ACTIONS(2007), 1, + [162407] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 6, + ACTIONS(5969), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5978), 16, + ACTIONS(5967), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188678,17 +187676,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164278] = 3, - ACTIONS(2007), 1, + [162438] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 6, + ACTIONS(6302), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6028), 16, + ACTIONS(6300), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188705,17 +187704,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164308] = 3, - ACTIONS(2007), 1, + [162469] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 6, + ACTIONS(6019), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6044), 16, + ACTIONS(6017), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188732,26 +187732,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164338] = 4, - ACTIONS(2007), 1, + [162500] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8205), 1, - sym_heredoc_end, - ACTIONS(6258), 6, + ACTIONS(6264), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6260), 15, + ACTIONS(6262), 17, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -188760,19 +187760,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164370] = 4, - ACTIONS(2007), 1, + [162531] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8207), 1, - sym_heredoc_end, - ACTIONS(6258), 6, + ACTIONS(6109), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6260), 15, + ACTIONS(6107), 17, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, sym__backtick_close, anon_sym_LF, @@ -188788,25 +187788,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164402] = 3, - ACTIONS(2007), 1, + [162562] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 6, + ACTIONS(6143), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5816), 16, + ACTIONS(6141), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -188815,25 +187816,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164432] = 3, - ACTIONS(2007), 1, + [162593] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 6, + ACTIONS(6183), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5866), 16, + ACTIONS(6181), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -188842,17 +187844,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164462] = 3, - ACTIONS(2007), 1, + [162624] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 6, + ACTIONS(6244), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5830), 16, + ACTIONS(6242), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188869,25 +187872,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164492] = 3, - ACTIONS(2007), 1, + [162655] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 6, + ACTIONS(5905), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5986), 16, + ACTIONS(5903), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -188896,17 +187900,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164522] = 3, - ACTIONS(2007), 1, + [162686] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 6, + ACTIONS(6260), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5836), 16, + ACTIONS(6258), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188923,17 +187928,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164552] = 3, - ACTIONS(2007), 1, + [162717] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 6, + ACTIONS(6189), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5842), 16, + ACTIONS(6187), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, sym__backtick_close, @@ -188950,17 +187956,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164582] = 3, - ACTIONS(2007), 1, + [162748] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 6, + ACTIONS(6302), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5998), 16, + ACTIONS(6300), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -188977,25 +187984,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164612] = 3, - ACTIONS(2007), 1, + [162779] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 6, + ACTIONS(6109), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5880), 16, + ACTIONS(6107), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -189004,17 +188012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164642] = 3, - ACTIONS(2007), 1, + [162810] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 6, + ACTIONS(5905), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6074), 16, + ACTIONS(5903), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -189031,17 +188040,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164672] = 3, - ACTIONS(2007), 1, + [162841] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 6, + ACTIONS(6177), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5804), 16, + ACTIONS(6175), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -189058,17 +188068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164702] = 3, - ACTIONS(2007), 1, + [162872] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 6, + ACTIONS(6264), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5902), 16, + ACTIONS(6262), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -189085,17 +188096,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164732] = 3, - ACTIONS(2007), 1, + [162903] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 6, + ACTIONS(6189), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5932), 16, + ACTIONS(6187), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -189112,25 +188124,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164762] = 3, - ACTIONS(2007), 1, + [162934] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 6, + ACTIONS(6177), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6163), 16, + ACTIONS(6175), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -189139,17 +188152,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164792] = 3, - ACTIONS(2007), 1, + [162965] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8159), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2586), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [163022] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 6, + ACTIONS(5951), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6173), 16, + ACTIONS(5949), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -189166,17 +188221,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164822] = 3, - ACTIONS(2007), 1, + [163053] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 6, + ACTIONS(6322), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5978), 16, + ACTIONS(6320), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -189193,17 +188249,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164852] = 3, - ACTIONS(2007), 1, + [163084] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8161), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2581), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [163141] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 6, + ACTIONS(5969), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6028), 16, + ACTIONS(5967), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -189220,17 +188318,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164882] = 3, - ACTIONS(2007), 1, + [163172] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 6, + ACTIONS(6019), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6044), 16, + ACTIONS(6017), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -189247,17 +188346,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164912] = 3, - ACTIONS(2007), 1, + [163203] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 6, + ACTIONS(6143), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6064), 16, + ACTIONS(6141), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -189274,17 +188374,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164942] = 3, - ACTIONS(2007), 1, + [163234] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 6, + ACTIONS(6183), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5830), 16, + ACTIONS(6181), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -189301,17 +188402,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [164972] = 3, - ACTIONS(2007), 1, + [163265] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8163), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2575), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [163322] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 6, + ACTIONS(6244), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5836), 16, + ACTIONS(6242), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -189328,17 +188471,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165002] = 3, - ACTIONS(2007), 1, + [163353] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 6, + ACTIONS(6260), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5842), 16, + ACTIONS(6258), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -189355,17 +188499,223 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165032] = 3, - ACTIONS(2007), 1, + [163384] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8165), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2594), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [163441] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8167), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2592), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [163498] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8169), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2584), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [163555] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8171), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2577), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [163612] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8173), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2582), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [163669] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 6, + ACTIONS(6270), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(5880), 16, + ACTIONS(6268), 17, + sym__heredoc_newline, sym__concat, sym__file_descriptor, anon_sym_LF, @@ -189382,77 +188732,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165062] = 5, - ACTIONS(2007), 1, + [163700] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(8209), 1, - sym__concat, - STATE(2714), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 3, - sym_word, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6231), 17, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_RPAREN, - aux_sym_brace_expression_token1, + ACTIONS(8175), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2589), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [163757] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8177), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2574), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [163814] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8179), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2579), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [163871] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8181), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [165096] = 5, - ACTIONS(2007), 1, + STATE(2587), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [163928] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(8211), 1, - sym__concat, - STATE(2714), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 3, - sym_word, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 17, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_RPAREN, - aux_sym_brace_expression_token1, + ACTIONS(8183), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2590), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [163985] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8185), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, sym_raw_string, sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2593), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [164042] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8187), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [165130] = 4, - ACTIONS(2007), 1, + STATE(2597), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [164099] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(8214), 1, - sym_heredoc_end, - ACTIONS(6252), 6, + ACTIONS(8046), 1, + sym_number, + ACTIONS(8048), 1, + anon_sym_DOLLAR, + ACTIONS(8050), 1, + anon_sym_DQUOTE, + ACTIONS(8054), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8058), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8060), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8062), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8066), 1, + sym__backtick_open, + ACTIONS(8189), 1, + sym__index_word, + STATE(2981), 1, + sym_string, + ACTIONS(8052), 2, + sym_raw_string, + sym_ansi_c_string, + ACTIONS(8064), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2576), 2, + sym__expression, + aux_sym_variable_assignment_repeat1, + STATE(2976), 2, + sym_simple_expansion, + sym_expansion, + STATE(2940), 5, + sym__literal, + sym__access, + sym_command_substitution, + sym_arithmetic_expansion, + sym_process_substitution, + [164156] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6489), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6254), 15, + ACTIONS(6491), 17, + sym__heredoc_newline, + sym__concat, sym__file_descriptor, anon_sym_LF, anon_sym_SEMI, @@ -189468,18 +189088,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165162] = 3, - ACTIONS(2007), 1, + [164187] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 6, + ACTIONS(6609), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6064), 16, - sym__concat, + ACTIONS(6611), 16, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_close, anon_sym_LF, @@ -189495,77 +189115,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165192] = 3, - ACTIONS(2007), 1, + [164217] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 3, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 18, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(7688), 6, anon_sym_AMP, - anon_sym_RPAREN, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [165221] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 3, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6223), 17, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(7686), 16, + sym__heredoc_newline, + sym__file_descriptor, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_RPAREN, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [165252] = 3, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [164247] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 6, + ACTIONS(6613), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6557), 15, + ACTIONS(6615), 16, + sym__heredoc_newline, sym__file_descriptor, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -189574,17 +189169,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165281] = 3, - ACTIONS(2007), 1, + [164277] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6543), 6, + ACTIONS(6601), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6545), 15, + ACTIONS(6603), 16, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_close, anon_sym_LF, @@ -189600,17 +189196,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165310] = 3, - ACTIONS(2007), 1, + [164307] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 6, + ACTIONS(6605), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6553), 15, + ACTIONS(6607), 16, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_close, anon_sym_LF, @@ -189626,15 +189223,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165339] = 3, - ACTIONS(2007), 1, + [164337] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 3, + ACTIONS(8191), 1, + sym__concat, + STATE(2672), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 18, - sym__concat, + ACTIONS(6435), 17, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -189652,24 +189252,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [165368] = 3, - ACTIONS(2007), 1, + [164371] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6547), 6, + ACTIONS(6617), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6549), 15, + ACTIONS(6619), 16, + sym__heredoc_newline, sym__file_descriptor, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -189678,17 +189279,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165397] = 3, - ACTIONS(2007), 1, + [164401] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 6, + ACTIONS(7643), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6260), 15, + ACTIONS(7641), 16, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_close, anon_sym_LF, @@ -189704,15 +189306,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165426] = 3, - ACTIONS(2007), 1, + [164431] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 3, + ACTIONS(8193), 1, + sym__concat, + STATE(2672), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 18, - sym__concat, + ACTIONS(6428), 17, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -189730,43 +189335,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [165455] = 3, - ACTIONS(2007), 1, + [164465] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 3, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 18, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(6601), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6603), 16, + sym__heredoc_newline, + sym__file_descriptor, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_RPAREN, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [165484] = 3, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [164495] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 6, + ACTIONS(7639), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6254), 15, + ACTIONS(7637), 16, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_close, anon_sym_LF, @@ -189782,50 +189389,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165513] = 3, - ACTIONS(2007), 1, + [164525] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 3, - sym_word, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 18, - sym__concat, - sym__backtick_open, - sym__dollar_literal, - sym__brace_expr_start, + ACTIONS(7643), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(7641), 16, + sym__heredoc_newline, + sym__file_descriptor, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_RPAREN, - aux_sym_brace_expression_token1, - sym_number, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [165542] = 3, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [164555] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 6, + ACTIONS(6613), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6561), 15, + ACTIONS(6615), 16, + sym__heredoc_newline, sym__file_descriptor, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -189834,17 +189443,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165571] = 3, - ACTIONS(2007), 1, + [164585] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7746), 6, + ACTIONS(6617), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(7744), 15, + ACTIONS(6619), 16, + sym__heredoc_newline, sym__file_descriptor, sym__backtick_close, anon_sym_LF, @@ -189860,17 +189470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165600] = 3, - ACTIONS(2007), 1, + [164615] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7817), 6, + ACTIONS(6605), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(7815), 15, + ACTIONS(6607), 16, + sym__heredoc_newline, sym__file_descriptor, anon_sym_LF, anon_sym_SEMI, @@ -189886,24 +189497,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165629] = 3, - ACTIONS(2007), 1, + [164645] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6559), 6, + ACTIONS(7688), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(6561), 15, + ACTIONS(7686), 16, + sym__heredoc_newline, sym__file_descriptor, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_done, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -189912,17 +189524,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165658] = 3, - ACTIONS(2007), 1, + [164675] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7809), 6, + ACTIONS(7639), 6, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_LT, - ACTIONS(7807), 15, + ACTIONS(7637), 16, + sym__heredoc_newline, sym__file_descriptor, anon_sym_LF, anon_sym_SEMI, @@ -189938,14 +189551,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_LT_LT_LT, anon_sym_LT_LT_DASH, - [165687] = 3, - ACTIONS(2007), 1, + [164705] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6609), 6, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_LT, + ACTIONS(6611), 16, + sym__heredoc_newline, + sym__file_descriptor, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + [164735] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 3, + ACTIONS(6109), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6237), 18, + ACTIONS(6107), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -189964,14 +189604,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [165716] = 3, - ACTIONS(2007), 1, + [164764] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 3, + ACTIONS(5905), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 18, + ACTIONS(5903), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -189990,14 +189630,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [165745] = 3, - ACTIONS(2007), 1, + [164793] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 3, + ACTIONS(6244), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 18, + ACTIONS(6242), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190016,118 +189656,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [165774] = 3, - ACTIONS(2007), 1, + [164822] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6555), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6557), 15, - sym__file_descriptor, + ACTIONS(6189), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6187), 18, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [165803] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7817), 6, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7815), 15, - sym__file_descriptor, - sym__backtick_close, + anon_sym_RPAREN, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [164851] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6426), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6428), 18, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [165832] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7746), 6, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7744), 15, - sym__file_descriptor, + anon_sym_RPAREN, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [164880] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6101), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6099), 18, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [165861] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7809), 6, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(7807), 15, - sym__file_descriptor, - sym__backtick_close, + anon_sym_RPAREN, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [164909] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6260), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6258), 18, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [165890] = 3, - ACTIONS(2007), 1, + anon_sym_AMP, + anon_sym_RPAREN, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [164938] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 3, + ACTIONS(6019), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 18, + ACTIONS(6017), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190146,14 +189786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [165919] = 3, - ACTIONS(2007), 1, + [164967] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 3, + ACTIONS(6489), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 18, + ACTIONS(6491), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190172,14 +189812,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [165948] = 3, - ACTIONS(2007), 1, + [164996] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 3, + ACTIONS(6083), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 18, + ACTIONS(6081), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190198,40 +189838,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [165977] = 3, - ACTIONS(2007), 1, + [165025] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6258), 6, + ACTIONS(6177), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6175), 18, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, + anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6260), 15, - sym__file_descriptor, + anon_sym_RPAREN, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [165054] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6322), 3, + sym_word, + anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6320), 18, + sym__concat, + sym__backtick_open, + sym__dollar_literal, + sym__brace_expr_start, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [166006] = 3, - ACTIONS(2007), 1, + anon_sym_AMP, + anon_sym_RPAREN, + aux_sym_brace_expression_token1, + sym_number, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [165083] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 3, + ACTIONS(6485), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 18, + ACTIONS(6487), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190250,14 +189916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166035] = 3, - ACTIONS(2007), 1, + [165112] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 3, + ACTIONS(6105), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 18, + ACTIONS(6103), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190276,14 +189942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166064] = 3, - ACTIONS(2007), 1, + [165141] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 3, + ACTIONS(6183), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 18, + ACTIONS(6181), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190302,14 +189968,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166093] = 3, - ACTIONS(2007), 1, + [165170] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 3, + ACTIONS(6143), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 18, + ACTIONS(6141), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190328,66 +189994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166122] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6543), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6545), 15, - sym__file_descriptor, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [166151] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6547), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6549), 15, - sym__file_descriptor, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [166180] = 3, - ACTIONS(2007), 1, + [165199] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 3, + ACTIONS(6493), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 18, + ACTIONS(6495), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190406,14 +190020,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166209] = 3, - ACTIONS(2007), 1, + [165228] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 3, + ACTIONS(6270), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 18, + ACTIONS(6268), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190432,41 +190046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166238] = 3, - ACTIONS(2007), 1, + [165257] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6551), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6553), 15, - sym__file_descriptor, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [166267] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5934), 3, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 18, - sym__concat, + ACTIONS(6340), 17, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -190484,14 +190073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166296] = 3, - ACTIONS(2007), 1, + [165288] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 3, + ACTIONS(5951), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 18, + ACTIONS(5949), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190510,40 +190099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166325] = 3, - ACTIONS(2007), 1, + [165317] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6252), 6, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_LT, - ACTIONS(6254), 15, - sym__file_descriptor, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - anon_sym_LT_LT_LT, - anon_sym_LT_LT_DASH, - [166354] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6165), 3, + ACTIONS(6264), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 18, + ACTIONS(6262), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190562,14 +190125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166383] = 3, - ACTIONS(2007), 1, + [165346] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 3, + ACTIONS(6302), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 18, + ACTIONS(6300), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190588,14 +190151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166412] = 3, - ACTIONS(2007), 1, + [165375] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 3, + ACTIONS(5969), 3, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 18, + ACTIONS(5967), 18, sym__concat, sym__backtick_open, sym__dollar_literal, @@ -190614,19 +190177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166441] = 5, - ACTIONS(2007), 1, + [165404] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8218), 1, + ACTIONS(8196), 1, anon_sym_LF, - STATE(2767), 1, + STATE(2705), 1, aux_sym_program_repeat1, - ACTIONS(8216), 4, + ACTIONS(994), 4, anon_sym_esac, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(8220), 14, + ACTIONS(992), 14, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -190641,19 +190204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166473] = 5, - ACTIONS(2007), 1, + [165436] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8224), 1, + ACTIONS(6972), 1, anon_sym_LF, - STATE(2766), 1, + STATE(2705), 1, aux_sym_program_repeat1, - ACTIONS(8222), 4, + ACTIONS(8199), 4, anon_sym_esac, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(8226), 14, + ACTIONS(8201), 14, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -190668,19 +190231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166505] = 5, - ACTIONS(2007), 1, + [165468] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8228), 1, + ACTIONS(6972), 1, anon_sym_LF, - STATE(2762), 1, + STATE(2705), 1, aux_sym_program_repeat1, - ACTIONS(958), 4, + ACTIONS(8203), 4, anon_sym_esac, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(956), 14, + ACTIONS(8205), 14, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -190695,19 +190258,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166537] = 5, - ACTIONS(2007), 1, + [165500] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8233), 1, + ACTIONS(8207), 1, anon_sym_LF, - STATE(2764), 1, + STATE(2706), 1, aux_sym_program_repeat1, - ACTIONS(8231), 4, + ACTIONS(8203), 4, anon_sym_esac, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(8235), 14, + ACTIONS(8205), 14, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -190722,19 +190285,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166569] = 5, - ACTIONS(2007), 1, + [165532] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7025), 1, + ACTIONS(8211), 1, anon_sym_LF, - STATE(2762), 1, + STATE(2710), 1, aux_sym_program_repeat1, - ACTIONS(8237), 4, + ACTIONS(8209), 4, anon_sym_esac, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(8239), 14, + ACTIONS(8213), 14, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -190749,19 +190312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166601] = 5, - ACTIONS(2007), 1, + [165564] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8241), 1, + ACTIONS(6972), 1, anon_sym_LF, - STATE(2768), 1, + STATE(2705), 1, aux_sym_program_repeat1, - ACTIONS(8237), 4, + ACTIONS(8215), 4, anon_sym_esac, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(8239), 14, + ACTIONS(8217), 14, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -190776,19 +190339,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166633] = 5, - ACTIONS(2007), 1, + [165596] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7025), 1, + ACTIONS(8221), 1, anon_sym_LF, - STATE(2762), 1, + STATE(2707), 1, aux_sym_program_repeat1, - ACTIONS(8243), 4, + ACTIONS(8219), 4, anon_sym_esac, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(8245), 14, + ACTIONS(8223), 14, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -190803,19 +190366,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166665] = 5, - ACTIONS(2007), 1, + [165628] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7025), 1, + ACTIONS(6972), 1, anon_sym_LF, - STATE(2762), 1, + STATE(2705), 1, aux_sym_program_repeat1, - ACTIONS(8222), 4, + ACTIONS(8209), 4, anon_sym_esac, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(8226), 14, + ACTIONS(8213), 14, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -190830,19 +190393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166697] = 5, - ACTIONS(2007), 1, + [165660] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7025), 1, + ACTIONS(8227), 1, anon_sym_LF, - STATE(2762), 1, + STATE(2712), 1, aux_sym_program_repeat1, - ACTIONS(8247), 4, + ACTIONS(8225), 4, anon_sym_esac, sym_word, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(8249), 14, + ACTIONS(8229), 14, sym__backtick_open, sym__dollar_literal, sym__brace_expr_start, @@ -190857,715 +190420,1219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [166729] = 13, + [165692] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8231), 1, + sym__concat, + STATE(2715), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6435), 15, + sym__heredoc_newline, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [165723] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8233), 1, + sym__concat, + STATE(2715), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6428), 15, + sym__heredoc_newline, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [165754] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8253), 1, + ACTIONS(8238), 1, anon_sym_DQUOTE, - ACTIONS(8257), 1, + ACTIONS(8242), 1, sym_escape_sequence, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8255), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2904), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [166775] = 13, + [165800] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8271), 1, + ACTIONS(8256), 1, anon_sym_DQUOTE, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [166821] = 13, + [165846] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(5905), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5903), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [165872] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8277), 1, + ACTIONS(8258), 1, anon_sym_DQUOTE, - ACTIONS(8281), 1, + ACTIONS(8262), 1, sym_escape_sequence, - ACTIONS(8279), 2, + ACTIONS(8260), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2773), 5, + STATE(2722), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [166867] = 13, + [165918] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8283), 1, + ACTIONS(8264), 1, anon_sym_DQUOTE, - ACTIONS(8287), 1, - sym_escape_sequence, - ACTIONS(8285), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2774), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [166913] = 13, + [165964] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, + ACTIONS(8266), 1, + anon_sym_DQUOTE, + ACTIONS(8270), 1, + sym_escape_sequence, + ACTIONS(8268), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2724), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [166010] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8242), 1, sym_escape_sequence, - ACTIONS(8283), 1, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8266), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [166959] = 13, + [166056] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, + ACTIONS(8272), 1, + anon_sym_DQUOTE, + ACTIONS(8276), 1, sym_escape_sequence, - ACTIONS(8289), 1, + ACTIONS(8274), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2726), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [166102] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8278), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167005] = 13, + [166148] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8291), 1, + ACTIONS(8280), 1, anon_sym_DQUOTE, - ACTIONS(8295), 1, + ACTIONS(8284), 1, sym_escape_sequence, - ACTIONS(8293), 2, + ACTIONS(8282), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2777), 5, + STATE(2728), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167051] = 13, + [166194] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8297), 1, + ACTIONS(8280), 1, anon_sym_DQUOTE, - ACTIONS(8301), 1, - sym_escape_sequence, - ACTIONS(8299), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2779), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167097] = 13, + [166240] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, + ACTIONS(8286), 1, + anon_sym_DQUOTE, + ACTIONS(8290), 1, + sym_escape_sequence, + ACTIONS(8288), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2743), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [166286] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8242), 1, sym_escape_sequence, - ACTIONS(8297), 1, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8292), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167143] = 13, + [166332] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8303), 1, + ACTIONS(8294), 1, anon_sym_DQUOTE, - ACTIONS(8307), 1, + ACTIONS(8298), 1, sym_escape_sequence, - ACTIONS(8305), 2, + ACTIONS(8296), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2825), 5, + STATE(2737), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167189] = 13, + [166378] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, + ACTIONS(8300), 1, + anon_sym_DQUOTE, + ACTIONS(8304), 1, sym_escape_sequence, - ACTIONS(8309), 1, + ACTIONS(8302), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2802), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [166424] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8300), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167235] = 13, + [166470] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8311), 1, + ACTIONS(8306), 1, anon_sym_DQUOTE, - ACTIONS(8315), 1, + ACTIONS(8310), 1, sym_escape_sequence, - ACTIONS(8313), 2, + ACTIONS(8308), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2782), 5, + STATE(2735), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167281] = 13, + [166516] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8317), 1, + ACTIONS(8312), 1, anon_sym_DQUOTE, - ACTIONS(8321), 1, + ACTIONS(8316), 1, sym_escape_sequence, - ACTIONS(8319), 2, + ACTIONS(8314), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2783), 5, + STATE(2740), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167327] = 13, + [166562] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, + ACTIONS(8318), 1, + anon_sym_DQUOTE, + ACTIONS(8322), 1, + sym_escape_sequence, + ACTIONS(8320), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2739), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [166608] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8242), 1, sym_escape_sequence, - ACTIONS(8317), 1, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8318), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167373] = 13, + [166654] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, + ACTIONS(8324), 1, + anon_sym_DQUOTE, + ACTIONS(8328), 1, + sym_escape_sequence, + ACTIONS(8326), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2776), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [166700] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8242), 1, sym_escape_sequence, - ACTIONS(8323), 1, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8324), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167419] = 13, + [166746] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8325), 1, + ACTIONS(8330), 1, anon_sym_DQUOTE, - ACTIONS(8329), 1, + ACTIONS(8334), 1, sym_escape_sequence, - ACTIONS(8327), 2, + ACTIONS(8332), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2787), 5, + STATE(2746), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167465] = 13, + [166792] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8331), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8334), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8336), 1, anon_sym_DQUOTE, - ACTIONS(8339), 1, + ACTIONS(8240), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2845), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [166838] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8242), 1, sym_escape_sequence, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8330), 1, + anon_sym_DQUOTE, + ACTIONS(8240), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2845), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [166884] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8338), 1, + anon_sym_DQUOTE, ACTIONS(8342), 1, + sym_escape_sequence, + ACTIONS(8340), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2745), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [166930] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8345), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8344), 1, + anon_sym_DQUOTE, ACTIONS(8348), 1, + sym_escape_sequence, + ACTIONS(8346), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2764), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [166976] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8351), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8354), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8357), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8336), 2, + ACTIONS(8344), 1, + anon_sym_DQUOTE, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167511] = 13, + [167022] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8360), 1, + ACTIONS(8350), 1, anon_sym_DQUOTE, - ACTIONS(8364), 1, + ACTIONS(8354), 1, sym_escape_sequence, - ACTIONS(8362), 2, + ACTIONS(8352), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2788), 5, + STATE(2748), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167557] = 13, + [167068] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, + ACTIONS(8350), 1, + anon_sym_DQUOTE, + ACTIONS(8240), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2845), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [167114] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8242), 1, sym_escape_sequence, - ACTIONS(8360), 1, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8356), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167603] = 13, + [167160] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, + ACTIONS(8358), 1, + anon_sym_DQUOTE, + ACTIONS(8362), 1, sym_escape_sequence, - ACTIONS(8366), 1, + ACTIONS(8360), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2828), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [167206] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8364), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167649] = 13, + [167252] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8368), 1, + ACTIONS(8366), 1, anon_sym_DQUOTE, - ACTIONS(8372), 1, + ACTIONS(8370), 1, sym_escape_sequence, - ACTIONS(8370), 2, + ACTIONS(8368), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2791), 5, + STATE(2752), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167695] = 13, + [167298] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8372), 1, + anon_sym_DQUOTE, + ACTIONS(8240), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2845), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [167344] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8374), 1, anon_sym_DQUOTE, @@ -191574,130 +191641,130 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8376), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2793), 5, + STATE(2753), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167741] = 13, + [167390] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, ACTIONS(8374), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167787] = 13, + [167436] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8380), 1, anon_sym_DQUOTE, - ACTIONS(8384), 1, - sym_escape_sequence, - ACTIONS(8382), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2804), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167833] = 13, + [167482] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8386), 1, + ACTIONS(8382), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8386), 1, + sym_escape_sequence, + ACTIONS(8384), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2779), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167879] = 13, + [167528] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8388), 1, anon_sym_DQUOTE, @@ -191706,31 +191773,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8390), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2796), 5, + STATE(2765), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167925] = 13, + [167574] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8394), 1, anon_sym_DQUOTE, @@ -191739,130 +191806,130 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8396), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2798), 5, + STATE(2758), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [167971] = 13, + [167620] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8394), 1, + ACTIONS(8400), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8404), 1, + sym_escape_sequence, + ACTIONS(8402), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2759), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168017] = 13, + [167666] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8400), 1, anon_sym_DQUOTE, - ACTIONS(8404), 1, - sym_escape_sequence, - ACTIONS(8402), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2860), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168063] = 13, + [167712] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, ACTIONS(8406), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168109] = 13, + [167758] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8408), 1, anon_sym_DQUOTE, @@ -191871,31 +191938,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8410), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2802), 5, + STATE(2763), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168155] = 13, + [167804] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8414), 1, anon_sym_DQUOTE, @@ -191904,31 +191971,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8416), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2814), 5, + STATE(2769), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168201] = 13, + [167850] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8420), 1, anon_sym_DQUOTE, @@ -191937,724 +192004,896 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8422), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2803), 5, + STATE(2766), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168247] = 13, + [167896] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, ACTIONS(8420), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168293] = 13, + [167942] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, ACTIONS(8426), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168339] = 13, + [167988] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, ACTIONS(8414), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168385] = 13, + [168034] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8428), 1, anon_sym_DQUOTE, - ACTIONS(8432), 1, - sym_escape_sequence, - ACTIONS(8430), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2807), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168431] = 13, + [168080] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6143), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6141), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [168106] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6340), 15, + sym__heredoc_newline, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [168134] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8434), 1, + ACTIONS(8430), 1, anon_sym_DQUOTE, - ACTIONS(8438), 1, - sym_escape_sequence, - ACTIONS(8436), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2808), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168477] = 13, + [168180] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6183), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6181), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [168206] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6244), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6242), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [168232] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6260), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6258), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [168258] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8434), 1, + ACTIONS(8432), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8436), 1, + sym_escape_sequence, + ACTIONS(8434), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2778), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168523] = 13, + [168304] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8440), 1, + ACTIONS(8438), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8442), 1, + sym_escape_sequence, + ACTIONS(8440), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2793), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168569] = 13, + [168350] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8442), 1, + ACTIONS(8444), 1, anon_sym_DQUOTE, - ACTIONS(8446), 1, + ACTIONS(8448), 1, sym_escape_sequence, - ACTIONS(8444), 2, + ACTIONS(8446), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2811), 5, + STATE(2782), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168615] = 13, + [168396] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8448), 1, + ACTIONS(8450), 1, anon_sym_DQUOTE, - ACTIONS(8452), 1, - sym_escape_sequence, - ACTIONS(8450), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2813), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168661] = 13, + [168442] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8448), 1, + ACTIONS(8452), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8456), 1, + sym_escape_sequence, + ACTIONS(8454), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2716), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168707] = 13, + [168488] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8454), 1, + ACTIONS(8452), 1, anon_sym_DQUOTE, - ACTIONS(8458), 1, - sym_escape_sequence, - ACTIONS(8456), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2852), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168753] = 13, + [168534] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8460), 1, + ACTIONS(8438), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168799] = 13, + [168580] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8462), 1, + ACTIONS(8458), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168845] = 13, + [168626] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8464), 1, + ACTIONS(8460), 1, anon_sym_DQUOTE, - ACTIONS(8468), 1, + ACTIONS(8464), 1, sym_escape_sequence, - ACTIONS(8466), 2, + ACTIONS(8462), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2817), 5, + STATE(2783), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168891] = 13, + [168672] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8470), 1, + ACTIONS(8460), 1, anon_sym_DQUOTE, - ACTIONS(8474), 1, - sym_escape_sequence, - ACTIONS(8472), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2818), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168937] = 13, + [168718] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8470), 1, + ACTIONS(8466), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [168983] = 13, + [168764] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8476), 1, + ACTIONS(8468), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8472), 1, + sym_escape_sequence, + ACTIONS(8470), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2808), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169029] = 13, + [168810] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6177), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6175), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [168836] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8478), 1, + ACTIONS(8474), 1, anon_sym_DQUOTE, - ACTIONS(8482), 1, + ACTIONS(8478), 1, sym_escape_sequence, - ACTIONS(8480), 2, + ACTIONS(8476), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2821), 5, + STATE(2789), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169075] = 13, + [168882] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8484), 1, + ACTIONS(8480), 1, anon_sym_DQUOTE, - ACTIONS(8488), 1, + ACTIONS(8484), 1, sym_escape_sequence, - ACTIONS(8486), 2, + ACTIONS(8482), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2822), 5, + STATE(2796), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169121] = 13, + [168928] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8484), 1, + ACTIONS(8486), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8490), 1, + sym_escape_sequence, + ACTIONS(8488), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2792), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169167] = 13, + [168974] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, + ACTIONS(8480), 1, + anon_sym_DQUOTE, + ACTIONS(8240), 2, + aux_sym_string_token1, + aux_sym_string_token2, + STATE(3147), 2, + sym_simple_expansion, + sym_expansion, + STATE(2845), 5, + sym__access, + sym__expansion_like, + sym_command_substitution, + sym_arithmetic_expansion, + aux_sym_string_repeat1, + [169020] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8236), 1, + anon_sym_DOLLAR, + ACTIONS(8242), 1, sym_escape_sequence, - ACTIONS(8490), 1, + ACTIONS(8244), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8248), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8250), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8252), 1, + sym__backtick_open, + ACTIONS(8254), 1, + sym__dollar_literal, + ACTIONS(8358), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169213] = 13, + [169066] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8492), 1, anon_sym_DQUOTE, @@ -192663,823 +192902,938 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8494), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2830), 5, + STATE(2799), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169259] = 13, + [169112] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8498), 1, + ACTIONS(8492), 1, anon_sym_DQUOTE, - ACTIONS(8502), 1, - sym_escape_sequence, - ACTIONS(8500), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2827), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169305] = 13, + [169158] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8400), 1, + ACTIONS(8498), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169351] = 13, + [169204] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8504), 1, + ACTIONS(8500), 1, anon_sym_DQUOTE, - ACTIONS(8508), 1, + ACTIONS(8504), 1, sym_escape_sequence, - ACTIONS(8506), 2, + ACTIONS(8502), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2829), 5, + STATE(2798), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169397] = 13, + [169250] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6426), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6428), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [169276] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8504), 1, + ACTIONS(8506), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169443] = 13, + [169322] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8510), 1, + ACTIONS(8508), 1, anon_sym_DQUOTE, - ACTIONS(8514), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8512), 2, + ACTIONS(8510), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2835), 5, + STATE(2815), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169489] = 13, + [169368] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8516), 1, + ACTIONS(8508), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169535] = 13, + [169414] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8510), 1, + ACTIONS(8514), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169581] = 13, + [169460] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8518), 1, + ACTIONS(8516), 1, anon_sym_DQUOTE, - ACTIONS(8522), 1, + ACTIONS(8520), 1, sym_escape_sequence, - ACTIONS(8520), 2, + ACTIONS(8518), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2833), 5, + STATE(2805), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169627] = 13, + [169506] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8524), 1, + ACTIONS(8522), 1, anon_sym_DQUOTE, - ACTIONS(8528), 1, + ACTIONS(8526), 1, sym_escape_sequence, - ACTIONS(8526), 2, + ACTIONS(8524), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2834), 5, + STATE(2810), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169673] = 13, + [169552] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8524), 1, + ACTIONS(8528), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169719] = 13, + [169598] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, ACTIONS(8530), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8534), 1, + sym_escape_sequence, + ACTIONS(8532), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2731), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169765] = 13, + [169644] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8532), 1, + ACTIONS(8536), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8540), 1, + sym_escape_sequence, + ACTIONS(8538), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2817), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169811] = 13, + [169690] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8534), 1, + ACTIONS(8536), 1, anon_sym_DQUOTE, - ACTIONS(8538), 1, - sym_escape_sequence, - ACTIONS(8536), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2838), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169857] = 13, + [169736] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8540), 1, + ACTIONS(8542), 1, anon_sym_DQUOTE, - ACTIONS(8544), 1, - sym_escape_sequence, - ACTIONS(8542), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2839), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169903] = 13, + [169782] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6485), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6487), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [169808] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8540), 1, + ACTIONS(8544), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169949] = 13, + [169854] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, ACTIONS(8546), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8550), 1, + sym_escape_sequence, + ACTIONS(8548), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2814), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [169995] = 13, + [169900] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8548), 1, + ACTIONS(8546), 1, anon_sym_DQUOTE, - ACTIONS(8552), 1, - sym_escape_sequence, - ACTIONS(8550), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2842), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170041] = 13, + [169946] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6270), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6268), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [169972] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8554), 1, + ACTIONS(8552), 1, anon_sym_DQUOTE, - ACTIONS(8558), 1, + ACTIONS(8556), 1, sym_escape_sequence, - ACTIONS(8556), 2, + ACTIONS(8554), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2844), 5, + STATE(2790), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170087] = 13, + [170018] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6264), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6262), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [170044] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8554), 1, + ACTIONS(8558), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170133] = 13, + [170090] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8560), 1, anon_sym_DQUOTE, - ACTIONS(8564), 1, - sym_escape_sequence, - ACTIONS(8562), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2847), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170179] = 13, + [170136] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6302), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6300), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [170162] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8562), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170225] = 13, + [170208] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8568), 1, + ACTIONS(8564), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8568), 1, + sym_escape_sequence, + ACTIONS(8566), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2806), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170271] = 13, + [170254] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8570), 1, + ACTIONS(8564), 1, anon_sym_DQUOTE, - ACTIONS(8574), 1, - sym_escape_sequence, - ACTIONS(8572), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2853), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170317] = 13, + [170300] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, ACTIONS(8570), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8574), 1, + sym_escape_sequence, + ACTIONS(8572), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2824), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170363] = 13, + [170346] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8576), 1, anon_sym_DQUOTE, @@ -193488,64 +193842,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8578), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, - sym_simple_expansion, - sym_expansion, - STATE(2851), 5, - sym__access, - sym__expansion_like, - sym_command_substitution, - sym_arithmetic_expansion, - aux_sym_string_repeat1, - [170409] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8251), 1, - anon_sym_DOLLAR, - ACTIONS(8259), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, - sym__backtick_open, - ACTIONS(8269), 1, - sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8576), 1, - anon_sym_DQUOTE, - ACTIONS(8273), 2, - aux_sym_string_token1, - aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2859), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170455] = 13, + [170392] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8582), 1, anon_sym_DQUOTE, @@ -193554,361 +193875,331 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8584), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2879), 5, + STATE(2827), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170501] = 13, - ACTIONS(3), 1, + [170438] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8251), 1, - anon_sym_DOLLAR, - ACTIONS(8259), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, - sym__backtick_open, - ACTIONS(8269), 1, - sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8588), 1, - anon_sym_DQUOTE, - ACTIONS(8273), 2, - aux_sym_string_token1, - aux_sym_string_token2, - STATE(3088), 2, - sym_simple_expansion, - sym_expansion, - STATE(2785), 5, - sym__access, - sym__expansion_like, - sym_command_substitution, - sym_arithmetic_expansion, - aux_sym_string_repeat1, - [170547] = 13, + ACTIONS(6083), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6081), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [170464] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, ACTIONS(8582), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170593] = 13, + [170510] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8588), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, - aux_sym_string_token1, - aux_sym_string_token2, - STATE(3088), 2, - sym_simple_expansion, - sym_expansion, - STATE(2785), 5, - sym__access, - sym__expansion_like, - sym_command_substitution, - sym_arithmetic_expansion, - aux_sym_string_repeat1, - [170639] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8251), 1, - anon_sym_DOLLAR, - ACTIONS(8259), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, - sym__backtick_open, - ACTIONS(8269), 1, - sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, ACTIONS(8592), 1, - anon_sym_DQUOTE, - ACTIONS(8273), 2, + sym_escape_sequence, + ACTIONS(8590), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2842), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170685] = 13, + [170556] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6101), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6099), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [170582] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8594), 1, anon_sym_DQUOTE, - ACTIONS(8598), 1, - sym_escape_sequence, - ACTIONS(8596), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2857), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170731] = 13, + [170628] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, - sym__backtick_open, - ACTIONS(8269), 1, - sym__dollar_literal, - ACTIONS(8600), 1, - anon_sym_DQUOTE, - ACTIONS(8604), 1, + ACTIONS(8242), 1, sym_escape_sequence, - ACTIONS(8602), 2, - aux_sym_string_token1, - aux_sym_string_token2, - STATE(3088), 2, - sym_simple_expansion, - sym_expansion, - STATE(2859), 5, - sym__access, - sym__expansion_like, - sym_command_substitution, - sym_arithmetic_expansion, - aux_sym_string_repeat1, - [170777] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8251), 1, - anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8600), 1, + ACTIONS(8596), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170823] = 13, + [170674] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8606), 1, + ACTIONS(8598), 1, anon_sym_DQUOTE, - ACTIONS(8610), 1, + ACTIONS(8602), 1, sym_escape_sequence, - ACTIONS(8608), 2, + ACTIONS(8600), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2875), 5, + STATE(2834), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170869] = 13, + [170720] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6189), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6187), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [170746] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8612), 1, + ACTIONS(8604), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8608), 1, + sym_escape_sequence, + ACTIONS(8606), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2840), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170915] = 13, + [170792] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8614), 1, + ACTIONS(8610), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8614), 1, + sym_escape_sequence, + ACTIONS(8612), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2835), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [170961] = 13, + [170838] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, ACTIONS(8616), 1, anon_sym_DQUOTE, @@ -193917,1371 +194208,1472 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(8618), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2863), 5, + STATE(2839), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171007] = 13, + [170884] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8622), 1, + ACTIONS(8610), 1, anon_sym_DQUOTE, - ACTIONS(8626), 1, - sym_escape_sequence, - ACTIONS(8624), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2864), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171053] = 13, + [170930] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, ACTIONS(8622), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171099] = 13, + [170976] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8628), 1, + ACTIONS(8624), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171145] = 13, + [171022] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8630), 1, + ACTIONS(8626), 1, anon_sym_DQUOTE, - ACTIONS(8634), 1, + ACTIONS(8630), 1, sym_escape_sequence, - ACTIONS(8632), 2, + ACTIONS(8628), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2867), 5, + STATE(2844), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171191] = 13, + [171068] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8636), 1, + ACTIONS(8632), 1, anon_sym_DQUOTE, - ACTIONS(8640), 1, + ACTIONS(8636), 1, sym_escape_sequence, - ACTIONS(8638), 2, + ACTIONS(8634), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2869), 5, + STATE(2843), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171237] = 13, + [171114] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8636), 1, + ACTIONS(8632), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171283] = 13, + [171160] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8642), 1, + ACTIONS(8626), 1, anon_sym_DQUOTE, - ACTIONS(8646), 1, - sym_escape_sequence, - ACTIONS(8644), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2877), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171329] = 13, + [171206] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8648), 1, + ACTIONS(8638), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8642), 1, + sym_escape_sequence, + ACTIONS(8640), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2780), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171375] = 13, + [171252] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8650), 1, + ACTIONS(8638), 1, anon_sym_DQUOTE, - ACTIONS(8654), 1, - sym_escape_sequence, - ACTIONS(8652), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2872), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171421] = 13, + [171298] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8656), 1, + ACTIONS(8644), 1, anon_sym_DQUOTE, - ACTIONS(8660), 1, - sym_escape_sequence, - ACTIONS(8658), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2874), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171467] = 13, + [171344] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8656), 1, + ACTIONS(8646), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171513] = 13, + [171390] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8648), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8651), 1, + anon_sym_DQUOTE, + ACTIONS(8656), 1, + sym_escape_sequence, + ACTIONS(8659), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8662), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8665), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8668), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8671), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8674), 1, sym__dollar_literal, - ACTIONS(8662), 1, - anon_sym_DQUOTE, - ACTIONS(8666), 1, - sym_escape_sequence, - ACTIONS(8664), 2, + ACTIONS(8653), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2891), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171559] = 13, + [171436] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8668), 1, + ACTIONS(8677), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8681), 1, + sym_escape_sequence, + ACTIONS(8679), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2850), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171605] = 13, + [171482] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8662), 1, + ACTIONS(8683), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8687), 1, + sym_escape_sequence, + ACTIONS(8685), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2853), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171651] = 13, + [171528] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6109), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6107), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [171554] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8670), 1, + ACTIONS(8689), 1, anon_sym_DQUOTE, - ACTIONS(8674), 1, + ACTIONS(8693), 1, sym_escape_sequence, - ACTIONS(8672), 2, + ACTIONS(8691), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2884), 5, + STATE(2857), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171697] = 13, + [171600] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8670), 1, + ACTIONS(8689), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171743] = 13, + [171646] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8676), 1, + ACTIONS(8695), 1, anon_sym_DQUOTE, - ACTIONS(8680), 1, + ACTIONS(8699), 1, sym_escape_sequence, - ACTIONS(8678), 2, + ACTIONS(8697), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2881), 5, + STATE(2860), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171789] = 13, + [171692] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(5951), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5949), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [171718] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8682), 1, + ACTIONS(8695), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171835] = 13, + [171764] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8684), 1, + ACTIONS(8701), 1, anon_sym_DQUOTE, - ACTIONS(8688), 1, + ACTIONS(8705), 1, sym_escape_sequence, - ACTIONS(8686), 2, + ACTIONS(8703), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2882), 5, + STATE(2873), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171881] = 13, + [171810] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6322), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6320), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [171836] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8684), 1, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8711), 1, + sym_escape_sequence, + ACTIONS(8709), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2870), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171927] = 13, + [171882] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8690), 1, + ACTIONS(8713), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [171973] = 13, + [171928] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6489), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6491), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [171954] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8692), 1, + ACTIONS(8707), 1, anon_sym_DQUOTE, - ACTIONS(8696), 1, - sym_escape_sequence, - ACTIONS(8694), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2886), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172019] = 13, + [172000] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8698), 1, + ACTIONS(8715), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172065] = 13, + [172046] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8700), 1, + ACTIONS(8717), 1, anon_sym_DQUOTE, - ACTIONS(8704), 1, + ACTIONS(8721), 1, sym_escape_sequence, - ACTIONS(8702), 2, + ACTIONS(8719), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2887), 5, + STATE(2819), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172111] = 13, - ACTIONS(3), 1, + [172092] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8251), 1, - anon_sym_DOLLAR, - ACTIONS(8259), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, - sym__backtick_open, - ACTIONS(8269), 1, - sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8700), 1, - anon_sym_DQUOTE, - ACTIONS(8273), 2, - aux_sym_string_token1, - aux_sym_string_token2, - STATE(3088), 2, - sym_simple_expansion, - sym_expansion, - STATE(2785), 5, - sym__access, - sym__expansion_like, - sym_command_substitution, - sym_arithmetic_expansion, - aux_sym_string_repeat1, - [172157] = 13, + ACTIONS(5969), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5967), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [172118] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6493), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6495), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [172144] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6105), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6103), 16, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [172170] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8706), 1, + ACTIONS(8723), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8727), 1, + sym_escape_sequence, + ACTIONS(8725), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2868), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172203] = 13, + [172216] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8708), 1, + ACTIONS(8729), 1, anon_sym_DQUOTE, - ACTIONS(8712), 1, + ACTIONS(8733), 1, sym_escape_sequence, - ACTIONS(8710), 2, + ACTIONS(8731), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2890), 5, + STATE(2877), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172249] = 13, + [172262] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8714), 1, + ACTIONS(8735), 1, anon_sym_DQUOTE, - ACTIONS(8718), 1, + ACTIONS(8739), 1, sym_escape_sequence, - ACTIONS(8716), 2, + ACTIONS(8737), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2892), 5, + STATE(2869), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172295] = 13, + [172308] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8714), 1, + ACTIONS(8735), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172341] = 13, + [172354] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8720), 1, + ACTIONS(8741), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172387] = 13, + [172400] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8722), 1, + ACTIONS(8743), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172433] = 13, + [172446] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8724), 1, + ACTIONS(8745), 1, anon_sym_DQUOTE, - ACTIONS(8728), 1, + ACTIONS(8749), 1, sym_escape_sequence, - ACTIONS(8726), 2, + ACTIONS(8747), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2899), 5, + STATE(2875), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172479] = 13, + [172492] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8730), 1, + ACTIONS(8751), 1, anon_sym_DQUOTE, - ACTIONS(8734), 1, + ACTIONS(8755), 1, sym_escape_sequence, - ACTIONS(8732), 2, + ACTIONS(8753), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2896), 5, + STATE(2750), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172525] = 13, + [172538] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8736), 1, + ACTIONS(8751), 1, anon_sym_DQUOTE, - ACTIONS(8740), 1, - sym_escape_sequence, - ACTIONS(8738), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2897), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172571] = 13, + [172584] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8736), 1, + ACTIONS(8757), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8761), 1, + sym_escape_sequence, + ACTIONS(8759), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2878), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172617] = 13, + [172630] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8742), 1, + ACTIONS(8757), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172663] = 13, + [172676] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8744), 1, + ACTIONS(8763), 1, anon_sym_DQUOTE, - ACTIONS(8748), 1, + ACTIONS(8767), 1, sym_escape_sequence, - ACTIONS(8746), 2, + ACTIONS(8765), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2906), 5, + STATE(2879), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172709] = 13, + [172722] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8744), 1, + ACTIONS(8763), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172755] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8750), 1, - sym__concat, - STATE(2903), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6231), 14, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [172785] = 13, + [172768] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8752), 1, + ACTIONS(8769), 1, anon_sym_DQUOTE, - ACTIONS(8756), 1, - sym_escape_sequence, - ACTIONS(8754), 2, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2902), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172831] = 13, + [172814] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8253), 1, - anon_sym_DQUOTE, - ACTIONS(8259), 1, + ACTIONS(8242), 1, + sym_escape_sequence, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8273), 2, + ACTIONS(8771), 1, + anon_sym_DQUOTE, + ACTIONS(8240), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2845), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172877] = 5, - ACTIONS(2007), 1, + [172860] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8758), 1, - sym__concat, - STATE(2903), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 2, + ACTIONS(6019), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6237), 14, + ACTIONS(6017), 16, + sym__heredoc_newline, + sym__concat, sym__assignment_name, ts_builtin_sym_end, anon_sym_LF, @@ -195296,322 +195688,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [172907] = 13, + [172886] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8761), 1, + ACTIONS(8773), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, - aux_sym_string_token1, - aux_sym_string_token2, - STATE(3088), 2, - sym_simple_expansion, - sym_expansion, - STATE(2785), 5, - sym__access, - sym__expansion_like, - sym_command_substitution, - sym_arithmetic_expansion, - aux_sym_string_repeat1, - [172953] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8251), 1, - anon_sym_DOLLAR, - ACTIONS(8259), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, - sym__backtick_open, - ACTIONS(8269), 1, - sym__dollar_literal, - ACTIONS(8763), 1, - anon_sym_DQUOTE, - ACTIONS(8767), 1, + ACTIONS(8777), 1, sym_escape_sequence, - ACTIONS(8765), 2, + ACTIONS(8775), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2908), 5, + STATE(2717), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [172999] = 13, + [172932] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8769), 1, + ACTIONS(8256), 1, anon_sym_DQUOTE, - ACTIONS(8273), 2, + ACTIONS(8781), 1, + sym_escape_sequence, + ACTIONS(8779), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2785), 5, + STATE(2720), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [173045] = 13, + [172978] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(8236), 1, anon_sym_DOLLAR, - ACTIONS(8259), 1, + ACTIONS(8244), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, + ACTIONS(8246), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8248), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, + ACTIONS(8250), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(8252), 1, sym__backtick_open, - ACTIONS(8269), 1, + ACTIONS(8254), 1, sym__dollar_literal, - ACTIONS(8771), 1, + ACTIONS(8544), 1, anon_sym_DQUOTE, - ACTIONS(8775), 1, + ACTIONS(8785), 1, sym_escape_sequence, - ACTIONS(8773), 2, + ACTIONS(8783), 2, aux_sym_string_token1, aux_sym_string_token2, - STATE(3088), 2, + STATE(3147), 2, sym_simple_expansion, sym_expansion, - STATE(2854), 5, + STATE(2836), 5, sym__access, sym__expansion_like, sym_command_substitution, sym_arithmetic_expansion, aux_sym_string_repeat1, - [173091] = 13, + [173024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(5905), 3, + sym_number, anon_sym_DOLLAR, - ACTIONS(8259), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(5903), 14, sym__backtick_open, - ACTIONS(8269), 1, - sym__dollar_literal, - ACTIONS(8275), 1, - sym_escape_sequence, - ACTIONS(8771), 1, + sym__brace_expr_start, + anon_sym_RBRACE, + anon_sym_COMMA, + aux_sym_brace_expression_token1, + aux_sym__brace_element_token1, anon_sym_DQUOTE, - ACTIONS(8273), 2, - aux_sym_string_token1, - aux_sym_string_token2, - STATE(3088), 2, - sym_simple_expansion, - sym_expansion, - STATE(2785), 5, - sym__access, - sym__expansion_like, - sym_command_substitution, - sym_arithmetic_expansion, - aux_sym_string_repeat1, - [173137] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8251), 1, - anon_sym_DOLLAR, - ACTIONS(8259), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, - sym__backtick_open, - ACTIONS(8269), 1, - sym__dollar_literal, - ACTIONS(8777), 1, - anon_sym_DQUOTE, - ACTIONS(8781), 1, - sym_escape_sequence, - ACTIONS(8779), 2, - aux_sym_string_token1, - aux_sym_string_token2, - STATE(3088), 2, - sym_simple_expansion, - sym_expansion, - STATE(2845), 5, - sym__access, - sym__expansion_like, - sym_command_substitution, - sym_arithmetic_expansion, - aux_sym_string_repeat1, - [173183] = 13, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [173049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8251), 1, + ACTIONS(6489), 3, + sym_number, anon_sym_DOLLAR, - ACTIONS(8259), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, + ACTIONS(6491), 14, sym__backtick_open, - ACTIONS(8269), 1, - sym__dollar_literal, - ACTIONS(8568), 1, + sym__brace_expr_start, + anon_sym_RBRACE, + anon_sym_COMMA, + aux_sym_brace_expression_token1, + aux_sym__brace_element_token1, anon_sym_DQUOTE, - ACTIONS(8785), 1, - sym_escape_sequence, - ACTIONS(8783), 2, - aux_sym_string_token1, - aux_sym_string_token2, - STATE(3088), 2, - sym_simple_expansion, - sym_expansion, - STATE(2770), 5, - sym__access, - sym__expansion_like, - sym_command_substitution, - sym_arithmetic_expansion, - aux_sym_string_repeat1, - [173229] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8251), 1, - anon_sym_DOLLAR, - ACTIONS(8259), 1, + sym_raw_string, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8261), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8263), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8265), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8267), 1, - sym__backtick_open, - ACTIONS(8269), 1, - sym__dollar_literal, - ACTIONS(8787), 1, - anon_sym_DQUOTE, - ACTIONS(8791), 1, - sym_escape_sequence, - ACTIONS(8789), 2, - aux_sym_string_token1, - aux_sym_string_token2, - STATE(3088), 2, - sym_simple_expansion, - sym_expansion, - STATE(2849), 5, - sym__access, - sym__expansion_like, - sym_command_substitution, - sym_arithmetic_expansion, - aux_sym_string_repeat1, - [173275] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5832), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5830), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [173300] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5882), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5880), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [173325] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [173074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6446), 3, + ACTIONS(6019), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6448), 14, + ACTIONS(6017), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -195626,14 +195853,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173350] = 3, + [173099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6450), 3, + ACTIONS(6485), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6452), 14, + ACTIONS(6487), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -195648,80 +195875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173375] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5818), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5816), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [173400] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5868), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5866), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [173425] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6446), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6448), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [173450] = 3, - ACTIONS(2007), 1, + [173124] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 2, + ACTIONS(6691), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5986), 15, - sym__concat, + ACTIONS(6693), 15, + sym__heredoc_newline, sym__assignment_name, ts_builtin_sym_end, anon_sym_LF, @@ -195736,14 +195897,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [173475] = 3, + [173149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5818), 3, + ACTIONS(6143), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 14, + ACTIONS(6141), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -195756,60 +195917,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [173500] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6000), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5998), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [173525] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6076), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6074), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [173550] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [173174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5868), 3, + ACTIONS(6183), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 14, + ACTIONS(6181), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -195824,14 +195941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173575] = 3, + [173199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5988), 3, + ACTIONS(6244), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 14, + ACTIONS(6242), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -195846,38 +195963,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173600] = 5, - ACTIONS(958), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8793), 1, - anon_sym_LF, - STATE(2925), 1, - aux_sym_program_repeat1, - ACTIONS(956), 14, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_in, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [173629] = 3, + [173224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6000), 3, + ACTIONS(6493), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 14, + ACTIONS(6495), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -195892,14 +195985,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173654] = 3, + [173249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 3, + ACTIONS(6260), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 14, + ACTIONS(6258), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -195914,14 +196007,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173679] = 3, + [173274] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 3, + ACTIONS(6302), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6436), 14, + ACTIONS(6300), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -195936,14 +196029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173704] = 3, - ACTIONS(2007), 1, + [173299] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 2, + ACTIONS(6695), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5804), 15, - sym__concat, + ACTIONS(6697), 15, + sym__heredoc_newline, sym__assignment_name, ts_builtin_sym_end, anon_sym_LF, @@ -195958,14 +196051,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [173729] = 3, + [173324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5806), 3, + ACTIONS(5951), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 14, + ACTIONS(5949), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -195980,14 +196073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173754] = 3, + [173349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5904), 3, + ACTIONS(6109), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 14, + ACTIONS(6107), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -196002,14 +196095,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173779] = 3, + [173374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 3, + ACTIONS(6189), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 14, + ACTIONS(6187), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -196024,58 +196117,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173804] = 3, - ACTIONS(3), 1, + [173399] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 3, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 14, - sym__backtick_open, - sym__brace_expr_start, + ACTIONS(6699), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6701), 15, + sym__heredoc_newline, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - aux_sym_brace_expression_token1, - aux_sym__brace_element_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [173829] = 3, - ACTIONS(3), 1, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [173424] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 3, - sym_number, - anon_sym_DOLLAR, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 14, - sym__backtick_open, - sym__brace_expr_start, + ACTIONS(6703), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6705), 15, + sym__heredoc_newline, + sym__assignment_name, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COMMA, - aux_sym_brace_expression_token1, - aux_sym__brace_element_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [173854] = 3, + anon_sym_do, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [173449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5980), 3, + ACTIONS(6270), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 14, + ACTIONS(6268), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -196090,14 +196183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173879] = 3, + [173474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6030), 3, + ACTIONS(6083), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 14, + ACTIONS(6081), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -196112,14 +196205,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173904] = 3, + [173499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6046), 3, + ACTIONS(6101), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 14, + ACTIONS(6099), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -196134,14 +196227,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173929] = 3, + [173524] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5832), 3, + ACTIONS(6322), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 14, + ACTIONS(6320), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -196156,14 +196249,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173954] = 3, + [173549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 3, + ACTIONS(6105), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 14, + ACTIONS(6103), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -196178,14 +196271,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [173979] = 3, + [173574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5844), 3, + ACTIONS(5969), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 14, + ACTIONS(5967), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -196200,36 +196293,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [174004] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5904), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5902), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174029] = 3, + [173599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 3, + ACTIONS(6177), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 14, + ACTIONS(6175), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -196244,301 +196315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [174054] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5934), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5932), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174079] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6450), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6452), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174104] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6223), 14, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174131] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6165), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6163), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174156] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6175), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6173), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174181] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6235), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6237), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174206] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5980), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5978), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174231] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6434), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6436), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174256] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6030), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6028), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174281] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6046), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6044), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174306] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6066), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6064), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174331] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5838), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5836), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174356] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(5844), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5842), 15, - sym__concat, - sym__assignment_name, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [174381] = 3, + [173624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6066), 3, + ACTIONS(6264), 3, sym_number, anon_sym_DOLLAR, anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 14, + ACTIONS(6262), 14, sym__backtick_open, sym__brace_expr_start, anon_sym_RBRACE, @@ -196553,14 +196337,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [174406] = 3, - ACTIONS(2007), 1, + [173649] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6670), 2, + ACTIONS(8789), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6672), 14, - sym__assignment_name, + ACTIONS(8787), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196574,14 +196358,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174430] = 3, - ACTIONS(2007), 1, + [173673] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6663), 2, + ACTIONS(8793), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6665), 14, - sym__assignment_name, + ACTIONS(8791), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196595,14 +196379,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174454] = 3, - ACTIONS(2007), 1, + [173697] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6618), 2, + ACTIONS(8797), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6620), 14, - sym__assignment_name, + ACTIONS(8795), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196616,14 +196400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174478] = 3, - ACTIONS(2007), 1, + [173721] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6626), 2, + ACTIONS(8801), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6628), 14, - sym__assignment_name, + ACTIONS(8799), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196637,13 +196421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174502] = 3, - ACTIONS(2007), 1, + [173745] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8798), 2, + ACTIONS(8805), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8796), 13, + ACTIONS(8803), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196657,13 +196442,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174525] = 3, - ACTIONS(2007), 1, + [173769] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7817), 2, + ACTIONS(8809), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(7815), 13, + ACTIONS(8807), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196677,13 +196463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174548] = 3, - ACTIONS(2007), 1, + [173793] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7746), 2, + ACTIONS(8813), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(7744), 13, + ACTIONS(8811), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196697,13 +196484,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174571] = 3, - ACTIONS(2007), 1, + [173817] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8802), 2, + ACTIONS(8817), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8800), 13, + ACTIONS(8815), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196717,13 +196505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174594] = 3, - ACTIONS(2007), 1, + [173841] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8806), 2, + ACTIONS(8821), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8804), 13, + ACTIONS(8819), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196737,13 +196526,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174617] = 3, - ACTIONS(2007), 1, + [173865] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8810), 2, + ACTIONS(8825), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8808), 13, + ACTIONS(8823), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196757,13 +196547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174640] = 3, - ACTIONS(2007), 1, + [173889] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8814), 2, + ACTIONS(8829), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8812), 13, + ACTIONS(8827), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196777,13 +196568,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174663] = 3, - ACTIONS(2007), 1, + [173913] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8818), 2, + ACTIONS(8833), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8816), 13, + ACTIONS(8831), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196797,13 +196589,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174686] = 3, - ACTIONS(2007), 1, + [173937] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8822), 2, + ACTIONS(8837), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8820), 13, + ACTIONS(8835), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196817,13 +196610,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174709] = 3, - ACTIONS(2007), 1, + [173961] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8826), 2, + ACTIONS(8841), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8824), 13, + ACTIONS(8839), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196837,13 +196631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174732] = 3, - ACTIONS(2007), 1, + [173985] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(7643), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6269), 13, + ACTIONS(7641), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196857,13 +196652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174755] = 3, - ACTIONS(2007), 1, + [174009] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8830), 2, + ACTIONS(6445), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8828), 13, + ACTIONS(6443), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196877,13 +196673,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174778] = 3, - ACTIONS(2007), 1, + [174033] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8834), 2, + ACTIONS(8845), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8832), 13, + ACTIONS(8843), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196897,13 +196694,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174801] = 3, - ACTIONS(2007), 1, + [174057] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7809), 2, + ACTIONS(7688), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(7807), 13, + ACTIONS(7686), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196917,13 +196715,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174824] = 3, - ACTIONS(2007), 1, + [174081] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8838), 2, + ACTIONS(8849), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8836), 13, + ACTIONS(8847), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196937,13 +196736,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174847] = 3, - ACTIONS(2007), 1, + [174105] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8842), 2, + ACTIONS(8853), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8840), 13, + ACTIONS(8851), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196957,13 +196757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174870] = 3, - ACTIONS(2007), 1, + [174129] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8846), 2, + ACTIONS(8857), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8844), 13, + ACTIONS(8855), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196977,13 +196778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174893] = 3, - ACTIONS(2007), 1, + [174153] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8850), 2, + ACTIONS(8861), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8848), 13, + ACTIONS(8859), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -196997,13 +196799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174916] = 3, - ACTIONS(2007), 1, + [174177] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8854), 2, + ACTIONS(8865), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8852), 13, + ACTIONS(8863), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -197017,13 +196820,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174939] = 3, - ACTIONS(2007), 1, + [174201] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8859), 2, + ACTIONS(8870), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8856), 13, + ACTIONS(8867), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -197037,13 +196841,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174962] = 3, - ACTIONS(2007), 1, + [174225] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8864), 2, + ACTIONS(8875), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8862), 13, + ACTIONS(8873), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -197057,13 +196862,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [174985] = 3, - ACTIONS(2007), 1, + [174249] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8868), 2, + ACTIONS(8879), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8866), 13, + ACTIONS(8877), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -197077,13 +196883,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [175008] = 3, - ACTIONS(2007), 1, + [174273] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8872), 2, + ACTIONS(7639), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8870), 13, + ACTIONS(7637), 14, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -197097,99 +196904,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fi, anon_sym_elif, anon_sym_else, - [175031] = 3, - ACTIONS(2007), 1, + [174297] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8876), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8874), 13, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(8881), 1, + sym__concat, + STATE(2936), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 4, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [175054] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8880), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8878), 13, - ts_builtin_sym_end, + anon_sym_SEMI_SEMI, + ACTIONS(6428), 9, + sym__heredoc_newline, + sym__assignment_name, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [175077] = 3, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [174324] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8884), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8882), 13, - ts_builtin_sym_end, - anon_sym_LF, + ACTIONS(8888), 1, + sym__assignment_name, + STATE(2937), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8886), 4, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [175100] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8888), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8886), 13, - ts_builtin_sym_end, + anon_sym_SEMI_SEMI, + ACTIONS(8884), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [175123] = 5, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [174351] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8890), 1, + ACTIONS(8891), 1, sym__concat, - STATE(2995), 1, + STATE(2936), 1, aux_sym_concatenation_repeat1, - ACTIONS(6229), 4, + ACTIONS(6433), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6231), 8, + ACTIONS(6435), 9, + sym__heredoc_newline, sym__assignment_name, anon_sym_LF, anon_sym_AMP_AMP, @@ -197198,77 +196970,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [175149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6030), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6028), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5882), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5880), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5830), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175215] = 5, - ACTIONS(2007), 1, + [174378] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8896), 1, + ACTIONS(8897), 1, sym__assignment_name, - STATE(2992), 2, + STATE(2937), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(8894), 4, + ACTIONS(8895), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8892), 7, + ACTIONS(8893), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -197276,34 +196992,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [175241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5838), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5836), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175263] = 3, + [174405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5934), 4, + ACTIONS(6109), 4, sym_number, anon_sym_DOLLAR, sym__index_word, anon_sym_DOLLAR_LPAREN, - ACTIONS(5932), 10, + ACTIONS(6107), 10, sym__backtick_open, anon_sym_RBRACK, anon_sym_DQUOTE, @@ -197314,169 +197011,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [175285] = 5, - ACTIONS(2007), 1, + [174427] = 5, + ACTIONS(1167), 1, sym_comment, ACTIONS(8899), 1, - sym__concat, - STATE(2995), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 4, + sym__assignment_name, + STATE(2989), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8895), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6237), 8, - sym__assignment_name, + ACTIONS(8893), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [175311] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5818), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5816), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5868), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5866), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5844), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5842), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5988), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5986), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6165), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6163), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175421] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6175), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6173), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6000), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5998), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175465] = 3, + [174453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 4, + ACTIONS(6322), 4, sym_number, anon_sym_DOLLAR, sym__index_word, anon_sym_DOLLAR_LPAREN, - ACTIONS(6074), 10, + ACTIONS(6320), 10, sym__backtick_open, anon_sym_RBRACK, anon_sym_DQUOTE, @@ -197487,20 +197051,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [175487] = 5, - ACTIONS(2007), 1, + [174475] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8906), 1, - sym__assignment_name, - STATE(2992), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(8904), 4, + ACTIONS(6485), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8902), 7, + ACTIONS(6487), 10, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -197508,154 +197070,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [175513] = 5, - ACTIONS(942), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8908), 1, - anon_sym_LF, - STATE(2925), 1, - aux_sym_program_repeat1, - ACTIONS(934), 11, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [175539] = 5, - ACTIONS(950), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2007), 1, + [174497] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, - anon_sym_LF, - STATE(2925), 1, - aux_sym_program_repeat1, - ACTIONS(944), 11, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [175565] = 5, - ACTIONS(954), 1, + ACTIONS(5905), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8908), 1, + ACTIONS(5903), 10, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, anon_sym_LF, - STATE(2925), 1, - aux_sym_program_repeat1, - ACTIONS(952), 11, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_do, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [175591] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5806), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5804), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6066), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6064), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175635] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6046), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6044), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5980), 4, - sym_number, - anon_sym_DOLLAR, - sym__index_word, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5978), 10, - sym__backtick_open, - anon_sym_RBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [175679] = 3, + [174519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5904), 4, + ACTIONS(5905), 4, sym_number, anon_sym_DOLLAR, sym__index_word, anon_sym_DOLLAR_LPAREN, - ACTIONS(5902), 10, + ACTIONS(5903), 10, sym__backtick_open, anon_sym_RBRACK, anon_sym_DQUOTE, @@ -197666,55 +197108,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [175701] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8910), 1, - sym__assignment_name, - ACTIONS(8894), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(3013), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(8892), 8, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_RPAREN, - anon_sym_RBRACE, - [175726] = 5, - ACTIONS(2007), 1, + [174541] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8913), 1, - sym__assignment_name, - STATE(3014), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(8894), 4, + ACTIONS(5951), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8892), 6, + ACTIONS(5949), 10, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [175751] = 3, - ACTIONS(2007), 1, + [174563] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 4, + ACTIONS(6322), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6448), 9, + ACTIONS(6320), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -197724,80 +197146,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [175772] = 10, - ACTIONS(942), 1, + [174585] = 11, + ACTIONS(1108), 1, anon_sym_SEMI_SEMI, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8916), 1, + ACTIONS(8901), 1, anon_sym_LF, - ACTIONS(8922), 1, + ACTIONS(8907), 1, anon_sym_PIPE, - ACTIONS(8924), 1, + ACTIONS(8909), 1, anon_sym_PIPE_AMP, - STATE(317), 1, + ACTIONS(8911), 1, + sym__heredoc_newline, + STATE(336), 1, sym__terminator, - STATE(3006), 1, - aux_sym_program_repeat1, - ACTIONS(8918), 2, + STATE(638), 1, + sym__statement_end, + ACTIONS(8903), 2, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(8920), 2, + ACTIONS(8905), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(934), 3, + ACTIONS(1106), 3, anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [175807] = 5, - ACTIONS(2007), 1, + [174623] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8926), 1, - sym__assignment_name, - ACTIONS(8904), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(3018), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(8902), 8, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [175832] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8928), 1, - sym__assignment_name, - ACTIONS(8894), 2, - anon_sym_AMP, - anon_sym_PIPE, - STATE(3018), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(8892), 8, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [175857] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6000), 4, + ACTIONS(6493), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(5998), 9, + ACTIONS(6495), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -197807,17 +197192,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [175878] = 4, - ACTIONS(2007), 1, + [174645] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 4, + ACTIONS(5969), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5967), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [174667] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(5969), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6223), 8, + ACTIONS(5967), 10, + sym__heredoc_newline, + sym__concat, sym__assignment_name, anon_sym_LF, anon_sym_AMP_AMP, @@ -197826,15 +197230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [175901] = 3, - ACTIONS(2007), 1, + [174689] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 4, + ACTIONS(6019), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(5836), 9, + ACTIONS(6017), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -197844,40 +197249,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [175922] = 10, - ACTIONS(950), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8916), 1, - anon_sym_LF, - ACTIONS(8922), 1, - anon_sym_PIPE, - ACTIONS(8924), 1, - anon_sym_PIPE_AMP, - STATE(321), 1, - sym__terminator, - STATE(3007), 1, - aux_sym_program_repeat1, - ACTIONS(8920), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8931), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(944), 3, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [175957] = 3, - ACTIONS(2007), 1, + [174711] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 4, + ACTIONS(6143), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6074), 9, + ACTIONS(6141), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -197887,15 +197268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [175978] = 3, - ACTIONS(2007), 1, + [174733] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 4, + ACTIONS(6183), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(5804), 9, + ACTIONS(6181), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -197905,15 +197287,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [175999] = 3, - ACTIONS(2007), 1, + [174755] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 4, + ACTIONS(6244), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(5842), 9, + ACTIONS(6242), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -197923,15 +197306,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176020] = 3, - ACTIONS(2007), 1, + [174777] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 4, + ACTIONS(6260), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6237), 9, + ACTIONS(6258), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -197941,15 +197325,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176041] = 3, - ACTIONS(2007), 1, + [174799] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6019), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6017), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [174821] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 4, + ACTIONS(6270), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6452), 9, + ACTIONS(6268), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -197959,15 +197363,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176062] = 3, - ACTIONS(2007), 1, + [174843] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 4, + ACTIONS(6083), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(5816), 9, + ACTIONS(6081), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -197977,18 +197382,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176083] = 5, - ACTIONS(2007), 1, + [174865] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8933), 1, + ACTIONS(8913), 1, sym__assignment_name, - ACTIONS(8904), 2, + ACTIONS(8895), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(3013), 2, + STATE(2979), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(8902), 8, + ACTIONS(8893), 9, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, @@ -197997,15 +197403,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_RPAREN, anon_sym_RBRACE, - [176108] = 3, - ACTIONS(2007), 1, + [174891] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 4, + ACTIONS(6101), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(5866), 9, + ACTIONS(6099), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -198015,15 +197422,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176129] = 3, - ACTIONS(2007), 1, + [174913] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 4, + ACTIONS(6105), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(5880), 9, + ACTIONS(6103), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -198033,16 +197441,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176150] = 3, - ACTIONS(2007), 1, + [174935] = 11, + ACTIONS(1098), 1, + anon_sym_SEMI_SEMI, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8901), 1, + anon_sym_LF, + ACTIONS(8907), 1, + anon_sym_PIPE, + ACTIONS(8909), 1, + anon_sym_PIPE_AMP, + ACTIONS(8911), 1, + sym__heredoc_newline, + STATE(336), 1, + sym__terminator, + STATE(642), 1, + sym__statement_end, + ACTIONS(8903), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(8905), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1096), 3, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [174973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6264), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6262), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [174995] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5904), 4, + ACTIONS(6177), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6175), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [175017] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(5902), 9, - sym__concat, + ACTIONS(6340), 9, + sym__heredoc_newline, sym__assignment_name, anon_sym_LF, anon_sym_AMP_AMP, @@ -198051,15 +197526,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176171] = 3, - ACTIONS(2007), 1, + [175041] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8915), 1, + sym__assignment_name, + ACTIONS(8895), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(2970), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8893), 9, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [175067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6270), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6268), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [175089] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 4, + ACTIONS(6489), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(5932), 9, + ACTIONS(6491), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -198069,40 +197585,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176192] = 10, - ACTIONS(2007), 1, + [175111] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8916), 1, - anon_sym_LF, - ACTIONS(8922), 1, + ACTIONS(8917), 1, + sym__assignment_name, + ACTIONS(8886), 2, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8924), 1, - anon_sym_PIPE_AMP, - ACTIONS(8939), 1, - anon_sym_SEMI_SEMI, - STATE(318), 1, - sym__terminator, - STATE(3005), 1, - aux_sym_program_repeat1, - ACTIONS(8920), 2, + STATE(2970), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8884), 9, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8935), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(8937), 3, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [176227] = 3, - ACTIONS(2007), 1, + anon_sym_PIPE_AMP, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [175137] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 4, + ACTIONS(6177), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6436), 9, + ACTIONS(6175), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -198112,15 +197625,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176248] = 3, - ACTIONS(2007), 1, + [175159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6183), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6181), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [175181] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 4, + ACTIONS(6302), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6163), 9, + ACTIONS(6300), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -198130,33 +197663,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176269] = 3, - ACTIONS(2007), 1, + [175203] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 4, - anon_sym_SEMI, - anon_sym_AMP, + ACTIONS(8901), 1, + anon_sym_LF, + ACTIONS(8907), 1, anon_sym_PIPE, + ACTIONS(8909), 1, + anon_sym_PIPE_AMP, + ACTIONS(8911), 1, + sym__heredoc_newline, + ACTIONS(8922), 1, anon_sym_SEMI_SEMI, - ACTIONS(6173), 9, - sym__concat, - sym__assignment_name, - anon_sym_LF, + STATE(336), 1, + sym__terminator, + STATE(627), 1, + sym__statement_end, + ACTIONS(8903), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(8905), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(8920), 3, anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176290] = 3, - ACTIONS(2007), 1, + [175241] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6244), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6242), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [175263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5951), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5949), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [175285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6143), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6141), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [175307] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 4, + ACTIONS(6109), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(5978), 9, + ACTIONS(6107), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -198166,33 +197766,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176311] = 3, - ACTIONS(2007), 1, + [175329] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 4, - anon_sym_SEMI, + ACTIONS(8924), 1, + sym__assignment_name, + ACTIONS(8886), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(6028), 9, - sym__concat, - sym__assignment_name, + STATE(2979), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8884), 9, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [176332] = 3, - ACTIONS(2007), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175355] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 4, + ACTIONS(6426), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(5830), 9, + ACTIONS(6428), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -198202,15 +197806,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176353] = 3, - ACTIONS(2007), 1, + [175377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6302), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6300), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [175399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6189), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6187), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [175421] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 4, + ACTIONS(6264), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(5986), 9, + ACTIONS(6262), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -198220,15 +197863,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176374] = 3, - ACTIONS(2007), 1, + [175443] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6105), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6103), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [175465] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 4, + ACTIONS(6189), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6044), 9, + ACTIONS(6187), 10, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -198238,142 +197901,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176395] = 5, - ACTIONS(2007), 1, + [175487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6083), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6081), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [175509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6260), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6258), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [175531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6101), 4, + sym_number, + anon_sym_DOLLAR, + sym__index_word, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6099), 10, + sym__backtick_open, + anon_sym_RBRACK, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [175553] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8941), 1, + ACTIONS(8927), 1, sym__assignment_name, - STATE(3014), 2, + STATE(2989), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(8904), 4, + ACTIONS(8886), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8902), 6, + ACTIONS(8884), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176420] = 3, - ACTIONS(2007), 1, + [175579] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 4, - anon_sym_SEMI, + ACTIONS(8932), 1, anon_sym_AMP, + ACTIONS(8936), 1, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(6064), 9, - sym__concat, - sym__assignment_name, + ACTIONS(8938), 1, + anon_sym_PIPE_AMP, + ACTIONS(8940), 1, + sym__heredoc_newline, + STATE(315), 1, + sym__terminator, + STATE(335), 1, + sym__statement_end, + ACTIONS(8930), 2, anon_sym_LF, + anon_sym_SEMI, + ACTIONS(8934), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [176441] = 3, - ACTIONS(2007), 1, + ACTIONS(8920), 3, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175614] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6618), 4, - anon_sym_SEMI, + ACTIONS(8932), 1, anon_sym_AMP, + ACTIONS(8936), 1, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(6620), 8, - sym__assignment_name, + ACTIONS(8938), 1, + anon_sym_PIPE_AMP, + ACTIONS(8940), 1, + sym__heredoc_newline, + STATE(315), 1, + sym__terminator, + STATE(332), 1, + sym__statement_end, + ACTIONS(8930), 2, anon_sym_LF, + anon_sym_SEMI, + ACTIONS(8934), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [176461] = 10, - ACTIONS(2007), 1, + ACTIONS(1106), 3, + ts_builtin_sym_end, + anon_sym_RPAREN, + anon_sym_RBRACE, + [175649] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8943), 1, - anon_sym_LF, - ACTIONS(8945), 1, - anon_sym_SEMI, - ACTIONS(8947), 1, + ACTIONS(8944), 1, anon_sym_AMP, - ACTIONS(8951), 1, + ACTIONS(8948), 1, anon_sym_PIPE, - ACTIONS(8953), 1, + ACTIONS(8950), 1, anon_sym_PIPE_AMP, - STATE(325), 1, + ACTIONS(8952), 1, + sym__heredoc_newline, + STATE(552), 1, sym__terminator, - STATE(3006), 1, - aux_sym_program_repeat1, - ACTIONS(8949), 2, + STATE(658), 1, + sym__statement_end, + ACTIONS(8942), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(8946), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(934), 3, + ACTIONS(1106), 3, anon_sym_fi, anon_sym_elif, anon_sym_else, - [176495] = 10, - ACTIONS(2007), 1, + [175684] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8939), 1, + ACTIONS(6699), 4, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8955), 1, + ACTIONS(6701), 9, + sym__heredoc_newline, + sym__assignment_name, anon_sym_LF, - ACTIONS(8961), 1, - anon_sym_PIPE, - ACTIONS(8963), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - STATE(306), 1, - sym__terminator, - STATE(3005), 1, - aux_sym_program_repeat1, - ACTIONS(8937), 2, + anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(8957), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(8959), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [176529] = 10, - ACTIONS(942), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2007), 1, + [175705] = 11, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8955), 1, + ACTIONS(8922), 1, + anon_sym_SEMI_SEMI, + ACTIONS(8930), 1, anon_sym_LF, - ACTIONS(8961), 1, + ACTIONS(8940), 1, + sym__heredoc_newline, + ACTIONS(8956), 1, anon_sym_PIPE, - ACTIONS(8963), 1, + ACTIONS(8958), 1, anon_sym_PIPE_AMP, - STATE(310), 1, + STATE(315), 1, sym__terminator, - STATE(3006), 1, - aux_sym_program_repeat1, - ACTIONS(934), 2, + STATE(335), 1, + sym__statement_end, + ACTIONS(8920), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(8959), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8965), 2, + ACTIONS(8932), 2, anon_sym_SEMI, anon_sym_AMP, - [176563] = 3, - ACTIONS(2007), 1, + ACTIONS(8954), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [175742] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6670), 4, + ACTIONS(6703), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6672), 8, + ACTIONS(6705), 9, + sym__heredoc_newline, sym__assignment_name, anon_sym_LF, anon_sym_AMP_AMP, @@ -198382,87 +198116,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176583] = 10, - ACTIONS(2007), 1, + [175763] = 11, + ACTIONS(1098), 1, + anon_sym_SEMI_SEMI, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8955), 1, + ACTIONS(8930), 1, anon_sym_LF, - ACTIONS(8965), 1, - anon_sym_AMP, - ACTIONS(8967), 1, - anon_sym_SEMI, - ACTIONS(8971), 1, + ACTIONS(8940), 1, + sym__heredoc_newline, + ACTIONS(8956), 1, anon_sym_PIPE, - ACTIONS(8973), 1, + ACTIONS(8958), 1, anon_sym_PIPE_AMP, - STATE(310), 1, + STATE(315), 1, sym__terminator, - STATE(3006), 1, - aux_sym_program_repeat1, - ACTIONS(8969), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(934), 3, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, - [176617] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8943), 1, - anon_sym_LF, - ACTIONS(8951), 1, - anon_sym_PIPE, - ACTIONS(8953), 1, - anon_sym_PIPE_AMP, - ACTIONS(8975), 1, + STATE(329), 1, + sym__statement_end, + ACTIONS(1096), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(8932), 2, anon_sym_SEMI, - ACTIONS(8977), 1, anon_sym_AMP, - STATE(356), 1, - sym__terminator, - STATE(3007), 1, - aux_sym_program_repeat1, - ACTIONS(8949), 2, + ACTIONS(8954), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(944), 3, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [176651] = 10, - ACTIONS(2007), 1, + [175800] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8943), 1, - anon_sym_LF, - ACTIONS(8951), 1, + ACTIONS(8944), 1, + anon_sym_AMP, + ACTIONS(8948), 1, anon_sym_PIPE, - ACTIONS(8953), 1, + ACTIONS(8950), 1, anon_sym_PIPE_AMP, - ACTIONS(8979), 1, - anon_sym_SEMI, - ACTIONS(8981), 1, - anon_sym_AMP, - STATE(578), 1, + ACTIONS(8952), 1, + sym__heredoc_newline, + STATE(552), 1, sym__terminator, - STATE(3005), 1, - aux_sym_program_repeat1, - ACTIONS(8949), 2, + STATE(661), 1, + sym__statement_end, + ACTIONS(8942), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(8946), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8937), 3, + ACTIONS(1096), 3, anon_sym_fi, anon_sym_elif, anon_sym_else, - [176685] = 3, - ACTIONS(2007), 1, + [175835] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6663), 4, + ACTIONS(6695), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6665), 8, + ACTIONS(6697), 9, + sym__heredoc_newline, sym__assignment_name, anon_sym_LF, anon_sym_AMP_AMP, @@ -198471,87 +198185,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176705] = 10, - ACTIONS(950), 1, + [175856] = 11, + ACTIONS(1108), 1, anon_sym_SEMI_SEMI, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8955), 1, + ACTIONS(8930), 1, anon_sym_LF, - ACTIONS(8961), 1, + ACTIONS(8940), 1, + sym__heredoc_newline, + ACTIONS(8956), 1, anon_sym_PIPE, - ACTIONS(8963), 1, + ACTIONS(8958), 1, anon_sym_PIPE_AMP, - STATE(312), 1, + STATE(315), 1, sym__terminator, - STATE(3007), 1, - aux_sym_program_repeat1, - ACTIONS(944), 2, + STATE(332), 1, + sym__statement_end, + ACTIONS(1106), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(8959), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8983), 2, + ACTIONS(8932), 2, anon_sym_SEMI, anon_sym_AMP, - [176739] = 10, - ACTIONS(2007), 1, + ACTIONS(8954), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [175893] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8955), 1, - anon_sym_LF, - ACTIONS(8971), 1, + ACTIONS(8932), 1, + anon_sym_AMP, + ACTIONS(8936), 1, anon_sym_PIPE, - ACTIONS(8973), 1, + ACTIONS(8938), 1, anon_sym_PIPE_AMP, - ACTIONS(8983), 1, - anon_sym_AMP, - ACTIONS(8985), 1, - anon_sym_SEMI, - STATE(312), 1, + ACTIONS(8940), 1, + sym__heredoc_newline, + STATE(315), 1, sym__terminator, - STATE(3007), 1, - aux_sym_program_repeat1, - ACTIONS(8969), 2, + STATE(329), 1, + sym__statement_end, + ACTIONS(8930), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(8934), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(944), 3, + ACTIONS(1096), 3, ts_builtin_sym_end, anon_sym_RPAREN, anon_sym_RBRACE, - [176773] = 10, - ACTIONS(2007), 1, + [175928] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8955), 1, - anon_sym_LF, - ACTIONS(8957), 1, + ACTIONS(8944), 1, anon_sym_AMP, - ACTIONS(8971), 1, + ACTIONS(8948), 1, anon_sym_PIPE, - ACTIONS(8973), 1, + ACTIONS(8950), 1, anon_sym_PIPE_AMP, - ACTIONS(8987), 1, - anon_sym_SEMI, - STATE(306), 1, + ACTIONS(8952), 1, + sym__heredoc_newline, + STATE(552), 1, sym__terminator, - STATE(3005), 1, - aux_sym_program_repeat1, - ACTIONS(8969), 2, + STATE(665), 1, + sym__statement_end, + ACTIONS(8942), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(8946), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8937), 3, - ts_builtin_sym_end, - anon_sym_RPAREN, - anon_sym_RBRACE, - [176807] = 3, - ACTIONS(2007), 1, + ACTIONS(8920), 3, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [175963] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6626), 4, + ACTIONS(6691), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6628), 8, + ACTIONS(6693), 9, + sym__heredoc_newline, sym__assignment_name, anon_sym_LF, anon_sym_AMP_AMP, @@ -198560,33 +198279,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176827] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8993), 1, - anon_sym_LT_LT, - ACTIONS(8995), 1, - anon_sym_LT_LT_DASH, - ACTIONS(8989), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(8991), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [176850] = 3, - ACTIONS(2007), 1, + [175984] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8859), 4, + ACTIONS(8845), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8856), 7, + ACTIONS(8843), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198594,33 +198296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176869] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8997), 1, - sym__concat, - STATE(3068), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6231), 7, - sym__assignment_name, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - [176892] = 3, - ACTIONS(2007), 1, + [176004] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8818), 4, + ACTIONS(8861), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8816), 7, + ACTIONS(8859), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198628,81 +198313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [176911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6173), 4, - sym__backtick_open, - sym__dollar_literal, - aux_sym_string_token1, - aux_sym_string_token2, - ACTIONS(6175), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_escape_sequence, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - [176930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5978), 4, - sym__backtick_open, - sym__dollar_literal, - aux_sym_string_token1, - aux_sym_string_token2, - ACTIONS(5980), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_escape_sequence, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - [176949] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9001), 4, - sym__backtick_open, - sym__dollar_literal, - aux_sym_string_token1, - aux_sym_string_token2, - ACTIONS(8999), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_escape_sequence, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - [176968] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9003), 1, - sym__concat, - STATE(3065), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6235), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6237), 7, - sym__assignment_name, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [176991] = 3, - ACTIONS(2007), 1, + [176024] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8802), 4, + ACTIONS(7639), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8800), 7, + ACTIONS(7637), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198710,49 +198330,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [177010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5830), 4, - sym__backtick_open, - sym__dollar_literal, - aux_sym_string_token1, - aux_sym_string_token2, - ACTIONS(5832), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_escape_sequence, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - [177029] = 5, - ACTIONS(2007), 1, + [176044] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9006), 1, + ACTIONS(8960), 1, sym__concat, - STATE(3068), 1, + STATE(3006), 1, aux_sym_concatenation_repeat1, - ACTIONS(6235), 2, + ACTIONS(6426), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6237), 7, + ACTIONS(6428), 8, + sym__heredoc_newline, sym__assignment_name, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [177052] = 3, - ACTIONS(2007), 1, + [176068] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8864), 4, + ACTIONS(8837), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8862), 7, + ACTIONS(8835), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198760,137 +198366,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [177071] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9013), 1, - anon_sym_LT_LT, - ACTIONS(9015), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9009), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9011), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177094] = 5, - ACTIONS(2007), 1, + [176088] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9017), 1, + ACTIONS(8963), 1, sym__assignment_name, - ACTIONS(8894), 2, + ACTIONS(8895), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(3071), 2, + STATE(3037), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(8892), 6, - sym__backtick_close, + ACTIONS(8893), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [177117] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9024), 1, - anon_sym_LT_LT, - ACTIONS(9026), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9020), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9022), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177140] = 5, - ACTIONS(2007), 1, + anon_sym_then, + [176112] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9028), 1, + ACTIONS(8965), 1, sym__assignment_name, - ACTIONS(8904), 2, + ACTIONS(8886), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(3076), 2, + STATE(3009), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(8902), 6, + ACTIONS(8884), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_then, - [177163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5836), 4, - sym__backtick_open, - sym__dollar_literal, - aux_sym_string_token1, - aux_sym_string_token2, - ACTIONS(5838), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_escape_sequence, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - [177182] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6028), 4, - sym__backtick_open, - sym__dollar_literal, - aux_sym_string_token1, - aux_sym_string_token2, - ACTIONS(6030), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_escape_sequence, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - [177201] = 5, - ACTIONS(2007), 1, + anon_sym_do, + [176136] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9030), 1, + ACTIONS(8968), 1, sym__assignment_name, - ACTIONS(8894), 2, + ACTIONS(8895), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(3076), 2, + STATE(3016), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(8892), 6, + ACTIONS(8893), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_then, - [177224] = 3, - ACTIONS(2007), 1, + anon_sym_fi, + [176160] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8854), 4, + ACTIONS(8801), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8852), 7, + ACTIONS(8799), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198898,47 +198440,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [177243] = 3, - ACTIONS(3), 1, + [176180] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6044), 4, - sym__backtick_open, - sym__dollar_literal, - aux_sym_string_token1, - aux_sym_string_token2, - ACTIONS(6046), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_escape_sequence, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - [177262] = 3, - ACTIONS(3), 1, + ACTIONS(8907), 1, + anon_sym_PIPE, + ACTIONS(8909), 1, + anon_sym_PIPE_AMP, + ACTIONS(8905), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8793), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(8791), 5, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [176206] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5842), 4, - sym__backtick_open, - sym__dollar_literal, - aux_sym_string_token1, - aux_sym_string_token2, - ACTIONS(5844), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_escape_sequence, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - [177281] = 3, - ACTIONS(2007), 1, + ACTIONS(8907), 1, + anon_sym_PIPE, + ACTIONS(8909), 1, + anon_sym_PIPE_AMP, + ACTIONS(8905), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8837), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(8835), 5, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [176232] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7809), 4, + ACTIONS(7688), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(7807), 7, + ACTIONS(7686), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198946,31 +198497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [177300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6064), 4, - sym__backtick_open, - sym__dollar_literal, - aux_sym_string_token1, - aux_sym_string_token2, - ACTIONS(6066), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_escape_sequence, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - [177319] = 3, - ACTIONS(2007), 1, + [176252] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8868), 4, + ACTIONS(8793), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8866), 7, + ACTIONS(8791), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -198978,88 +198514,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [177338] = 5, - ACTIONS(2007), 1, + [176272] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(8970), 1, sym__assignment_name, - ACTIONS(8904), 2, + ACTIONS(8886), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(3084), 2, + STATE(3016), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(8902), 6, + ACTIONS(8884), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_do, - [177361] = 5, - ACTIONS(2007), 1, + anon_sym_fi, + [176296] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9035), 1, - sym__assignment_name, - ACTIONS(8894), 2, + ACTIONS(8973), 1, + sym__concat, + STATE(3006), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(3084), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(8892), 6, + ACTIONS(6435), 8, + sym__heredoc_newline, + sym__assignment_name, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_do, - [177384] = 6, - ACTIONS(2007), 1, + [176320] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8922), 1, - anon_sym_PIPE, - ACTIONS(8924), 1, - anon_sym_PIPE_AMP, - ACTIONS(8920), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(9040), 3, + ACTIONS(8879), 4, anon_sym_SEMI, anon_sym_AMP, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(9038), 4, + ACTIONS(8877), 8, + sym__heredoc_newline, anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [177409] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9046), 1, - anon_sym_LT_LT, - ACTIONS(9048), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9042), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9044), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177432] = 3, - ACTIONS(2007), 1, + [176340] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8834), 4, + ACTIONS(8825), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8832), 7, + ACTIONS(8823), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199067,137 +198586,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [177451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5902), 4, - sym__backtick_open, - sym__dollar_literal, - aux_sym_string_token1, - aux_sym_string_token2, - ACTIONS(5904), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_escape_sequence, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - [177470] = 5, - ACTIONS(2007), 1, + [176360] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9054), 1, - anon_sym_LT_LT, - ACTIONS(9056), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9050), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9052), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177493] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9058), 1, + ACTIONS(8975), 1, sym__assignment_name, - ACTIONS(8904), 2, + ACTIONS(8895), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(3091), 2, + STATE(3009), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(8902), 6, + ACTIONS(8893), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_fi, - [177516] = 5, - ACTIONS(2007), 1, + anon_sym_do, + [176384] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9060), 1, - sym__assignment_name, - ACTIONS(8894), 2, + ACTIONS(8853), 4, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - STATE(3091), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(8892), 6, + anon_sym_SEMI_SEMI, + ACTIONS(8851), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_fi, - [177539] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9067), 1, - anon_sym_LT_LT, - ACTIONS(9069), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9063), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9065), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5880), 4, - sym__backtick_open, - sym__dollar_literal, - aux_sym_string_token1, - aux_sym_string_token2, - ACTIONS(5882), 7, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_escape_sequence, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - [177581] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9075), 1, - anon_sym_LT_LT, - ACTIONS(9077), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9071), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9073), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177604] = 3, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [176404] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8876), 4, + ACTIONS(8833), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8874), 7, + ACTIONS(8831), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199205,33 +198639,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [177623] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9083), 1, - anon_sym_LT_LT, - ACTIONS(9085), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9079), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9081), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177646] = 3, - ACTIONS(2007), 1, + [176424] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8838), 4, + ACTIONS(8841), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8836), 7, + ACTIONS(8839), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199239,69 +198656,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [177665] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9091), 1, - anon_sym_LT_LT, - ACTIONS(9093), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9087), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9089), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177688] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9099), 1, - anon_sym_LT_LT, - ACTIONS(9101), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9095), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9097), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177711] = 5, - ACTIONS(2007), 1, + [176444] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9107), 1, - anon_sym_LT_LT, - ACTIONS(9109), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9103), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9105), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177734] = 3, - ACTIONS(2007), 1, + ACTIONS(8907), 1, + anon_sym_PIPE, + ACTIONS(8909), 1, + anon_sym_PIPE_AMP, + ACTIONS(8905), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8857), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(8855), 5, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [176470] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8814), 4, + ACTIONS(8789), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8812), 7, + ACTIONS(8787), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199309,33 +198693,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [177753] = 5, - ACTIONS(2007), 1, + [176490] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9115), 1, - anon_sym_LT_LT, - ACTIONS(9117), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9111), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9113), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177776] = 3, - ACTIONS(2007), 1, + ACTIONS(8977), 1, + sym__assignment_name, + ACTIONS(8895), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(3038), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8893), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [176514] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8826), 4, + ACTIONS(8797), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8824), 7, + ACTIONS(8795), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199343,105 +198729,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [177795] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9123), 1, - anon_sym_LT_LT, - ACTIONS(9125), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9119), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9121), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177818] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9131), 1, - anon_sym_LT_LT, - ACTIONS(9133), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9127), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9129), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177841] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9139), 1, - anon_sym_LT_LT, - ACTIONS(9141), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9135), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9137), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177864] = 5, - ACTIONS(2007), 1, + [176534] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9143), 1, - sym__assignment_name, - ACTIONS(8904), 2, + ACTIONS(8813), 4, + anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, - STATE(3139), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(8902), 6, + anon_sym_SEMI_SEMI, + ACTIONS(8811), 8, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [177887] = 5, - ACTIONS(2007), 1, + anon_sym_esac, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [176554] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9145), 1, + ACTIONS(8979), 1, sym__assignment_name, - ACTIONS(8904), 2, + ACTIONS(8895), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(3071), 2, + STATE(3040), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(8902), 6, - sym__backtick_close, + ACTIONS(8893), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [177910] = 3, - ACTIONS(2007), 1, + anon_sym_done, + [176578] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8850), 4, + ACTIONS(8870), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8848), 7, + ACTIONS(8867), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199449,69 +198782,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [177929] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9151), 1, - anon_sym_LT_LT, - ACTIONS(9153), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9147), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9149), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177952] = 5, - ACTIONS(2007), 1, + [176598] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8922), 1, - anon_sym_PIPE, - ACTIONS(8924), 1, - anon_sym_PIPE_AMP, - ACTIONS(9157), 3, + ACTIONS(8809), 4, anon_sym_SEMI, anon_sym_AMP, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(9155), 6, + ACTIONS(8807), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [177975] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9163), 1, - anon_sym_LT_LT, - ACTIONS(9165), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9159), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9161), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [177998] = 3, - ACTIONS(2007), 1, + [176618] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8810), 4, + ACTIONS(8865), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8808), 7, + ACTIONS(8863), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199519,33 +198816,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178017] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9171), 1, - anon_sym_LT_LT, - ACTIONS(9173), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9167), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9169), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [178040] = 3, - ACTIONS(2007), 1, + [176638] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8888), 4, + ACTIONS(8817), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8886), 7, + ACTIONS(8815), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199553,69 +198833,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178059] = 5, - ACTIONS(2007), 1, + [176658] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9179), 1, - anon_sym_LT_LT, - ACTIONS(9181), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9175), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9177), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [178082] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9187), 1, - anon_sym_LT_LT, - ACTIONS(9189), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9183), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9185), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [178105] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9195), 1, - anon_sym_LT_LT, - ACTIONS(9197), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9191), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9193), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [178128] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8798), 4, + ACTIONS(8875), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8796), 7, + ACTIONS(8873), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199623,15 +198850,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178147] = 3, - ACTIONS(2007), 1, + [176678] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8806), 4, + ACTIONS(7643), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8804), 7, + ACTIONS(7641), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199639,31 +198867,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178166] = 3, - ACTIONS(2007), 1, + [176698] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8842), 4, + ACTIONS(8907), 1, + anon_sym_PIPE, + ACTIONS(8909), 1, + anon_sym_PIPE_AMP, + ACTIONS(8983), 3, anon_sym_SEMI, anon_sym_AMP, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8840), 7, + ACTIONS(8981), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178185] = 3, - ACTIONS(2007), 1, + [176722] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8985), 1, + sym__assignment_name, + ACTIONS(8886), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(3037), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8884), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_then, + [176746] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8988), 1, + sym__assignment_name, + ACTIONS(8886), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(3038), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8884), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [176770] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8991), 1, + sym__concat, + STATE(3050), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6433), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6435), 8, + sym__heredoc_newline, + sym__assignment_name, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [176794] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8993), 1, + sym__assignment_name, + ACTIONS(8886), 2, + anon_sym_AMP, + anon_sym_PIPE, + STATE(3040), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(8884), 7, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [176818] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8822), 4, + ACTIONS(8857), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8820), 7, + ACTIONS(8855), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199671,15 +198979,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178204] = 3, - ACTIONS(2007), 1, + [176838] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8872), 4, + ACTIONS(8805), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8870), 7, + ACTIONS(8803), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199687,33 +198996,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178223] = 5, - ACTIONS(2007), 1, + [176858] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8922), 1, - anon_sym_PIPE, - ACTIONS(8924), 1, - anon_sym_PIPE_AMP, - ACTIONS(9201), 3, + ACTIONS(8849), 4, anon_sym_SEMI, anon_sym_AMP, + anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(9199), 6, + ACTIONS(8847), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178246] = 3, - ACTIONS(2007), 1, + [176878] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8884), 4, + ACTIONS(6445), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(8882), 7, + ACTIONS(6443), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199721,15 +199030,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178265] = 3, - ACTIONS(2007), 1, + [176898] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6271), 4, + ACTIONS(8829), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(6269), 7, + ACTIONS(8827), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199737,72 +199047,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178284] = 6, - ACTIONS(2007), 1, + [176918] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8922), 1, + ACTIONS(8907), 1, anon_sym_PIPE, - ACTIONS(8924), 1, + ACTIONS(8909), 1, anon_sym_PIPE_AMP, - ACTIONS(8920), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8864), 3, + ACTIONS(8998), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - ACTIONS(8862), 4, + ACTIONS(8996), 7, + sym__heredoc_newline, anon_sym_LF, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178309] = 6, - ACTIONS(2007), 1, + [176942] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8922), 1, + ACTIONS(8907), 1, anon_sym_PIPE, - ACTIONS(8924), 1, + ACTIONS(8909), 1, anon_sym_PIPE_AMP, - ACTIONS(8920), 2, + ACTIONS(8905), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8810), 3, + ACTIONS(8875), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - ACTIONS(8808), 4, + ACTIONS(8873), 5, + sym__heredoc_newline, anon_sym_LF, anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178334] = 6, - ACTIONS(2007), 1, + [176968] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8922), 1, + ACTIONS(8907), 1, anon_sym_PIPE, - ACTIONS(8924), 1, + ACTIONS(8909), 1, anon_sym_PIPE_AMP, - ACTIONS(8920), 2, + ACTIONS(8905), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8842), 3, + ACTIONS(9002), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - ACTIONS(8840), 4, + ACTIONS(9000), 5, + sym__heredoc_newline, anon_sym_LF, anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178359] = 3, - ACTIONS(2007), 1, + [176994] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7746), 4, + ACTIONS(8821), 4, anon_sym_SEMI, anon_sym_AMP, anon_sym_PIPE, anon_sym_SEMI_SEMI, - ACTIONS(7744), 7, + ACTIONS(8819), 8, + sym__heredoc_newline, anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -199810,69 +199123,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178378] = 6, - ACTIONS(2007), 1, + [177014] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8922), 1, + ACTIONS(9004), 1, + sym__concat, + STATE(3050), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6426), 2, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8924), 1, + ACTIONS(6428), 8, + sym__heredoc_newline, + sym__assignment_name, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(8920), 2, + anon_sym_done, + [177038] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8907), 1, + anon_sym_PIPE, + ACTIONS(8909), 1, + anon_sym_PIPE_AMP, + ACTIONS(8905), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8876), 3, + ACTIONS(8849), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - ACTIONS(8874), 4, + ACTIONS(8847), 5, + sym__heredoc_newline, anon_sym_LF, anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178403] = 6, - ACTIONS(2007), 1, + [177064] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8922), 1, + ACTIONS(6270), 2, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8924), 1, + ACTIONS(6268), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(8920), 2, + anon_sym_done, + [177083] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8956), 1, + anon_sym_PIPE, + ACTIONS(8958), 1, + anon_sym_PIPE_AMP, + ACTIONS(8954), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8854), 3, + ACTIONS(8875), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - ACTIONS(8852), 4, + ACTIONS(8873), 4, + sym__heredoc_newline, anon_sym_LF, - anon_sym_esac, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178428] = 3, - ACTIONS(2007), 1, + [177108] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 4, - anon_sym_SEMI, + ACTIONS(6141), 4, + sym__backtick_open, + sym__dollar_literal, + aux_sym_string_token1, + aux_sym_string_token2, + ACTIONS(6143), 7, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + [177127] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6019), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(7815), 7, + ACTIONS(6017), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [178447] = 3, + anon_sym_done, + [177146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5932), 4, + ACTIONS(6181), 4, sym__backtick_open, sym__dollar_literal, aux_sym_string_token1, aux_sym_string_token2, - ACTIONS(5934), 7, + ACTIONS(6183), 7, anon_sym_DOLLAR, anon_sym_DQUOTE, sym_escape_sequence, @@ -199880,51 +199245,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - [178466] = 3, - ACTIONS(2007), 1, + [177165] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8846), 4, + ACTIONS(6242), 4, + sym__backtick_open, + sym__dollar_literal, + aux_sym_string_token1, + aux_sym_string_token2, + ACTIONS(6244), 7, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + [177184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6258), 4, + sym__backtick_open, + sym__dollar_literal, + aux_sym_string_token1, + aux_sym_string_token2, + ACTIONS(6260), 7, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + [177203] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8936), 1, + anon_sym_PIPE, + ACTIONS(8938), 1, + anon_sym_PIPE_AMP, + ACTIONS(8983), 1, + anon_sym_AMP, + ACTIONS(8981), 8, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177226] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6302), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(8844), 7, + ACTIONS(6300), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__backtick_close, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [178485] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9207), 1, - anon_sym_LT_LT, - ACTIONS(9209), 1, - anon_sym_LT_LT_DASH, - ACTIONS(9203), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(9205), 6, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_GT, - [178508] = 5, - ACTIONS(2007), 1, + [177245] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9211), 1, - sym__concat, - STATE(3065), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6229), 2, + ACTIONS(6109), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6231), 7, + ACTIONS(6107), 9, + sym__heredoc_newline, + sym__concat, sym__assignment_name, sym__backtick_close, anon_sym_LF, @@ -199932,65 +199327,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [178531] = 3, - ACTIONS(2007), 1, + [177264] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8880), 4, - anon_sym_SEMI, + ACTIONS(6143), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(8878), 7, + ACTIONS(6141), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_esac, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [178550] = 5, - ACTIONS(2007), 1, + anon_sym_done, + [177283] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9213), 1, - sym__assignment_name, - ACTIONS(8894), 2, + ACTIONS(5905), 2, anon_sym_AMP, anon_sym_PIPE, - STATE(3139), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(8892), 6, + ACTIONS(5903), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [178573] = 3, - ACTIONS(2007), 1, + [177302] = 10, + ACTIONS(1106), 1, + sym__backtick_close, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8830), 4, - anon_sym_SEMI, + ACTIONS(9009), 1, anon_sym_AMP, + ACTIONS(9013), 1, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - ACTIONS(8828), 7, + ACTIONS(9015), 1, + anon_sym_PIPE_AMP, + ACTIONS(9017), 1, + sym__heredoc_newline, + STATE(649), 1, + sym__terminator, + STATE(729), 1, + sym__statement_end, + ACTIONS(9007), 2, anon_sym_LF, + anon_sym_SEMI, + ACTIONS(9011), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [177335] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8956), 1, + anon_sym_PIPE, + ACTIONS(8958), 1, anon_sym_PIPE_AMP, - anon_sym_esac, + ACTIONS(8954), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8849), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(8847), 4, + sym__heredoc_newline, + anon_sym_LF, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [178592] = 3, + [177360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6163), 4, + ACTIONS(6268), 4, sym__backtick_open, sym__dollar_literal, aux_sym_string_token1, aux_sym_string_token2, - ACTIONS(6165), 7, + ACTIONS(6270), 7, anon_sym_DOLLAR, anon_sym_DQUOTE, sym_escape_sequence, @@ -199998,65 +199417,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - [178611] = 3, - ACTIONS(2007), 1, + [177379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6081), 4, + sym__backtick_open, + sym__dollar_literal, + aux_sym_string_token1, + aux_sym_string_token2, + ACTIONS(6083), 7, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + [177398] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 2, + ACTIONS(8920), 1, + anon_sym_then, + ACTIONS(9021), 1, anon_sym_AMP, + ACTIONS(9025), 1, anon_sym_PIPE, - ACTIONS(6074), 8, - sym__concat, - sym__assignment_name, + ACTIONS(9027), 1, + anon_sym_PIPE_AMP, + ACTIONS(9029), 1, + sym__heredoc_newline, + STATE(674), 1, + sym__terminator, + STATE(736), 1, + sym__statement_end, + ACTIONS(9019), 2, anon_sym_LF, anon_sym_SEMI, + ACTIONS(9023), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + [177431] = 10, + ACTIONS(1106), 1, + anon_sym_do, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9033), 1, + anon_sym_AMP, + ACTIONS(9037), 1, + anon_sym_PIPE, + ACTIONS(9039), 1, anon_sym_PIPE_AMP, - anon_sym_done, - [178629] = 10, - ACTIONS(2007), 1, + ACTIONS(9041), 1, + sym__heredoc_newline, + STATE(656), 1, + sym__terminator, + STATE(712), 1, + sym__statement_end, + ACTIONS(9031), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(9035), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [177464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6099), 4, + sym__backtick_open, + sym__dollar_literal, + aux_sym_string_token1, + aux_sym_string_token2, + ACTIONS(6101), 7, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + [177483] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8937), 1, + ACTIONS(6177), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6175), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__backtick_close, - ACTIONS(9216), 1, anon_sym_LF, - ACTIONS(9218), 1, anon_sym_SEMI, - ACTIONS(9220), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [177502] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6264), 2, anon_sym_AMP, - ACTIONS(9224), 1, anon_sym_PIPE, - ACTIONS(9226), 1, - anon_sym_PIPE_AMP, - STATE(613), 1, - sym__terminator, - STATE(3420), 1, - aux_sym_program_repeat1, - ACTIONS(9222), 2, + ACTIONS(6262), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [178661] = 3, - ACTIONS(2007), 1, + anon_sym_PIPE_AMP, + [177521] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 2, + ACTIONS(6183), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5836), 8, + ACTIONS(6181), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [178679] = 3, - ACTIONS(2007), 1, + anon_sym_done, + [177540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6103), 4, + sym__backtick_open, + sym__dollar_literal, + aux_sym_string_token1, + aux_sym_string_token2, + ACTIONS(6105), 7, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + [177559] = 10, + ACTIONS(1096), 1, + anon_sym_do, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9033), 1, + anon_sym_AMP, + ACTIONS(9037), 1, + anon_sym_PIPE, + ACTIONS(9039), 1, + anon_sym_PIPE_AMP, + ACTIONS(9041), 1, + sym__heredoc_newline, + STATE(656), 1, + sym__terminator, + STATE(717), 1, + sym__statement_end, + ACTIONS(9031), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(9035), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [177592] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 2, + ACTIONS(6189), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5866), 8, + ACTIONS(6187), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__backtick_close, @@ -200065,47 +199598,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [178697] = 6, - ACTIONS(2007), 1, + [177611] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8961), 1, + ACTIONS(8956), 1, anon_sym_PIPE, - ACTIONS(8963), 1, + ACTIONS(8958), 1, anon_sym_PIPE_AMP, - ACTIONS(8959), 2, + ACTIONS(8954), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8874), 3, + ACTIONS(8837), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(8835), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(8876), 3, - anon_sym_SEMI, + [177636] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8948), 1, + anon_sym_PIPE, + ACTIONS(8950), 1, + anon_sym_PIPE_AMP, + ACTIONS(9002), 1, anon_sym_AMP, - anon_sym_SEMI_SEMI, - [178721] = 4, - ACTIONS(2007), 1, + ACTIONS(8946), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(9000), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [177661] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 2, + ACTIONS(5951), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6223), 7, + ACTIONS(5949), 9, + sym__heredoc_newline, + sym__concat, sym__assignment_name, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [178741] = 3, - ACTIONS(2007), 1, + [177680] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 2, + ACTIONS(6322), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5978), 8, + ACTIONS(6320), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__backtick_close, @@ -200114,43 +199668,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [178759] = 3, - ACTIONS(2007), 1, + [177699] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 2, + ACTIONS(5969), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5816), 8, + ACTIONS(5967), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [178777] = 3, - ACTIONS(2007), 1, + [177718] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5868), 2, + ACTIONS(6019), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5866), 8, + ACTIONS(6017), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [178795] = 3, - ACTIONS(2007), 1, + [177737] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8936), 1, + anon_sym_PIPE, + ACTIONS(8938), 1, + anon_sym_PIPE_AMP, + ACTIONS(9002), 1, + anon_sym_AMP, + ACTIONS(8934), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(9000), 6, + sym__heredoc_newline, + ts_builtin_sym_end, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177762] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 2, + ACTIONS(6143), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6064), 8, + ACTIONS(6141), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__backtick_close, @@ -200159,13 +199735,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [178813] = 3, - ACTIONS(2007), 1, + [177781] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 2, + ACTIONS(6183), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5842), 8, + ACTIONS(6181), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__backtick_close, @@ -200174,63 +199751,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [178831] = 5, - ACTIONS(2007), 1, + [177800] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8951), 1, - anon_sym_PIPE, - ACTIONS(8953), 1, - anon_sym_PIPE_AMP, - ACTIONS(9157), 1, + ACTIONS(6244), 2, anon_sym_AMP, - ACTIONS(9155), 7, + anon_sym_PIPE, + ACTIONS(6242), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [178853] = 3, - ACTIONS(2007), 1, + anon_sym_PIPE_AMP, + [177819] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 2, + ACTIONS(6260), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5986), 8, + ACTIONS(6258), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [178871] = 6, - ACTIONS(2007), 1, + [177838] = 10, + ACTIONS(1106), 1, + anon_sym_then, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9021), 1, + anon_sym_AMP, + ACTIONS(9025), 1, + anon_sym_PIPE, + ACTIONS(9027), 1, + anon_sym_PIPE_AMP, + ACTIONS(9029), 1, + sym__heredoc_newline, + STATE(674), 1, + sym__terminator, + STATE(740), 1, + sym__statement_end, + ACTIONS(9019), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(9023), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [177871] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8956), 1, + anon_sym_PIPE, + ACTIONS(8958), 1, + anon_sym_PIPE_AMP, + ACTIONS(8954), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8857), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(8855), 4, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [177896] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8842), 1, + ACTIONS(8857), 1, anon_sym_AMP, - ACTIONS(8951), 1, + ACTIONS(8936), 1, anon_sym_PIPE, - ACTIONS(8953), 1, + ACTIONS(8938), 1, anon_sym_PIPE_AMP, - ACTIONS(8949), 2, + ACTIONS(8934), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8840), 5, + ACTIONS(8855), 6, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [178895] = 3, - ACTIONS(2007), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [177921] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5988), 2, + ACTIONS(6270), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5986), 8, + ACTIONS(6268), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__backtick_close, @@ -200239,13 +199860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [178913] = 3, - ACTIONS(2007), 1, + [177940] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 2, + ACTIONS(6083), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5830), 8, + ACTIONS(6081), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__backtick_close, @@ -200254,31 +199876,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [178931] = 6, - ACTIONS(2007), 1, + [177959] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8951), 1, + ACTIONS(6101), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6099), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [177978] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8956), 1, anon_sym_PIPE, - ACTIONS(8953), 1, + ACTIONS(8958), 1, anon_sym_PIPE_AMP, - ACTIONS(9040), 1, - anon_sym_AMP, - ACTIONS(8949), 2, + ACTIONS(8954), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(9038), 5, - anon_sym_LF, + ACTIONS(8793), 3, anon_sym_SEMI, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [178955] = 3, - ACTIONS(2007), 1, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(8791), 4, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [178003] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 2, + ACTIONS(6105), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6237), 8, + ACTIONS(6103), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, sym__backtick_close, @@ -200287,169 +199927,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [178973] = 10, - ACTIONS(944), 1, - anon_sym_fi, - ACTIONS(2007), 1, + [178022] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9228), 1, - anon_sym_LF, - ACTIONS(9230), 1, - anon_sym_SEMI, - ACTIONS(9232), 1, + ACTIONS(8920), 1, + anon_sym_done, + ACTIONS(9045), 1, anon_sym_AMP, - ACTIONS(9236), 1, + ACTIONS(9049), 1, anon_sym_PIPE, - ACTIONS(9238), 1, + ACTIONS(9051), 1, anon_sym_PIPE_AMP, - STATE(642), 1, + ACTIONS(9053), 1, + sym__heredoc_newline, + STATE(667), 1, sym__terminator, - STATE(3007), 1, - aux_sym_program_repeat1, - ACTIONS(9234), 2, + STATE(738), 1, + sym__statement_end, + ACTIONS(9043), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(9047), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [179005] = 10, - ACTIONS(934), 1, - sym__backtick_close, - ACTIONS(2007), 1, + [178055] = 10, + ACTIONS(1096), 1, + anon_sym_fi, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9216), 1, - anon_sym_LF, - ACTIONS(9224), 1, + ACTIONS(9057), 1, + anon_sym_AMP, + ACTIONS(9061), 1, anon_sym_PIPE, - ACTIONS(9226), 1, + ACTIONS(9063), 1, anon_sym_PIPE_AMP, - ACTIONS(9240), 1, - anon_sym_SEMI, - ACTIONS(9242), 1, - anon_sym_AMP, - STATE(619), 1, + ACTIONS(9065), 1, + sym__heredoc_newline, + STATE(646), 1, sym__terminator, - STATE(3446), 1, - aux_sym_program_repeat1, - ACTIONS(9222), 2, + STATE(749), 1, + sym__statement_end, + ACTIONS(9055), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(9059), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [179037] = 10, - ACTIONS(2007), 1, + [178088] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8937), 1, - anon_sym_done, - ACTIONS(9244), 1, - anon_sym_LF, - ACTIONS(9246), 1, - anon_sym_SEMI, - ACTIONS(9248), 1, + ACTIONS(9071), 1, + anon_sym_LT_LT, + ACTIONS(9073), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9067), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9069), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [178111] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8793), 1, anon_sym_AMP, - ACTIONS(9252), 1, + ACTIONS(8936), 1, anon_sym_PIPE, - ACTIONS(9254), 1, + ACTIONS(8938), 1, anon_sym_PIPE_AMP, - STATE(611), 1, - sym__terminator, - STATE(3501), 1, - aux_sym_program_repeat1, - ACTIONS(9250), 2, + ACTIONS(8934), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [179069] = 10, - ACTIONS(944), 1, - anon_sym_do, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9256), 1, + ACTIONS(8791), 6, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, - ACTIONS(9258), 1, anon_sym_SEMI, - ACTIONS(9260), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178136] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8920), 1, + sym__backtick_close, + ACTIONS(9009), 1, anon_sym_AMP, - ACTIONS(9264), 1, + ACTIONS(9013), 1, anon_sym_PIPE, - ACTIONS(9266), 1, + ACTIONS(9015), 1, anon_sym_PIPE_AMP, - STATE(639), 1, + ACTIONS(9017), 1, + sym__heredoc_newline, + STATE(649), 1, sym__terminator, - STATE(3007), 1, - aux_sym_program_repeat1, - ACTIONS(9262), 2, + STATE(724), 1, + sym__statement_end, + ACTIONS(9007), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(9011), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [179101] = 5, - ACTIONS(2007), 1, + [178169] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8961), 1, + ACTIONS(8948), 1, anon_sym_PIPE, - ACTIONS(8963), 1, + ACTIONS(8950), 1, anon_sym_PIPE_AMP, - ACTIONS(9157), 3, - anon_sym_SEMI, + ACTIONS(8983), 1, anon_sym_AMP, - anon_sym_SEMI_SEMI, - ACTIONS(9155), 5, + ACTIONS(8981), 8, + sym__heredoc_newline, anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [179123] = 6, - ACTIONS(2007), 1, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [178192] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9079), 1, + anon_sym_LT_LT, + ACTIONS(9081), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9075), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9077), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [178215] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8961), 1, + ACTIONS(8936), 1, anon_sym_PIPE, - ACTIONS(8963), 1, + ACTIONS(8938), 1, anon_sym_PIPE_AMP, - ACTIONS(8959), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(9038), 3, + ACTIONS(8998), 1, + anon_sym_AMP, + ACTIONS(8996), 8, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(9040), 3, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [179147] = 6, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178238] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8810), 1, + ACTIONS(8837), 1, anon_sym_AMP, - ACTIONS(8971), 1, + ACTIONS(8936), 1, anon_sym_PIPE, - ACTIONS(8973), 1, + ACTIONS(8938), 1, anon_sym_PIPE_AMP, - ACTIONS(8969), 2, + ACTIONS(8934), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8808), 5, + ACTIONS(8835), 6, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [179171] = 3, - ACTIONS(2007), 1, + [178263] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9087), 1, + anon_sym_LT_LT, + ACTIONS(9089), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9083), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9085), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [178286] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 2, + ACTIONS(6244), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5932), 8, + ACTIONS(6242), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [179189] = 3, - ACTIONS(2007), 1, + anon_sym_done, + [178305] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8948), 1, + anon_sym_PIPE, + ACTIONS(8950), 1, + anon_sym_PIPE_AMP, + ACTIONS(8998), 1, + anon_sym_AMP, + ACTIONS(8996), 8, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [178328] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9095), 1, + anon_sym_LT_LT, + ACTIONS(9097), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9091), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9093), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [178351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9101), 4, + sym__backtick_open, + sym__dollar_literal, + aux_sym_string_token1, + aux_sym_string_token2, + ACTIONS(9099), 7, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + [178370] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 2, + ACTIONS(6189), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5998), 8, + ACTIONS(6187), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -200458,65 +200208,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [179207] = 6, - ACTIONS(2007), 1, + [178389] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8961), 1, + ACTIONS(8849), 1, + anon_sym_AMP, + ACTIONS(8936), 1, anon_sym_PIPE, - ACTIONS(8963), 1, + ACTIONS(8938), 1, anon_sym_PIPE_AMP, - ACTIONS(8959), 2, + ACTIONS(8934), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8808), 3, + ACTIONS(8847), 6, + sym__heredoc_newline, + ts_builtin_sym_end, anon_sym_LF, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(8810), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [178414] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8875), 1, anon_sym_AMP, - anon_sym_SEMI_SEMI, - [179231] = 3, - ACTIONS(2007), 1, + ACTIONS(8948), 1, + anon_sym_PIPE, + ACTIONS(8950), 1, + anon_sym_PIPE_AMP, + ACTIONS(8946), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8873), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [178439] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8849), 1, + anon_sym_AMP, + ACTIONS(8948), 1, + anon_sym_PIPE, + ACTIONS(8950), 1, + anon_sym_PIPE_AMP, + ACTIONS(8946), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8847), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [178464] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9107), 1, + anon_sym_LT_LT, + ACTIONS(9109), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9103), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9105), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [178487] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8837), 1, + anon_sym_AMP, + ACTIONS(8948), 1, + anon_sym_PIPE, + ACTIONS(8950), 1, + anon_sym_PIPE_AMP, + ACTIONS(8946), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8835), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [178512] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 2, + ACTIONS(6260), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6163), 8, + ACTIONS(6258), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [179249] = 6, - ACTIONS(2007), 1, + anon_sym_done, + [178531] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8876), 1, + ACTIONS(8857), 1, anon_sym_AMP, - ACTIONS(8951), 1, + ACTIONS(8948), 1, anon_sym_PIPE, - ACTIONS(8953), 1, + ACTIONS(8950), 1, anon_sym_PIPE_AMP, - ACTIONS(8949), 2, + ACTIONS(8946), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8874), 5, + ACTIONS(8855), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_fi, anon_sym_elif, anon_sym_else, - [179273] = 3, - ACTIONS(2007), 1, + [178556] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6235), 2, + ACTIONS(8793), 1, anon_sym_AMP, + ACTIONS(8948), 1, anon_sym_PIPE, - ACTIONS(6237), 8, + ACTIONS(8950), 1, + anon_sym_PIPE_AMP, + ACTIONS(8946), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8791), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [178581] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9115), 1, + anon_sym_LT_LT, + ACTIONS(9117), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9111), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9113), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [178604] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6344), 1, sym__concat, + ACTIONS(6338), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6340), 8, + sym__heredoc_newline, sym__assignment_name, anon_sym_LF, anon_sym_SEMI, @@ -200524,92 +200391,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [179291] = 6, - ACTIONS(2007), 1, + [178625] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8961), 1, + ACTIONS(8956), 1, anon_sym_PIPE, - ACTIONS(8963), 1, + ACTIONS(8958), 1, anon_sym_PIPE_AMP, - ACTIONS(8959), 2, + ACTIONS(8954), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8852), 3, + ACTIONS(9002), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + ACTIONS(9000), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(8854), 3, - anon_sym_SEMI, + [178650] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6489), 2, anon_sym_AMP, - anon_sym_SEMI_SEMI, - [179315] = 10, - ACTIONS(944), 1, + anon_sym_PIPE, + ACTIONS(6491), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, sym__backtick_close, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9216), 1, anon_sym_LF, - ACTIONS(9224), 1, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [178669] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9123), 1, + anon_sym_LT_LT, + ACTIONS(9125), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9119), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9121), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [178692] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9131), 1, + anon_sym_LT_LT, + ACTIONS(9133), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9127), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9129), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [178715] = 10, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8920), 1, + anon_sym_fi, + ACTIONS(9057), 1, + anon_sym_AMP, + ACTIONS(9061), 1, anon_sym_PIPE, - ACTIONS(9226), 1, + ACTIONS(9063), 1, anon_sym_PIPE_AMP, - ACTIONS(9268), 1, + ACTIONS(9065), 1, + sym__heredoc_newline, + STATE(646), 1, + sym__terminator, + STATE(735), 1, + sym__statement_end, + ACTIONS(9055), 2, + anon_sym_LF, anon_sym_SEMI, - ACTIONS(9270), 1, + ACTIONS(9059), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [178748] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6426), 2, anon_sym_AMP, - STATE(621), 1, - sym__terminator, - STATE(3504), 1, - aux_sym_program_repeat1, - ACTIONS(9222), 2, + anon_sym_PIPE, + ACTIONS(6428), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [179347] = 5, - ACTIONS(2007), 1, + anon_sym_PIPE_AMP, + anon_sym_done, + [178767] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9139), 1, + anon_sym_LT_LT, + ACTIONS(9141), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9135), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9137), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [178790] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8951), 1, + ACTIONS(8956), 1, anon_sym_PIPE, - ACTIONS(8953), 1, + ACTIONS(8958), 1, anon_sym_PIPE_AMP, - ACTIONS(9201), 1, + ACTIONS(8983), 3, + anon_sym_SEMI, anon_sym_AMP, - ACTIONS(9199), 7, + anon_sym_SEMI_SEMI, + ACTIONS(8981), 6, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [179369] = 10, - ACTIONS(2007), 1, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [178813] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8937), 1, - anon_sym_then, - ACTIONS(9272), 1, + ACTIONS(6344), 1, + sym__concat, + ACTIONS(6338), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6340), 8, + sym__heredoc_newline, + sym__assignment_name, + sym__backtick_close, anon_sym_LF, - ACTIONS(9274), 1, anon_sym_SEMI, - ACTIONS(9276), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [178834] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6485), 2, anon_sym_AMP, - ACTIONS(9280), 1, anon_sym_PIPE, - ACTIONS(9282), 1, - anon_sym_PIPE_AMP, - STATE(633), 1, - sym__terminator, - STATE(3005), 1, - aux_sym_program_repeat1, - ACTIONS(9278), 2, + ACTIONS(6487), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [179401] = 3, - ACTIONS(2007), 1, + anon_sym_PIPE_AMP, + anon_sym_done, + [178853] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 2, + ACTIONS(5951), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5804), 8, + ACTIONS(5949), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -200618,35 +200586,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [179419] = 10, - ACTIONS(934), 1, - anon_sym_then, - ACTIONS(2007), 1, + [178872] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9272), 1, - anon_sym_LF, - ACTIONS(9280), 1, + ACTIONS(9147), 1, + anon_sym_LT_LT, + ACTIONS(9149), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9143), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9145), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [178895] = 10, + ACTIONS(1106), 1, + anon_sym_done, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9045), 1, + anon_sym_AMP, + ACTIONS(9049), 1, anon_sym_PIPE, - ACTIONS(9282), 1, + ACTIONS(9051), 1, anon_sym_PIPE_AMP, - ACTIONS(9284), 1, - anon_sym_SEMI, - ACTIONS(9286), 1, - anon_sym_AMP, - STATE(609), 1, + ACTIONS(9053), 1, + sym__heredoc_newline, + STATE(667), 1, sym__terminator, - STATE(3006), 1, - aux_sym_program_repeat1, - ACTIONS(9278), 2, + STATE(710), 1, + sym__statement_end, + ACTIONS(9043), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(9047), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [179451] = 3, - ACTIONS(2007), 1, + [178928] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 2, + ACTIONS(6083), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6448), 8, + ACTIONS(6081), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -200655,121 +200643,456 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [179469] = 6, - ACTIONS(2007), 1, + [178947] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8854), 1, + ACTIONS(6101), 2, anon_sym_AMP, - ACTIONS(8951), 1, anon_sym_PIPE, - ACTIONS(8953), 1, - anon_sym_PIPE_AMP, - ACTIONS(8949), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8852), 5, + ACTIONS(6099), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, anon_sym_LF, anon_sym_SEMI, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [179493] = 5, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [178966] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9155), 1, + anon_sym_LT_LT, + ACTIONS(9157), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9151), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9153), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [178989] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9163), 1, + anon_sym_LT_LT, + ACTIONS(9165), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9159), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9161), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [179012] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8971), 1, + ACTIONS(6105), 2, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8973), 1, + ACTIONS(6103), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - ACTIONS(9157), 1, + anon_sym_done, + [179031] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9171), 1, + anon_sym_LT_LT, + ACTIONS(9173), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9167), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9169), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [179054] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6493), 2, anon_sym_AMP, - ACTIONS(9155), 7, - ts_builtin_sym_end, + anon_sym_PIPE, + ACTIONS(6495), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179515] = 10, - ACTIONS(2007), 1, + anon_sym_PIPE_AMP, + [179073] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9179), 1, + anon_sym_LT_LT, + ACTIONS(9181), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9175), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9177), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [179096] = 10, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8937), 1, + ACTIONS(8920), 1, anon_sym_do, - ACTIONS(9256), 1, - anon_sym_LF, - ACTIONS(9264), 1, + ACTIONS(9033), 1, + anon_sym_AMP, + ACTIONS(9037), 1, anon_sym_PIPE, - ACTIONS(9266), 1, + ACTIONS(9039), 1, anon_sym_PIPE_AMP, - ACTIONS(9288), 1, + ACTIONS(9041), 1, + sym__heredoc_newline, + STATE(656), 1, + sym__terminator, + STATE(747), 1, + sym__statement_end, + ACTIONS(9031), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(9035), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [179129] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9187), 1, + anon_sym_LT_LT, + ACTIONS(9189), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9183), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9185), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [179152] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9195), 1, + anon_sym_LT_LT, + ACTIONS(9197), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9191), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9193), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [179175] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9203), 1, + anon_sym_LT_LT, + ACTIONS(9205), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9199), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9201), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [179198] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6489), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6491), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + anon_sym_LF, anon_sym_SEMI, - ACTIONS(9290), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [179217] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5949), 4, + sym__backtick_open, + sym__dollar_literal, + aux_sym_string_token1, + aux_sym_string_token2, + ACTIONS(5951), 7, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + [179236] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9211), 1, + anon_sym_LT_LT, + ACTIONS(9213), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9207), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9209), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [179259] = 10, + ACTIONS(1096), 1, + anon_sym_done, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9045), 1, anon_sym_AMP, - STATE(644), 1, + ACTIONS(9049), 1, + anon_sym_PIPE, + ACTIONS(9051), 1, + anon_sym_PIPE_AMP, + ACTIONS(9053), 1, + sym__heredoc_newline, + STATE(667), 1, sym__terminator, - STATE(3005), 1, - aux_sym_program_repeat1, - ACTIONS(9262), 2, + STATE(720), 1, + sym__statement_end, + ACTIONS(9043), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(9047), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [179547] = 6, - ACTIONS(2007), 1, + [179292] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9219), 1, + anon_sym_LT_LT, + ACTIONS(9221), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9215), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9217), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [179315] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8864), 1, + ACTIONS(6493), 2, anon_sym_AMP, - ACTIONS(8971), 1, anon_sym_PIPE, - ACTIONS(8973), 1, - anon_sym_PIPE_AMP, - ACTIONS(8969), 2, + ACTIONS(6495), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, + anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8862), 5, - ts_builtin_sym_end, + anon_sym_PIPE_AMP, + anon_sym_done, + [179334] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9227), 1, + anon_sym_LT_LT, + ACTIONS(9229), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9223), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9225), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [179357] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9235), 1, + anon_sym_LT_LT, + ACTIONS(9237), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9231), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9233), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [179380] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9243), 1, + anon_sym_LT_LT, + ACTIONS(9245), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9239), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9241), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [179403] = 5, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9251), 1, + anon_sym_LT_LT, + ACTIONS(9253), 1, + anon_sym_LT_LT_DASH, + ACTIONS(9247), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(9249), 6, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_GT, + [179426] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6322), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6320), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, anon_sym_LF, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179571] = 6, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [179445] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8971), 1, + ACTIONS(8956), 1, anon_sym_PIPE, - ACTIONS(8973), 1, + ACTIONS(8958), 1, anon_sym_PIPE_AMP, - ACTIONS(9040), 1, + ACTIONS(8998), 3, + anon_sym_SEMI, anon_sym_AMP, - ACTIONS(8969), 2, + anon_sym_SEMI_SEMI, + ACTIONS(8996), 6, + sym__heredoc_newline, + anon_sym_LF, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(9038), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179595] = 3, - ACTIONS(2007), 1, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [179468] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 2, + ACTIONS(6485), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5902), 8, + ACTIONS(6487), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [179613] = 3, - ACTIONS(2007), 1, + [179487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6320), 4, + sym__backtick_open, + sym__dollar_literal, + aux_sym_string_token1, + aux_sym_string_token2, + ACTIONS(6322), 7, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + [179506] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5934), 2, + ACTIONS(5969), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5932), 8, + ACTIONS(5967), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -200778,67 +201101,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [179631] = 10, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8937), 1, - anon_sym_fi, - ACTIONS(9228), 1, - anon_sym_LF, - ACTIONS(9236), 1, - anon_sym_PIPE, - ACTIONS(9238), 1, - anon_sym_PIPE_AMP, - ACTIONS(9292), 1, - anon_sym_SEMI, - ACTIONS(9294), 1, - anon_sym_AMP, - STATE(648), 1, - sym__terminator, - STATE(3005), 1, - aux_sym_program_repeat1, - ACTIONS(9234), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [179663] = 3, - ACTIONS(2007), 1, + [179525] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6165), 2, + ACTIONS(6426), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6163), 8, + ACTIONS(6428), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [179681] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8961), 1, - anon_sym_PIPE, - ACTIONS(8963), 1, - anon_sym_PIPE_AMP, - ACTIONS(9201), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - ACTIONS(9199), 5, - anon_sym_LF, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [179703] = 3, - ACTIONS(2007), 1, + [179544] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 2, + ACTIONS(6302), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6173), 8, + ACTIONS(6300), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -200847,13 +201133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [179721] = 3, - ACTIONS(2007), 1, + [179563] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5980), 2, + ACTIONS(6109), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5978), 8, + ACTIONS(6107), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -200862,31 +201149,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [179739] = 6, - ACTIONS(2007), 1, + [179582] = 10, + ACTIONS(1096), 1, + sym__backtick_close, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8842), 1, + ACTIONS(9009), 1, anon_sym_AMP, - ACTIONS(8971), 1, + ACTIONS(9013), 1, anon_sym_PIPE, - ACTIONS(8973), 1, + ACTIONS(9015), 1, anon_sym_PIPE_AMP, - ACTIONS(8969), 2, + ACTIONS(9017), 1, + sym__heredoc_newline, + STATE(649), 1, + sym__terminator, + STATE(730), 1, + sym__statement_end, + ACTIONS(9007), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(9011), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8840), 5, - ts_builtin_sym_end, + [179615] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(5905), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5903), 9, + sym__heredoc_newline, + sym__concat, + sym__assignment_name, anon_sym_LF, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179763] = 3, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [179634] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6030), 2, + ACTIONS(6177), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6028), 8, + ACTIONS(6175), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, anon_sym_LF, @@ -200895,117 +201204,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [179781] = 5, - ACTIONS(2007), 1, + [179653] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8971), 1, + ACTIONS(8875), 1, + anon_sym_AMP, + ACTIONS(8936), 1, anon_sym_PIPE, - ACTIONS(8973), 1, + ACTIONS(8938), 1, anon_sym_PIPE_AMP, - ACTIONS(9201), 1, - anon_sym_AMP, - ACTIONS(9199), 7, + ACTIONS(8934), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8873), 6, + sym__heredoc_newline, ts_builtin_sym_end, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [179803] = 10, - ACTIONS(934), 1, + [179678] = 10, + ACTIONS(1106), 1, anon_sym_fi, - ACTIONS(2007), 1, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9228), 1, - anon_sym_LF, - ACTIONS(9236), 1, + ACTIONS(9057), 1, + anon_sym_AMP, + ACTIONS(9061), 1, anon_sym_PIPE, - ACTIONS(9238), 1, + ACTIONS(9063), 1, anon_sym_PIPE_AMP, - ACTIONS(9296), 1, - anon_sym_SEMI, - ACTIONS(9298), 1, - anon_sym_AMP, - STATE(608), 1, + ACTIONS(9065), 1, + sym__heredoc_newline, + STATE(646), 1, sym__terminator, - STATE(3006), 1, - aux_sym_program_repeat1, - ACTIONS(9234), 2, + STATE(745), 1, + sym__statement_end, + ACTIONS(9055), 2, + anon_sym_LF, + anon_sym_SEMI, + ACTIONS(9059), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [179835] = 3, - ACTIONS(2007), 1, + [179711] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6030), 2, + ACTIONS(5967), 4, + sym__backtick_open, + sym__dollar_literal, + aux_sym_string_token1, + aux_sym_string_token2, + ACTIONS(5969), 7, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + [179730] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6264), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6028), 8, + ACTIONS(6262), 9, + sym__heredoc_newline, sym__concat, sym__assignment_name, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [179853] = 6, - ACTIONS(2007), 1, + anon_sym_done, + [179749] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8961), 1, - anon_sym_PIPE, - ACTIONS(8963), 1, - anon_sym_PIPE_AMP, - ACTIONS(8959), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8840), 3, - anon_sym_LF, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(8842), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [179877] = 3, - ACTIONS(2007), 1, + ACTIONS(6017), 4, + sym__backtick_open, + sym__dollar_literal, + aux_sym_string_token1, + aux_sym_string_token2, + ACTIONS(6019), 7, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_escape_sequence, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + [179768] = 10, + ACTIONS(1096), 1, + anon_sym_then, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 2, + ACTIONS(9021), 1, anon_sym_AMP, + ACTIONS(9025), 1, anon_sym_PIPE, - ACTIONS(6044), 8, - sym__concat, - sym__assignment_name, + ACTIONS(9027), 1, + anon_sym_PIPE_AMP, + ACTIONS(9029), 1, + sym__heredoc_newline, + STATE(674), 1, + sym__terminator, + STATE(741), 1, + sym__statement_end, + ACTIONS(9019), 2, anon_sym_LF, anon_sym_SEMI, + ACTIONS(9023), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - [179895] = 3, - ACTIONS(2007), 1, + [179801] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 2, + ACTIONS(6691), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6436), 8, - sym__concat, + ACTIONS(6693), 8, + sym__heredoc_newline, sym__assignment_name, - sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [179913] = 4, - ACTIONS(2007), 1, + anon_sym_done, + [179819] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, - sym__concat, - ACTIONS(6221), 2, + ACTIONS(6703), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6223), 7, + ACTIONS(6705), 8, + sym__heredoc_newline, sym__assignment_name, sym__backtick_close, anon_sym_LF, @@ -201013,14 +201347,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [179933] = 3, - ACTIONS(2007), 1, + [179837] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6066), 2, + ACTIONS(6699), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6064), 8, - sym__concat, + ACTIONS(6701), 8, + sym__heredoc_newline, sym__assignment_name, anon_sym_LF, anon_sym_SEMI, @@ -201028,14 +201362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [179951] = 3, - ACTIONS(2007), 1, + [179855] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6000), 2, + ACTIONS(6699), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5998), 8, - sym__concat, + ACTIONS(6701), 8, + sym__heredoc_newline, sym__assignment_name, sym__backtick_close, anon_sym_LF, @@ -201043,29 +201377,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [179969] = 3, - ACTIONS(2007), 1, + [179873] = 9, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5832), 2, + ACTIONS(8932), 1, anon_sym_AMP, + ACTIONS(8936), 1, anon_sym_PIPE, - ACTIONS(5830), 8, - sym__concat, - sym__assignment_name, + ACTIONS(8938), 1, + anon_sym_PIPE_AMP, + ACTIONS(8940), 1, + sym__heredoc_newline, + STATE(315), 1, + sym__terminator, + STATE(758), 1, + sym__statement_end, + ACTIONS(8930), 2, anon_sym_LF, anon_sym_SEMI, + ACTIONS(8934), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - [179987] = 3, - ACTIONS(2007), 1, + [179903] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6434), 2, + ACTIONS(6695), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6436), 8, - sym__concat, + ACTIONS(6697), 8, + sym__heredoc_newline, sym__assignment_name, anon_sym_LF, anon_sym_SEMI, @@ -201073,29 +201413,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [180005] = 3, - ACTIONS(2007), 1, + [179921] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5838), 2, + ACTIONS(6691), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5836), 8, - sym__concat, + ACTIONS(6693), 8, + sym__heredoc_newline, sym__assignment_name, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [180023] = 3, - ACTIONS(2007), 1, + [179939] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5844), 2, + ACTIONS(6703), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5842), 8, - sym__concat, + ACTIONS(6705), 8, + sym__heredoc_newline, sym__assignment_name, anon_sym_LF, anon_sym_SEMI, @@ -201103,14 +201443,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [180041] = 3, - ACTIONS(2007), 1, + [179957] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6175), 2, + ACTIONS(6695), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6173), 8, - sym__concat, + ACTIONS(6697), 8, + sym__heredoc_newline, sym__assignment_name, sym__backtick_close, anon_sym_LF, @@ -201118,9979 +201458,9724 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [180059] = 3, - ACTIONS(2007), 1, + [179975] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6076), 2, + ACTIONS(8797), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6074), 8, - sym__concat, - sym__assignment_name, + ACTIONS(8795), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [180077] = 6, - ACTIONS(2007), 1, + [179992] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8876), 1, + ACTIONS(8793), 1, anon_sym_AMP, - ACTIONS(8971), 1, + ACTIONS(9025), 1, anon_sym_PIPE, - ACTIONS(8973), 1, + ACTIONS(9027), 1, anon_sym_PIPE_AMP, - ACTIONS(8969), 2, + ACTIONS(9023), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8874), 5, - ts_builtin_sym_end, + ACTIONS(8791), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180101] = 6, - ACTIONS(2007), 1, + anon_sym_then, + [180015] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8864), 1, + ACTIONS(9002), 1, anon_sym_AMP, - ACTIONS(8951), 1, + ACTIONS(9049), 1, anon_sym_PIPE, - ACTIONS(8953), 1, + ACTIONS(9051), 1, anon_sym_PIPE_AMP, - ACTIONS(8949), 2, + ACTIONS(9047), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8862), 5, + ACTIONS(9000), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [180125] = 3, - ACTIONS(2007), 1, + anon_sym_done, + [180038] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 2, + ACTIONS(8998), 1, anon_sym_AMP, + ACTIONS(9013), 1, anon_sym_PIPE, - ACTIONS(5880), 8, - sym__concat, - sym__assignment_name, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(9015), 1, anon_sym_PIPE_AMP, - anon_sym_done, - [180143] = 10, - ACTIONS(934), 1, - anon_sym_done, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9244), 1, + ACTIONS(8996), 6, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, - ACTIONS(9252), 1, - anon_sym_PIPE, - ACTIONS(9254), 1, - anon_sym_PIPE_AMP, - ACTIONS(9300), 1, anon_sym_SEMI, - ACTIONS(9302), 1, - anon_sym_AMP, - STATE(628), 1, - sym__terminator, - STATE(3463), 1, - aux_sym_program_repeat1, - ACTIONS(9250), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [180175] = 3, - ACTIONS(2007), 1, + [180059] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5806), 2, + ACTIONS(8805), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5804), 8, - sym__concat, - sym__assignment_name, - sym__backtick_close, + ACTIONS(8803), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [180193] = 6, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8854), 1, - anon_sym_AMP, - ACTIONS(8971), 1, - anon_sym_PIPE, - ACTIONS(8973), 1, - anon_sym_PIPE_AMP, - ACTIONS(8969), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8852), 5, - ts_builtin_sym_end, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180217] = 3, - ACTIONS(2007), 1, + anon_sym_done, + [180076] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 2, + ACTIONS(8833), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6452), 8, - sym__concat, - sym__assignment_name, + ACTIONS(8831), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [180235] = 6, - ACTIONS(2007), 1, + [180093] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9255), 1, + anon_sym_LF, + ACTIONS(9257), 1, + anon_sym_LPAREN, + ACTIONS(9259), 1, + anon_sym_LBRACE, + ACTIONS(9261), 1, + anon_sym_do, + STATE(3223), 1, + aux_sym_program_repeat1, + STATE(3278), 1, + sym__body, + STATE(3283), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [180120] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8810), 1, + ACTIONS(8849), 1, anon_sym_AMP, - ACTIONS(8951), 1, + ACTIONS(9037), 1, anon_sym_PIPE, - ACTIONS(8953), 1, + ACTIONS(9039), 1, anon_sym_PIPE_AMP, - ACTIONS(8949), 2, + ACTIONS(9035), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8808), 5, + ACTIONS(8847), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [180259] = 3, - ACTIONS(2007), 1, + anon_sym_do, + [180143] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5882), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5880), 8, - sym__concat, - sym__assignment_name, - sym__backtick_close, + ACTIONS(9263), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [180277] = 3, - ACTIONS(2007), 1, + ACTIONS(9265), 1, + anon_sym_LPAREN, + ACTIONS(9267), 1, + anon_sym_LBRACE, + ACTIONS(9269), 1, + anon_sym_do, + STATE(2572), 1, + sym__body, + STATE(3308), 1, + aux_sym_program_repeat1, + STATE(2674), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [180170] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6450), 2, + ACTIONS(8837), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6452), 8, - sym__concat, - sym__assignment_name, + ACTIONS(8835), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [180295] = 3, - ACTIONS(2007), 1, + [180187] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6446), 2, + ACTIONS(8813), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6448), 8, - sym__concat, - sym__assignment_name, + ACTIONS(8811), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [180313] = 10, - ACTIONS(944), 1, - anon_sym_then, - ACTIONS(2007), 1, + [180204] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9272), 1, - anon_sym_LF, - ACTIONS(9280), 1, + ACTIONS(8837), 1, + anon_sym_AMP, + ACTIONS(9037), 1, anon_sym_PIPE, - ACTIONS(9282), 1, + ACTIONS(9039), 1, anon_sym_PIPE_AMP, - ACTIONS(9304), 1, - anon_sym_SEMI, - ACTIONS(9306), 1, - anon_sym_AMP, - STATE(604), 1, - sym__terminator, - STATE(3007), 1, - aux_sym_program_repeat1, - ACTIONS(9278), 2, + ACTIONS(9035), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [180345] = 3, - ACTIONS(2007), 1, + ACTIONS(8835), 4, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_do, + [180227] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5818), 2, + ACTIONS(8837), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5816), 8, - sym__concat, - sym__assignment_name, - sym__backtick_close, + ACTIONS(8835), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [180363] = 10, - ACTIONS(944), 1, anon_sym_done, - ACTIONS(2007), 1, + [180244] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9244), 1, - anon_sym_LF, - ACTIONS(9252), 1, - anon_sym_PIPE, - ACTIONS(9254), 1, - anon_sym_PIPE_AMP, - ACTIONS(9308), 1, - anon_sym_SEMI, - ACTIONS(9310), 1, - anon_sym_AMP, - STATE(630), 1, - sym__terminator, - STATE(3502), 1, - aux_sym_program_repeat1, - ACTIONS(9250), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [180395] = 10, - ACTIONS(934), 1, + ACTIONS(9257), 1, + anon_sym_LPAREN, + ACTIONS(9259), 1, + anon_sym_LBRACE, + ACTIONS(9261), 1, anon_sym_do, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9256), 1, + ACTIONS(9271), 1, anon_sym_LF, - ACTIONS(9264), 1, - anon_sym_PIPE, - ACTIONS(9266), 1, - anon_sym_PIPE_AMP, - ACTIONS(9312), 1, - anon_sym_SEMI, - ACTIONS(9314), 1, - anon_sym_AMP, - STATE(601), 1, - sym__terminator, - STATE(3006), 1, + STATE(3279), 1, + sym__body, + STATE(3330), 1, aux_sym_program_repeat1, - ACTIONS(9262), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [180427] = 6, - ACTIONS(2007), 1, + STATE(3283), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [180271] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8961), 1, + ACTIONS(8857), 1, + anon_sym_AMP, + ACTIONS(9037), 1, anon_sym_PIPE, - ACTIONS(8963), 1, + ACTIONS(9039), 1, anon_sym_PIPE_AMP, - ACTIONS(8959), 2, + ACTIONS(9035), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8862), 3, + ACTIONS(8855), 4, + sym__heredoc_newline, anon_sym_LF, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(8864), 3, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [180451] = 3, - ACTIONS(2007), 1, + anon_sym_do, + [180294] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5904), 2, + ACTIONS(8857), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5902), 8, - sym__concat, - sym__assignment_name, - sym__backtick_close, + ACTIONS(8855), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [180469] = 3, - ACTIONS(2007), 1, + anon_sym_done, + [180311] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6046), 2, + ACTIONS(8793), 1, anon_sym_AMP, + ACTIONS(9037), 1, anon_sym_PIPE, - ACTIONS(6044), 8, - sym__concat, - sym__assignment_name, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(9039), 1, + anon_sym_PIPE_AMP, + ACTIONS(9035), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [180487] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9316), 1, + ACTIONS(8791), 4, + sym__heredoc_newline, anon_sym_LF, - ACTIONS(9318), 1, - anon_sym_LPAREN, - ACTIONS(9320), 1, - anon_sym_LBRACE, - ACTIONS(9322), 1, + anon_sym_SEMI, anon_sym_do, - STATE(3234), 1, - aux_sym_program_repeat1, - STATE(3284), 1, - sym__body, - STATE(3283), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [180514] = 3, - ACTIONS(2007), 1, + [180334] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6618), 2, + ACTIONS(8793), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6620), 7, - sym__assignment_name, + ACTIONS(8791), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [180531] = 3, - ACTIONS(2007), 1, + [180351] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6626), 2, + ACTIONS(8875), 1, anon_sym_AMP, + ACTIONS(9061), 1, anon_sym_PIPE, - ACTIONS(6628), 7, - sym__assignment_name, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(9063), 1, + anon_sym_PIPE_AMP, + ACTIONS(9059), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [180548] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9324), 1, - anon_sym_LF, - ACTIONS(9326), 1, - anon_sym_LPAREN, - ACTIONS(9328), 1, - anon_sym_LBRACE, - ACTIONS(9330), 1, - anon_sym_do, - STATE(2359), 1, - sym__body, - STATE(3251), 1, - aux_sym_program_repeat1, - STATE(2632), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [180575] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9332), 1, + ACTIONS(8873), 4, + sym__heredoc_newline, anon_sym_LF, - ACTIONS(9334), 1, - anon_sym_LPAREN, - ACTIONS(9336), 1, - anon_sym_LBRACE, - ACTIONS(9338), 1, - anon_sym_do, - STATE(2072), 1, - sym__body, - STATE(3247), 1, - aux_sym_program_repeat1, - STATE(2242), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [180602] = 8, - ACTIONS(2007), 1, + anon_sym_SEMI, + anon_sym_fi, + [180374] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(9273), 1, anon_sym_LF, - ACTIONS(9334), 1, + ACTIONS(9275), 1, anon_sym_LPAREN, - ACTIONS(9336), 1, + ACTIONS(9277), 1, anon_sym_LBRACE, - ACTIONS(9338), 1, + ACTIONS(9279), 1, anon_sym_do, - STATE(2065), 1, + STATE(2209), 1, sym__body, - STATE(2925), 1, + STATE(3214), 1, aux_sym_program_repeat1, - STATE(2242), 3, + STATE(2524), 3, sym_subshell, sym_compound_statement, sym_do_group, - [180629] = 8, - ACTIONS(2007), 1, + [180401] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(9271), 1, anon_sym_LF, - ACTIONS(9340), 1, + ACTIONS(9281), 1, anon_sym_LPAREN, - ACTIONS(9342), 1, + ACTIONS(9283), 1, anon_sym_LBRACE, - ACTIONS(9344), 1, + ACTIONS(9285), 1, anon_sym_do, - STATE(2925), 1, - aux_sym_program_repeat1, - STATE(3101), 1, + STATE(3032), 1, sym__body, - STATE(3130), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [180656] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8908), 1, - anon_sym_LF, - ACTIONS(9320), 1, - anon_sym_LBRACE, - ACTIONS(9322), 1, - anon_sym_do, - ACTIONS(9346), 1, - anon_sym_LPAREN, - STATE(2925), 1, + STATE(3330), 1, aux_sym_program_repeat1, - STATE(3341), 1, - sym__body, - STATE(3283), 3, + STATE(3005), 3, sym_subshell, sym_compound_statement, sym_do_group, - [180683] = 8, - ACTIONS(2007), 1, + [180428] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9340), 1, + ACTIONS(9281), 1, anon_sym_LPAREN, - ACTIONS(9342), 1, + ACTIONS(9283), 1, anon_sym_LBRACE, - ACTIONS(9344), 1, + ACTIONS(9285), 1, anon_sym_do, - ACTIONS(9348), 1, + ACTIONS(9287), 1, anon_sym_LF, - STATE(3103), 1, + STATE(3018), 1, sym__body, - STATE(3254), 1, + STATE(3218), 1, aux_sym_program_repeat1, - STATE(3130), 3, + STATE(3005), 3, sym_subshell, sym_compound_statement, sym_do_group, - [180710] = 8, - ACTIONS(2007), 1, + [180455] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9350), 1, + ACTIONS(8801), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(8799), 7, + sym__heredoc_newline, anon_sym_LF, - ACTIONS(9352), 1, - anon_sym_LPAREN, - ACTIONS(9354), 1, - anon_sym_LBRACE, - ACTIONS(9356), 1, - anon_sym_do, - STATE(2537), 1, - sym__body, - STATE(3265), 1, - aux_sym_program_repeat1, - STATE(2730), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [180737] = 8, - ACTIONS(2007), 1, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [180472] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9358), 1, + ACTIONS(9271), 1, anon_sym_LF, - ACTIONS(9360), 1, + ACTIONS(9289), 1, anon_sym_LPAREN, - ACTIONS(9362), 1, + ACTIONS(9291), 1, anon_sym_LBRACE, - ACTIONS(9364), 1, + ACTIONS(9293), 1, anon_sym_do, - STATE(3239), 1, - aux_sym_program_repeat1, - STATE(3306), 1, - sym__body, - STATE(3323), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [180764] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9334), 1, - anon_sym_LPAREN, - ACTIONS(9336), 1, - anon_sym_LBRACE, - ACTIONS(9338), 1, - anon_sym_do, - ACTIONS(9366), 1, - anon_sym_LF, - STATE(2051), 1, + STATE(2007), 1, sym__body, - STATE(3232), 1, - aux_sym_program_repeat1, - STATE(2242), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [180791] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8908), 1, - anon_sym_LF, - ACTIONS(9362), 1, - anon_sym_LBRACE, - ACTIONS(9364), 1, - anon_sym_do, - ACTIONS(9368), 1, - anon_sym_LPAREN, - STATE(2925), 1, + STATE(3330), 1, aux_sym_program_repeat1, - STATE(3355), 1, - sym__body, - STATE(3323), 3, + STATE(2126), 3, sym_subshell, sym_compound_statement, sym_do_group, - [180818] = 8, - ACTIONS(2007), 1, + [180499] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9370), 1, + ACTIONS(9295), 1, anon_sym_LF, - ACTIONS(9372), 1, + ACTIONS(9297), 1, anon_sym_LPAREN, - ACTIONS(9374), 1, + ACTIONS(9299), 1, anon_sym_LBRACE, - ACTIONS(9376), 1, + ACTIONS(9301), 1, anon_sym_do, - STATE(2970), 1, + STATE(2922), 1, sym__body, - STATE(3246), 1, - aux_sym_program_repeat1, - STATE(2963), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [180845] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8908), 1, - anon_sym_LF, - ACTIONS(9320), 1, - anon_sym_LBRACE, - ACTIONS(9322), 1, - anon_sym_do, - ACTIONS(9346), 1, - anon_sym_LPAREN, - STATE(2925), 1, + STATE(3262), 1, aux_sym_program_repeat1, - STATE(3302), 1, - sym__body, - STATE(3283), 3, + STATE(2935), 3, sym_subshell, sym_compound_statement, sym_do_group, - [180872] = 3, - ACTIONS(2007), 1, + [180526] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6663), 2, + ACTIONS(8857), 1, anon_sym_AMP, + ACTIONS(9013), 1, anon_sym_PIPE, - ACTIONS(6665), 7, - sym__assignment_name, + ACTIONS(9015), 1, + anon_sym_PIPE_AMP, + ACTIONS(9011), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8855), 4, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, + [180549] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9002), 1, + anon_sym_AMP, + ACTIONS(9025), 1, + anon_sym_PIPE, + ACTIONS(9027), 1, + anon_sym_PIPE_AMP, + ACTIONS(9023), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [180889] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8908), 1, + ACTIONS(9000), 4, + sym__heredoc_newline, anon_sym_LF, - ACTIONS(9372), 1, - anon_sym_LPAREN, - ACTIONS(9374), 1, - anon_sym_LBRACE, - ACTIONS(9376), 1, - anon_sym_do, - STATE(2925), 1, - aux_sym_program_repeat1, - STATE(2967), 1, - sym__body, - STATE(2963), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [180916] = 8, - ACTIONS(2007), 1, + anon_sym_SEMI, + anon_sym_then, + [180572] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(9271), 1, anon_sym_LF, - ACTIONS(9378), 1, + ACTIONS(9297), 1, anon_sym_LPAREN, - ACTIONS(9380), 1, - anon_sym_LBRACE, - ACTIONS(9382), 1, - anon_sym_do, - STATE(2473), 1, - sym__body, - STATE(2925), 1, - aux_sym_program_repeat1, - STATE(2739), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [180943] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9362), 1, + ACTIONS(9299), 1, anon_sym_LBRACE, - ACTIONS(9364), 1, + ACTIONS(9301), 1, anon_sym_do, - ACTIONS(9368), 1, - anon_sym_LPAREN, - ACTIONS(9384), 1, - anon_sym_LF, - STATE(3268), 1, - aux_sym_program_repeat1, - STATE(3291), 1, + STATE(2916), 1, sym__body, - STATE(3323), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [180970] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8908), 1, - anon_sym_LF, - ACTIONS(9372), 1, - anon_sym_LPAREN, - ACTIONS(9374), 1, - anon_sym_LBRACE, - ACTIONS(9376), 1, - anon_sym_do, - STATE(2925), 1, + STATE(3330), 1, aux_sym_program_repeat1, - STATE(2983), 1, - sym__body, - STATE(2963), 3, + STATE(2935), 3, sym_subshell, sym_compound_statement, sym_do_group, - [180997] = 8, - ACTIONS(2007), 1, + [180599] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(8837), 1, + anon_sym_AMP, + ACTIONS(9013), 1, + anon_sym_PIPE, + ACTIONS(9015), 1, + anon_sym_PIPE_AMP, + ACTIONS(9011), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8835), 4, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, - ACTIONS(9334), 1, - anon_sym_LPAREN, - ACTIONS(9336), 1, - anon_sym_LBRACE, - ACTIONS(9338), 1, - anon_sym_do, - STATE(2061), 1, - sym__body, - STATE(2925), 1, - aux_sym_program_repeat1, - STATE(2242), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [181024] = 8, - ACTIONS(2007), 1, + anon_sym_SEMI, + [180622] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9320), 1, - anon_sym_LBRACE, - ACTIONS(9322), 1, - anon_sym_do, - ACTIONS(9346), 1, + ACTIONS(9265), 1, anon_sym_LPAREN, - ACTIONS(9386), 1, - anon_sym_LF, - STATE(3241), 1, - aux_sym_program_repeat1, - STATE(3358), 1, - sym__body, - STATE(3283), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [181051] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9320), 1, + ACTIONS(9267), 1, anon_sym_LBRACE, - ACTIONS(9322), 1, + ACTIONS(9269), 1, anon_sym_do, - ACTIONS(9346), 1, - anon_sym_LPAREN, - ACTIONS(9388), 1, - anon_sym_LF, - STATE(3262), 1, - aux_sym_program_repeat1, - STATE(3346), 1, - sym__body, - STATE(3283), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [181078] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8908), 1, + ACTIONS(9303), 1, anon_sym_LF, - ACTIONS(9378), 1, - anon_sym_LPAREN, - ACTIONS(9380), 1, - anon_sym_LBRACE, - ACTIONS(9382), 1, - anon_sym_do, - STATE(2552), 1, + STATE(2462), 1, sym__body, - STATE(2925), 1, + STATE(3233), 1, aux_sym_program_repeat1, - STATE(2739), 3, + STATE(2674), 3, sym_subshell, sym_compound_statement, sym_do_group, - [181105] = 8, - ACTIONS(2007), 1, + [180649] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(8998), 1, + anon_sym_AMP, + ACTIONS(9061), 1, + anon_sym_PIPE, + ACTIONS(9063), 1, + anon_sym_PIPE_AMP, + ACTIONS(8996), 6, + sym__heredoc_newline, anon_sym_LF, - ACTIONS(9326), 1, - anon_sym_LPAREN, - ACTIONS(9328), 1, - anon_sym_LBRACE, - ACTIONS(9330), 1, - anon_sym_do, - STATE(2311), 1, - sym__body, - STATE(2925), 1, - aux_sym_program_repeat1, - STATE(2632), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [181132] = 8, - ACTIONS(2007), 1, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_fi, + [180670] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(9271), 1, anon_sym_LF, - ACTIONS(9372), 1, - anon_sym_LPAREN, - ACTIONS(9374), 1, - anon_sym_LBRACE, - ACTIONS(9376), 1, - anon_sym_do, - STATE(2925), 1, - aux_sym_program_repeat1, - STATE(2965), 1, - sym__body, - STATE(2963), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [181159] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9340), 1, + ACTIONS(9305), 1, anon_sym_LPAREN, - ACTIONS(9342), 1, + ACTIONS(9307), 1, anon_sym_LBRACE, - ACTIONS(9344), 1, + ACTIONS(9309), 1, anon_sym_do, - ACTIONS(9390), 1, - anon_sym_LF, - STATE(3122), 1, + STATE(3280), 1, sym__body, - STATE(3259), 1, + STATE(3330), 1, aux_sym_program_repeat1, - STATE(3130), 3, + STATE(3298), 3, sym_subshell, sym_compound_statement, sym_do_group, - [181186] = 8, - ACTIONS(2007), 1, + [180697] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(9271), 1, anon_sym_LF, - ACTIONS(9340), 1, + ACTIONS(9275), 1, anon_sym_LPAREN, - ACTIONS(9342), 1, + ACTIONS(9277), 1, anon_sym_LBRACE, - ACTIONS(9344), 1, + ACTIONS(9279), 1, anon_sym_do, - STATE(2925), 1, - aux_sym_program_repeat1, - STATE(3123), 1, + STATE(2221), 1, sym__body, - STATE(3130), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [181213] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8908), 1, - anon_sym_LF, - ACTIONS(9362), 1, - anon_sym_LBRACE, - ACTIONS(9364), 1, - anon_sym_do, - ACTIONS(9368), 1, - anon_sym_LPAREN, - STATE(2925), 1, + STATE(3330), 1, aux_sym_program_repeat1, - STATE(3300), 1, - sym__body, - STATE(3323), 3, + STATE(2524), 3, sym_subshell, sym_compound_statement, sym_do_group, - [181240] = 3, - ACTIONS(2007), 1, + [180724] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6670), 2, + ACTIONS(8853), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6672), 7, - sym__assignment_name, + ACTIONS(8851), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [181257] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9352), 1, - anon_sym_LPAREN, - ACTIONS(9354), 1, - anon_sym_LBRACE, - ACTIONS(9356), 1, - anon_sym_do, - ACTIONS(9392), 1, - anon_sym_LF, - STATE(2466), 1, - sym__body, - STATE(3273), 1, - aux_sym_program_repeat1, - STATE(2730), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [181284] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9326), 1, - anon_sym_LPAREN, - ACTIONS(9328), 1, - anon_sym_LBRACE, - ACTIONS(9330), 1, - anon_sym_do, - ACTIONS(9394), 1, - anon_sym_LF, - STATE(2331), 1, - sym__body, - STATE(3263), 1, - aux_sym_program_repeat1, - STATE(2632), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [181311] = 8, - ACTIONS(2007), 1, + [180741] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, - anon_sym_LF, - ACTIONS(9340), 1, - anon_sym_LPAREN, - ACTIONS(9342), 1, - anon_sym_LBRACE, - ACTIONS(9344), 1, - anon_sym_do, - STATE(2925), 1, - aux_sym_program_repeat1, - STATE(3120), 1, - sym__body, - STATE(3130), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [181338] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9372), 1, + ACTIONS(9281), 1, anon_sym_LPAREN, - ACTIONS(9374), 1, - anon_sym_LBRACE, - ACTIONS(9376), 1, - anon_sym_do, - ACTIONS(9396), 1, - anon_sym_LF, - STATE(2969), 1, - sym__body, - STATE(3252), 1, - aux_sym_program_repeat1, - STATE(2963), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [181365] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9342), 1, + ACTIONS(9283), 1, anon_sym_LBRACE, - ACTIONS(9344), 1, + ACTIONS(9285), 1, anon_sym_do, - ACTIONS(9398), 1, + ACTIONS(9311), 1, anon_sym_LF, - ACTIONS(9400), 1, - anon_sym_LPAREN, - STATE(3066), 1, + STATE(3023), 1, sym__body, - STATE(3233), 1, + STATE(3225), 1, aux_sym_program_repeat1, - STATE(3130), 3, + STATE(3005), 3, sym_subshell, sym_compound_statement, sym_do_group, - [181392] = 8, - ACTIONS(2007), 1, + [180768] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(8801), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(8799), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, - ACTIONS(9320), 1, - anon_sym_LBRACE, - ACTIONS(9322), 1, - anon_sym_do, - ACTIONS(9346), 1, - anon_sym_LPAREN, - STATE(2925), 1, - aux_sym_program_repeat1, - STATE(3359), 1, - sym__body, - STATE(3283), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [181419] = 8, - ACTIONS(2007), 1, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [180785] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(9271), 1, anon_sym_LF, - ACTIONS(9326), 1, + ACTIONS(9281), 1, anon_sym_LPAREN, - ACTIONS(9328), 1, + ACTIONS(9283), 1, anon_sym_LBRACE, - ACTIONS(9330), 1, + ACTIONS(9285), 1, anon_sym_do, - STATE(2350), 1, + STATE(3033), 1, sym__body, - STATE(2925), 1, + STATE(3330), 1, aux_sym_program_repeat1, - STATE(2632), 3, + STATE(3005), 3, sym_subshell, sym_compound_statement, sym_do_group, - [181446] = 8, - ACTIONS(2007), 1, + [180812] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9362), 1, - anon_sym_LBRACE, - ACTIONS(9364), 1, - anon_sym_do, - ACTIONS(9368), 1, - anon_sym_LPAREN, - ACTIONS(9402), 1, + ACTIONS(8983), 1, + anon_sym_AMP, + ACTIONS(9025), 1, + anon_sym_PIPE, + ACTIONS(9027), 1, + anon_sym_PIPE_AMP, + ACTIONS(8981), 6, + sym__heredoc_newline, anon_sym_LF, - STATE(3255), 1, - aux_sym_program_repeat1, - STATE(3357), 1, - sym__body, - STATE(3323), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [181473] = 8, - ACTIONS(2007), 1, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [180833] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(9271), 1, anon_sym_LF, - ACTIONS(9352), 1, + ACTIONS(9297), 1, anon_sym_LPAREN, - ACTIONS(9354), 1, + ACTIONS(9299), 1, anon_sym_LBRACE, - ACTIONS(9356), 1, + ACTIONS(9301), 1, anon_sym_do, - STATE(2572), 1, + STATE(2931), 1, sym__body, - STATE(2925), 1, + STATE(3330), 1, aux_sym_program_repeat1, - STATE(2730), 3, + STATE(2935), 3, sym_subshell, sym_compound_statement, sym_do_group, - [181500] = 3, - ACTIONS(2007), 1, + [180860] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6626), 2, + ACTIONS(8857), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6628), 7, - sym__assignment_name, + ACTIONS(8855), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [181517] = 8, - ACTIONS(2007), 1, + [180877] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9378), 1, + ACTIONS(9313), 1, + anon_sym_LF, + ACTIONS(9315), 1, anon_sym_LPAREN, - ACTIONS(9380), 1, + ACTIONS(9317), 1, anon_sym_LBRACE, - ACTIONS(9382), 1, + ACTIONS(9319), 1, anon_sym_do, - ACTIONS(9404), 1, - anon_sym_LF, - STATE(2554), 1, + STATE(2440), 1, sym__body, - STATE(3250), 1, - aux_sym_program_repeat1, - STATE(2739), 3, - sym_subshell, - sym_compound_statement, - sym_do_group, - [181544] = 8, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8908), 1, - anon_sym_LF, - ACTIONS(9362), 1, - anon_sym_LBRACE, - ACTIONS(9364), 1, - anon_sym_do, - ACTIONS(9368), 1, - anon_sym_LPAREN, - STATE(2925), 1, + STATE(3235), 1, aux_sym_program_repeat1, - STATE(3369), 1, - sym__body, - STATE(3323), 3, + STATE(2680), 3, sym_subshell, sym_compound_statement, sym_do_group, - [181571] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6618), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6620), 7, - sym__assignment_name, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [181588] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6670), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6672), 7, - sym__assignment_name, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - [181605] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6663), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6665), 7, - sym__assignment_name, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - [181622] = 8, - ACTIONS(2007), 1, + [180904] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9378), 1, + ACTIONS(9257), 1, anon_sym_LPAREN, - ACTIONS(9380), 1, + ACTIONS(9259), 1, anon_sym_LBRACE, - ACTIONS(9382), 1, + ACTIONS(9261), 1, anon_sym_do, - ACTIONS(9406), 1, + ACTIONS(9271), 1, anon_sym_LF, - STATE(2633), 1, + STATE(3311), 1, sym__body, - STATE(3244), 1, + STATE(3330), 1, aux_sym_program_repeat1, - STATE(2739), 3, + STATE(3283), 3, sym_subshell, sym_compound_statement, sym_do_group, - [181649] = 8, - ACTIONS(2007), 1, + [180931] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, - anon_sym_LF, - ACTIONS(9352), 1, + ACTIONS(9275), 1, anon_sym_LPAREN, - ACTIONS(9354), 1, + ACTIONS(9277), 1, anon_sym_LBRACE, - ACTIONS(9356), 1, + ACTIONS(9279), 1, anon_sym_do, - STATE(2563), 1, + ACTIONS(9321), 1, + anon_sym_LF, + STATE(2234), 1, sym__body, - STATE(2925), 1, + STATE(3234), 1, aux_sym_program_repeat1, - STATE(2730), 3, + STATE(2524), 3, sym_subshell, sym_compound_statement, sym_do_group, - [181676] = 8, - ACTIONS(2007), 1, + [180958] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9374), 1, - anon_sym_LBRACE, - ACTIONS(9376), 1, - anon_sym_do, - ACTIONS(9408), 1, + ACTIONS(9271), 1, anon_sym_LF, - ACTIONS(9410), 1, + ACTIONS(9281), 1, anon_sym_LPAREN, - STATE(2964), 1, + ACTIONS(9283), 1, + anon_sym_LBRACE, + ACTIONS(9285), 1, + anon_sym_do, + STATE(3049), 1, sym__body, - STATE(3243), 1, + STATE(3330), 1, aux_sym_program_repeat1, - STATE(2963), 3, + STATE(3005), 3, sym_subshell, sym_compound_statement, sym_do_group, - [181703] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8888), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8886), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - [181719] = 6, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8864), 1, - anon_sym_AMP, - ACTIONS(9224), 1, - anon_sym_PIPE, - ACTIONS(9226), 1, - anon_sym_PIPE_AMP, - ACTIONS(9222), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8862), 3, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - [181741] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9157), 1, - anon_sym_AMP, - ACTIONS(9236), 1, - anon_sym_PIPE, - ACTIONS(9238), 1, - anon_sym_PIPE_AMP, - ACTIONS(9155), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_fi, - [181761] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8818), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8816), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - [181777] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8834), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8832), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - [181793] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8838), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8836), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - [181809] = 5, - ACTIONS(2007), 1, + [180985] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9157), 1, - anon_sym_AMP, - ACTIONS(9252), 1, - anon_sym_PIPE, - ACTIONS(9254), 1, - anon_sym_PIPE_AMP, - ACTIONS(9155), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_done, - [181829] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8798), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8796), 6, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - [181845] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7746), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(7744), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [181861] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8802), 2, + ACTIONS(8837), 1, anon_sym_AMP, + ACTIONS(9025), 1, anon_sym_PIPE, - ACTIONS(8800), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(9027), 1, anon_sym_PIPE_AMP, - [181877] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8884), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8882), 6, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(9023), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - [181893] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8818), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8816), 6, - sym__backtick_close, + ACTIONS(8835), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [181909] = 3, - ACTIONS(2007), 1, + anon_sym_then, + [181008] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8834), 2, + ACTIONS(8805), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8832), 6, + ACTIONS(8803), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [181925] = 3, - ACTIONS(2007), 1, + [181025] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7809), 2, + ACTIONS(8849), 1, anon_sym_AMP, + ACTIONS(9061), 1, anon_sym_PIPE, - ACTIONS(7807), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(9063), 1, anon_sym_PIPE_AMP, - [181941] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8838), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8836), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(9059), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [181957] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(6271), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6269), 6, + ACTIONS(8847), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - [181973] = 3, - ACTIONS(2007), 1, + anon_sym_fi, + [181048] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8822), 2, + ACTIONS(8853), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8820), 6, + ACTIONS(8851), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [181989] = 6, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8842), 1, - anon_sym_AMP, - ACTIONS(9224), 1, - anon_sym_PIPE, - ACTIONS(9226), 1, - anon_sym_PIPE_AMP, - ACTIONS(9222), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8840), 3, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - [182011] = 7, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8971), 1, - anon_sym_PIPE, - ACTIONS(8973), 1, - anon_sym_PIPE_AMP, - ACTIONS(9414), 1, - anon_sym_AMP, - STATE(667), 1, - sym__terminator, - ACTIONS(8969), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(9412), 2, - anon_sym_LF, - anon_sym_SEMI, - [182035] = 3, - ACTIONS(2007), 1, + [181065] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8888), 2, + ACTIONS(8861), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8886), 6, - sym__backtick_close, + ACTIONS(8859), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [182051] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9201), 1, - anon_sym_AMP, - ACTIONS(9252), 1, - anon_sym_PIPE, - ACTIONS(9254), 1, - anon_sym_PIPE_AMP, - ACTIONS(9199), 5, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_done, - [182071] = 3, - ACTIONS(2007), 1, + [181082] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8830), 2, + ACTIONS(8797), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8828), 6, + ACTIONS(8795), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [182087] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8842), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8840), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [182103] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8859), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8856), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [182119] = 6, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8842), 1, - anon_sym_AMP, - ACTIONS(9280), 1, - anon_sym_PIPE, - ACTIONS(9282), 1, - anon_sym_PIPE_AMP, - ACTIONS(9278), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8840), 3, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_then, - [182141] = 3, - ACTIONS(2007), 1, + [181099] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8872), 2, + ACTIONS(8813), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8870), 6, + ACTIONS(8811), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [182157] = 5, - ACTIONS(2007), 1, + [181116] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9201), 1, - anon_sym_AMP, - ACTIONS(9236), 1, - anon_sym_PIPE, - ACTIONS(9238), 1, - anon_sym_PIPE_AMP, - ACTIONS(9199), 5, + ACTIONS(9265), 1, + anon_sym_LPAREN, + ACTIONS(9267), 1, + anon_sym_LBRACE, + ACTIONS(9269), 1, + anon_sym_do, + ACTIONS(9271), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_fi, - [182177] = 3, - ACTIONS(2007), 1, + STATE(2484), 1, + sym__body, + STATE(3330), 1, + aux_sym_program_repeat1, + STATE(2674), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [181143] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8806), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8804), 6, - sym__backtick_close, + ACTIONS(9271), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [182193] = 3, - ACTIONS(2007), 1, + ACTIONS(9275), 1, + anon_sym_LPAREN, + ACTIONS(9277), 1, + anon_sym_LBRACE, + ACTIONS(9279), 1, + anon_sym_do, + STATE(2248), 1, + sym__body, + STATE(3330), 1, + aux_sym_program_repeat1, + STATE(2524), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [181170] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8864), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8862), 6, - sym__backtick_close, + ACTIONS(9271), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [182209] = 6, - ACTIONS(2007), 1, + ACTIONS(9315), 1, + anon_sym_LPAREN, + ACTIONS(9317), 1, + anon_sym_LBRACE, + ACTIONS(9319), 1, + anon_sym_do, + STATE(2454), 1, + sym__body, + STATE(3330), 1, + aux_sym_program_repeat1, + STATE(2680), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [181197] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9040), 1, + ACTIONS(8857), 1, anon_sym_AMP, - ACTIONS(9280), 1, + ACTIONS(9025), 1, anon_sym_PIPE, - ACTIONS(9282), 1, + ACTIONS(9027), 1, anon_sym_PIPE_AMP, - ACTIONS(9278), 2, + ACTIONS(9023), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(9038), 3, + ACTIONS(8855), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_then, - [182231] = 6, - ACTIONS(2007), 1, + [181220] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8810), 1, + ACTIONS(8841), 2, anon_sym_AMP, - ACTIONS(9280), 1, anon_sym_PIPE, - ACTIONS(9282), 1, - anon_sym_PIPE_AMP, - ACTIONS(9278), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8808), 3, + ACTIONS(8839), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, - anon_sym_then, - [182253] = 3, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [181237] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8802), 2, + ACTIONS(8865), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8800), 6, + ACTIONS(8863), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [182269] = 5, - ACTIONS(2007), 1, + [181254] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9157), 1, + ACTIONS(8789), 2, anon_sym_AMP, - ACTIONS(9224), 1, anon_sym_PIPE, - ACTIONS(9226), 1, - anon_sym_PIPE_AMP, - ACTIONS(9155), 5, + ACTIONS(8787), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [182289] = 3, - ACTIONS(2007), 1, + anon_sym_PIPE_AMP, + [181271] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8868), 2, + ACTIONS(8817), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8866), 6, + ACTIONS(8815), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [182305] = 6, - ACTIONS(2007), 1, + [181288] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8864), 1, + ACTIONS(8983), 1, anon_sym_AMP, - ACTIONS(9236), 1, + ACTIONS(9037), 1, anon_sym_PIPE, - ACTIONS(9238), 1, + ACTIONS(9039), 1, anon_sym_PIPE_AMP, - ACTIONS(9234), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8862), 3, + ACTIONS(8981), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, - anon_sym_fi, - [182327] = 6, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8864), 1, - anon_sym_AMP, - ACTIONS(9252), 1, - anon_sym_PIPE, - ACTIONS(9254), 1, - anon_sym_PIPE_AMP, - ACTIONS(9250), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8862), 3, + anon_sym_do, + [181309] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9271), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_done, - [182349] = 6, - ACTIONS(2007), 1, + ACTIONS(9305), 1, + anon_sym_LPAREN, + ACTIONS(9307), 1, + anon_sym_LBRACE, + ACTIONS(9309), 1, + anon_sym_do, + STATE(3238), 1, + sym__body, + STATE(3330), 1, + aux_sym_program_repeat1, + STATE(3298), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [181336] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8810), 1, + ACTIONS(8829), 2, anon_sym_AMP, - ACTIONS(9236), 1, anon_sym_PIPE, - ACTIONS(9238), 1, - anon_sym_PIPE_AMP, - ACTIONS(9234), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8808), 3, + ACTIONS(8827), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, - anon_sym_fi, - [182371] = 6, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8810), 1, - anon_sym_AMP, - ACTIONS(9252), 1, - anon_sym_PIPE, - ACTIONS(9254), 1, - anon_sym_PIPE_AMP, - ACTIONS(9250), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8808), 3, - anon_sym_LF, - anon_sym_SEMI, + anon_sym_PIPE_AMP, anon_sym_done, - [182393] = 6, - ACTIONS(2007), 1, + [181353] = 8, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8842), 1, - anon_sym_AMP, - ACTIONS(9236), 1, - anon_sym_PIPE, - ACTIONS(9238), 1, - anon_sym_PIPE_AMP, - ACTIONS(9234), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8840), 3, + ACTIONS(9307), 1, + anon_sym_LBRACE, + ACTIONS(9309), 1, + anon_sym_do, + ACTIONS(9323), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_fi, - [182415] = 6, - ACTIONS(2007), 1, + ACTIONS(9325), 1, + anon_sym_LPAREN, + STATE(3192), 1, + sym__body, + STATE(3242), 1, + aux_sym_program_repeat1, + STATE(3298), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [181380] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9289), 1, + anon_sym_LPAREN, + ACTIONS(9291), 1, + anon_sym_LBRACE, + ACTIONS(9293), 1, + anon_sym_do, + ACTIONS(9327), 1, + anon_sym_LF, + STATE(1981), 1, + sym__body, + STATE(3295), 1, + aux_sym_program_repeat1, + STATE(2126), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [181407] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8864), 1, + ACTIONS(8879), 2, anon_sym_AMP, - ACTIONS(9264), 1, anon_sym_PIPE, - ACTIONS(9266), 1, - anon_sym_PIPE_AMP, - ACTIONS(9262), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8862), 3, + ACTIONS(8877), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [181424] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9289), 1, + anon_sym_LPAREN, + ACTIONS(9291), 1, + anon_sym_LBRACE, + ACTIONS(9293), 1, anon_sym_do, - [182437] = 6, - ACTIONS(2007), 1, + ACTIONS(9329), 1, + anon_sym_LF, + STATE(1973), 1, + sym__body, + STATE(3205), 1, + aux_sym_program_repeat1, + STATE(2126), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [181451] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8876), 1, + ACTIONS(9002), 1, anon_sym_AMP, - ACTIONS(9236), 1, + ACTIONS(9061), 1, anon_sym_PIPE, - ACTIONS(9238), 1, + ACTIONS(9063), 1, anon_sym_PIPE_AMP, - ACTIONS(9234), 2, + ACTIONS(9059), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8874), 3, + ACTIONS(9000), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_fi, - [182459] = 6, - ACTIONS(2007), 1, + [181474] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8876), 1, + ACTIONS(8793), 1, anon_sym_AMP, - ACTIONS(9224), 1, + ACTIONS(9013), 1, anon_sym_PIPE, - ACTIONS(9226), 1, + ACTIONS(9015), 1, anon_sym_PIPE_AMP, - ACTIONS(9222), 2, + ACTIONS(9011), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8874), 3, + ACTIONS(8791), 4, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, - [182481] = 3, - ACTIONS(2007), 1, + [181497] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8798), 2, + ACTIONS(8789), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8796), 6, - sym__backtick_close, + ACTIONS(8787), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [182497] = 3, - ACTIONS(2007), 1, + anon_sym_done, + [181514] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8859), 2, + ACTIONS(8809), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8856), 6, + ACTIONS(8807), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [182513] = 6, - ACTIONS(2007), 1, + [181531] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8854), 1, + ACTIONS(8793), 1, anon_sym_AMP, - ACTIONS(9236), 1, + ACTIONS(9061), 1, anon_sym_PIPE, - ACTIONS(9238), 1, + ACTIONS(9063), 1, anon_sym_PIPE_AMP, - ACTIONS(9234), 2, + ACTIONS(9059), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8852), 3, + ACTIONS(8791), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_fi, - [182535] = 6, - ACTIONS(2007), 1, + [181554] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8842), 1, + ACTIONS(8998), 1, anon_sym_AMP, - ACTIONS(9252), 1, + ACTIONS(9025), 1, anon_sym_PIPE, - ACTIONS(9254), 1, + ACTIONS(9027), 1, anon_sym_PIPE_AMP, - ACTIONS(9250), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8840), 3, + ACTIONS(8996), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, - anon_sym_done, - [182557] = 3, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_then, + [181575] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8864), 2, + ACTIONS(8825), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8862), 6, + ACTIONS(8823), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [182573] = 6, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8876), 1, - anon_sym_AMP, - ACTIONS(9252), 1, - anon_sym_PIPE, - ACTIONS(9254), 1, - anon_sym_PIPE_AMP, - ACTIONS(9250), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8874), 3, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_done, - [182595] = 3, - ACTIONS(2007), 1, + [181592] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7746), 2, + ACTIONS(7643), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(7744), 6, + ACTIONS(7641), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [182611] = 6, - ACTIONS(2007), 1, + [181609] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8854), 1, + ACTIONS(8983), 1, anon_sym_AMP, - ACTIONS(9252), 1, + ACTIONS(9013), 1, anon_sym_PIPE, - ACTIONS(9254), 1, + ACTIONS(9015), 1, anon_sym_PIPE_AMP, - ACTIONS(9250), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8852), 3, + ACTIONS(8981), 6, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, - anon_sym_done, - [182633] = 5, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + [181630] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9157), 1, + ACTIONS(8865), 2, anon_sym_AMP, - ACTIONS(9280), 1, anon_sym_PIPE, - ACTIONS(9282), 1, - anon_sym_PIPE_AMP, - ACTIONS(9155), 5, + ACTIONS(8863), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [182653] = 3, - ACTIONS(2007), 1, + anon_sym_PIPE_AMP, + anon_sym_done, + [181647] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8876), 2, + ACTIONS(8829), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8874), 6, + ACTIONS(8827), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [182669] = 5, - ACTIONS(2007), 1, + [181664] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9157), 1, + ACTIONS(8879), 2, anon_sym_AMP, - ACTIONS(9264), 1, anon_sym_PIPE, - ACTIONS(9266), 1, - anon_sym_PIPE_AMP, - ACTIONS(9155), 5, + ACTIONS(8877), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_do, - [182689] = 6, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9040), 1, - anon_sym_AMP, - ACTIONS(9252), 1, - anon_sym_PIPE, - ACTIONS(9254), 1, anon_sym_PIPE_AMP, - ACTIONS(9250), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(9038), 3, - anon_sym_LF, - anon_sym_SEMI, anon_sym_done, - [182711] = 3, - ACTIONS(2007), 1, + [181681] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8846), 2, + ACTIONS(8809), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8844), 6, + ACTIONS(8807), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [182727] = 6, - ACTIONS(2007), 1, + [181698] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9040), 1, + ACTIONS(8825), 2, anon_sym_AMP, - ACTIONS(9264), 1, anon_sym_PIPE, - ACTIONS(9266), 1, - anon_sym_PIPE_AMP, - ACTIONS(9262), 2, + ACTIONS(8823), 7, + sym__heredoc_newline, + sym__backtick_close, + anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(9038), 3, + anon_sym_PIPE_AMP, + [181715] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9271), 1, anon_sym_LF, - anon_sym_SEMI, + ACTIONS(9297), 1, + anon_sym_LPAREN, + ACTIONS(9299), 1, + anon_sym_LBRACE, + ACTIONS(9301), 1, anon_sym_do, - [182749] = 3, - ACTIONS(2007), 1, + STATE(2917), 1, + sym__body, + STATE(3330), 1, + aux_sym_program_repeat1, + STATE(2935), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [181742] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8868), 2, + ACTIONS(7643), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8866), 6, + ACTIONS(7641), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [182765] = 6, - ACTIONS(2007), 1, + [181759] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8810), 1, + ACTIONS(8983), 1, anon_sym_AMP, - ACTIONS(9224), 1, + ACTIONS(9049), 1, anon_sym_PIPE, - ACTIONS(9226), 1, + ACTIONS(9051), 1, anon_sym_PIPE_AMP, - ACTIONS(9222), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8808), 3, - sym__backtick_close, + ACTIONS(8981), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, - [182787] = 6, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8810), 1, - anon_sym_AMP, - ACTIONS(9264), 1, - anon_sym_PIPE, - ACTIONS(9266), 1, - anon_sym_PIPE_AMP, - ACTIONS(9262), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8808), 3, - anon_sym_LF, - anon_sym_SEMI, + anon_sym_done, + [181780] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9297), 1, + anon_sym_LPAREN, + ACTIONS(9299), 1, + anon_sym_LBRACE, + ACTIONS(9301), 1, anon_sym_do, - [182809] = 3, - ACTIONS(2007), 1, + ACTIONS(9331), 1, + anon_sym_LF, + STATE(2934), 1, + sym__body, + STATE(3209), 1, + aux_sym_program_repeat1, + STATE(2935), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [181807] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8810), 2, + ACTIONS(8845), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8808), 6, + ACTIONS(8843), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [182825] = 3, - ACTIONS(2007), 1, + [181824] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8810), 2, + ACTIONS(8998), 1, anon_sym_AMP, + ACTIONS(9037), 1, anon_sym_PIPE, - ACTIONS(8808), 6, - sym__backtick_close, + ACTIONS(9039), 1, + anon_sym_PIPE_AMP, + ACTIONS(8996), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [182841] = 3, - ACTIONS(2007), 1, + anon_sym_do, + [181845] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8880), 2, + ACTIONS(8845), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8878), 6, + ACTIONS(8843), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [182857] = 3, - ACTIONS(2007), 1, + [181862] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8884), 2, + ACTIONS(8833), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8882), 6, - sym__backtick_close, + ACTIONS(8831), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [182873] = 6, - ACTIONS(2007), 1, + anon_sym_done, + [181879] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8842), 1, + ACTIONS(9002), 1, anon_sym_AMP, - ACTIONS(9264), 1, + ACTIONS(9037), 1, anon_sym_PIPE, - ACTIONS(9266), 1, + ACTIONS(9039), 1, anon_sym_PIPE_AMP, - ACTIONS(9262), 2, + ACTIONS(9035), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8840), 3, + ACTIONS(9000), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_do, - [182895] = 3, - ACTIONS(2007), 1, + [181902] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8842), 2, + ACTIONS(8793), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8840), 6, + ACTIONS(8791), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [182911] = 6, - ACTIONS(2007), 1, + [181919] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8854), 1, + ACTIONS(8875), 1, anon_sym_AMP, - ACTIONS(9224), 1, + ACTIONS(9013), 1, anon_sym_PIPE, - ACTIONS(9226), 1, + ACTIONS(9015), 1, anon_sym_PIPE_AMP, - ACTIONS(9222), 2, + ACTIONS(9011), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8852), 3, + ACTIONS(8873), 4, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, - [182933] = 3, - ACTIONS(2007), 1, + [181942] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8814), 2, + ACTIONS(8870), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8812), 6, + ACTIONS(8867), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [182949] = 6, - ACTIONS(2007), 1, + [181959] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8876), 1, + ACTIONS(6445), 2, anon_sym_AMP, - ACTIONS(9264), 1, anon_sym_PIPE, - ACTIONS(9266), 1, - anon_sym_PIPE_AMP, - ACTIONS(9262), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8874), 3, + ACTIONS(6443), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, - anon_sym_do, - [182971] = 3, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [181976] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8876), 2, + ACTIONS(8875), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8874), 6, + ACTIONS(8873), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [182987] = 6, - ACTIONS(2007), 1, + [181993] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8854), 1, + ACTIONS(8983), 1, anon_sym_AMP, - ACTIONS(9264), 1, + ACTIONS(9061), 1, anon_sym_PIPE, - ACTIONS(9266), 1, + ACTIONS(9063), 1, anon_sym_PIPE_AMP, - ACTIONS(9262), 2, + ACTIONS(8981), 6, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8852), 3, + anon_sym_fi, + [182014] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7688), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(7686), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, - anon_sym_do, - [183009] = 3, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [182031] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8854), 2, + ACTIONS(8841), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8852), 6, + ACTIONS(8839), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [183025] = 3, - ACTIONS(2007), 1, + [182048] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8826), 2, + ACTIONS(8817), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8824), 6, - sym__backtick_close, + ACTIONS(8815), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [183041] = 6, - ACTIONS(2007), 1, + anon_sym_done, + [182065] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8876), 1, + ACTIONS(8821), 2, anon_sym_AMP, - ACTIONS(9280), 1, anon_sym_PIPE, - ACTIONS(9282), 1, - anon_sym_PIPE_AMP, - ACTIONS(9278), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(8874), 3, + ACTIONS(8819), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, - anon_sym_then, - [183063] = 5, - ACTIONS(2007), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + [182082] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9201), 1, + ACTIONS(8998), 1, anon_sym_AMP, - ACTIONS(9224), 1, + ACTIONS(9049), 1, anon_sym_PIPE, - ACTIONS(9226), 1, + ACTIONS(9051), 1, anon_sym_PIPE_AMP, - ACTIONS(9199), 5, - sym__backtick_close, + ACTIONS(8996), 6, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - [183083] = 3, - ACTIONS(2007), 1, + anon_sym_done, + [182103] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9259), 1, + anon_sym_LBRACE, + ACTIONS(9261), 1, + anon_sym_do, + ACTIONS(9333), 1, + anon_sym_LF, + ACTIONS(9335), 1, + anon_sym_LPAREN, + STATE(3232), 1, + sym__body, + STATE(3306), 1, + aux_sym_program_repeat1, + STATE(3283), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [182130] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7817), 2, + ACTIONS(7639), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(7815), 6, - sym__backtick_close, + ACTIONS(7637), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [183099] = 5, - ACTIONS(2007), 1, + anon_sym_done, + [182147] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9201), 1, + ACTIONS(8875), 1, anon_sym_AMP, - ACTIONS(9280), 1, + ACTIONS(9049), 1, anon_sym_PIPE, - ACTIONS(9282), 1, + ACTIONS(9051), 1, anon_sym_PIPE_AMP, - ACTIONS(9199), 5, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(9047), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_then, - [183119] = 3, - ACTIONS(2007), 1, + ACTIONS(8873), 4, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_done, + [182170] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8850), 2, + ACTIONS(8849), 1, anon_sym_AMP, + ACTIONS(9049), 1, anon_sym_PIPE, - ACTIONS(8848), 6, - sym__backtick_close, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(9051), 1, + anon_sym_PIPE_AMP, + ACTIONS(9047), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [183135] = 6, - ACTIONS(2007), 1, + ACTIONS(8847), 4, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_done, + [182193] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8854), 1, + ACTIONS(9002), 1, anon_sym_AMP, - ACTIONS(9280), 1, + ACTIONS(9013), 1, anon_sym_PIPE, - ACTIONS(9282), 1, + ACTIONS(9015), 1, anon_sym_PIPE_AMP, - ACTIONS(9278), 2, + ACTIONS(9011), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8852), 3, + ACTIONS(9000), 4, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, - anon_sym_then, - [183157] = 3, - ACTIONS(2007), 1, + [182216] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8854), 2, + ACTIONS(8861), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8852), 6, + ACTIONS(8859), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [183173] = 6, - ACTIONS(2007), 1, + [182233] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9040), 1, + ACTIONS(8837), 1, anon_sym_AMP, - ACTIONS(9224), 1, + ACTIONS(9049), 1, anon_sym_PIPE, - ACTIONS(9226), 1, + ACTIONS(9051), 1, anon_sym_PIPE_AMP, - ACTIONS(9222), 2, + ACTIONS(9047), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(9038), 3, - sym__backtick_close, + ACTIONS(8835), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, - [183195] = 3, - ACTIONS(2007), 1, + anon_sym_done, + [182256] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8814), 2, + ACTIONS(7688), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8812), 6, + ACTIONS(7686), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [183211] = 3, - ACTIONS(2007), 1, + [182273] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7817), 2, + ACTIONS(8875), 1, anon_sym_AMP, + ACTIONS(9025), 1, anon_sym_PIPE, - ACTIONS(7815), 6, + ACTIONS(9027), 1, + anon_sym_PIPE_AMP, + ACTIONS(9023), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8873), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, + anon_sym_then, + [182296] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8857), 1, + anon_sym_AMP, + ACTIONS(9049), 1, + anon_sym_PIPE, + ACTIONS(9051), 1, + anon_sym_PIPE_AMP, + ACTIONS(9047), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(8855), 4, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, anon_sym_done, - [183227] = 3, - ACTIONS(2007), 1, + [182319] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8826), 2, + ACTIONS(8837), 1, anon_sym_AMP, + ACTIONS(9061), 1, anon_sym_PIPE, - ACTIONS(8824), 6, + ACTIONS(9063), 1, + anon_sym_PIPE_AMP, + ACTIONS(9059), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8835), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, + anon_sym_fi, + [182342] = 6, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(8793), 1, + anon_sym_AMP, + ACTIONS(9049), 1, + anon_sym_PIPE, + ACTIONS(9051), 1, + anon_sym_PIPE_AMP, + ACTIONS(9047), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, + ACTIONS(8791), 4, + sym__heredoc_newline, + anon_sym_LF, + anon_sym_SEMI, anon_sym_done, - [183243] = 3, - ACTIONS(2007), 1, + [182365] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9283), 1, + anon_sym_LBRACE, + ACTIONS(9285), 1, + anon_sym_do, + ACTIONS(9337), 1, + anon_sym_LF, + ACTIONS(9339), 1, + anon_sym_LPAREN, + STATE(3028), 1, + sym__body, + STATE(3202), 1, + aux_sym_program_repeat1, + STATE(3005), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [182392] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9271), 1, + anon_sym_LF, + ACTIONS(9289), 1, + anon_sym_LPAREN, + ACTIONS(9291), 1, + anon_sym_LBRACE, + ACTIONS(9293), 1, + anon_sym_do, + STATE(2015), 1, + sym__body, + STATE(3330), 1, + aux_sym_program_repeat1, + STATE(2126), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [182419] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8822), 2, + ACTIONS(6445), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8820), 6, + ACTIONS(6443), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [183259] = 3, - ACTIONS(2007), 1, + [182436] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8872), 2, + ACTIONS(8849), 1, anon_sym_AMP, + ACTIONS(9013), 1, anon_sym_PIPE, - ACTIONS(8870), 6, + ACTIONS(9015), 1, + anon_sym_PIPE_AMP, + ACTIONS(9011), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(8847), 4, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [183275] = 3, - ACTIONS(2007), 1, + [182459] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8846), 2, + ACTIONS(7639), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8844), 6, + ACTIONS(7637), 7, + sym__heredoc_newline, sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [183291] = 6, - ACTIONS(2007), 1, + [182476] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9040), 1, + ACTIONS(8875), 1, anon_sym_AMP, - ACTIONS(9236), 1, + ACTIONS(9037), 1, anon_sym_PIPE, - ACTIONS(9238), 1, + ACTIONS(9039), 1, anon_sym_PIPE_AMP, - ACTIONS(9234), 2, + ACTIONS(9035), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(9038), 3, + ACTIONS(8873), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, - anon_sym_fi, - [183313] = 3, - ACTIONS(2007), 1, + anon_sym_do, + [182499] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8880), 2, + ACTIONS(8849), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8878), 6, + ACTIONS(8847), 7, + sym__heredoc_newline, + sym__backtick_close, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - anon_sym_done, - [183329] = 3, - ACTIONS(2007), 1, + [182516] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7809), 2, + ACTIONS(8857), 1, anon_sym_AMP, + ACTIONS(9061), 1, anon_sym_PIPE, - ACTIONS(7807), 6, - anon_sym_LF, - anon_sym_SEMI, + ACTIONS(9063), 1, + anon_sym_PIPE_AMP, + ACTIONS(9059), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - anon_sym_done, - [183345] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8830), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(8828), 6, - sym__backtick_close, + ACTIONS(8855), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_AMP, - [183361] = 3, - ACTIONS(2007), 1, + anon_sym_fi, + [182539] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(8870), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6269), 6, - sym__backtick_close, + ACTIONS(8867), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, - [183377] = 3, - ACTIONS(2007), 1, + anon_sym_done, + [182556] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9315), 1, + anon_sym_LPAREN, + ACTIONS(9317), 1, + anon_sym_LBRACE, + ACTIONS(9319), 1, + anon_sym_do, + ACTIONS(9341), 1, + anon_sym_LF, + STATE(2566), 1, + sym__body, + STATE(3313), 1, + aux_sym_program_repeat1, + STATE(2680), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [182583] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8850), 2, + ACTIONS(8875), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8848), 6, + ACTIONS(8873), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [183393] = 6, - ACTIONS(2007), 1, + [182600] = 6, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8864), 1, + ACTIONS(8849), 1, anon_sym_AMP, - ACTIONS(9280), 1, + ACTIONS(9025), 1, anon_sym_PIPE, - ACTIONS(9282), 1, + ACTIONS(9027), 1, anon_sym_PIPE_AMP, - ACTIONS(9278), 2, + ACTIONS(9023), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(8862), 3, + ACTIONS(8847), 4, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_then, - [183415] = 5, - ACTIONS(2007), 1, + [182623] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9257), 1, + anon_sym_LPAREN, + ACTIONS(9259), 1, + anon_sym_LBRACE, + ACTIONS(9261), 1, + anon_sym_do, + ACTIONS(9271), 1, + anon_sym_LF, + STATE(3257), 1, + sym__body, + STATE(3330), 1, + aux_sym_program_repeat1, + STATE(3283), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [182650] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9305), 1, + anon_sym_LPAREN, + ACTIONS(9307), 1, + anon_sym_LBRACE, + ACTIONS(9309), 1, + anon_sym_do, + ACTIONS(9343), 1, + anon_sym_LF, + STATE(3246), 1, + sym__body, + STATE(3314), 1, + aux_sym_program_repeat1, + STATE(3298), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [182677] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9265), 1, + anon_sym_LPAREN, + ACTIONS(9267), 1, + anon_sym_LBRACE, + ACTIONS(9269), 1, + anon_sym_do, + ACTIONS(9271), 1, + anon_sym_LF, + STATE(2527), 1, + sym__body, + STATE(3330), 1, + aux_sym_program_repeat1, + STATE(2674), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [182704] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9257), 1, + anon_sym_LPAREN, + ACTIONS(9259), 1, + anon_sym_LBRACE, + ACTIONS(9261), 1, + anon_sym_do, + ACTIONS(9345), 1, + anon_sym_LF, + STATE(3195), 1, + aux_sym_program_repeat1, + STATE(3259), 1, + sym__body, + STATE(3283), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [182731] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9299), 1, + anon_sym_LBRACE, + ACTIONS(9301), 1, + anon_sym_do, + ACTIONS(9347), 1, + anon_sym_LF, + ACTIONS(9349), 1, + anon_sym_LPAREN, + STATE(2915), 1, + sym__body, + STATE(3220), 1, + aux_sym_program_repeat1, + STATE(2935), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [182758] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9201), 1, + ACTIONS(8821), 2, anon_sym_AMP, - ACTIONS(9264), 1, anon_sym_PIPE, - ACTIONS(9266), 1, - anon_sym_PIPE_AMP, - ACTIONS(9199), 5, + ACTIONS(8819), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_PIPE_AMP, + anon_sym_done, + [182775] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9305), 1, + anon_sym_LPAREN, + ACTIONS(9307), 1, + anon_sym_LBRACE, + ACTIONS(9309), 1, anon_sym_do, - [183435] = 3, - ACTIONS(2007), 1, + ACTIONS(9351), 1, + anon_sym_LF, + STATE(3213), 1, + aux_sym_program_repeat1, + STATE(3237), 1, + sym__body, + STATE(3298), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [182802] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9271), 1, + anon_sym_LF, + ACTIONS(9315), 1, + anon_sym_LPAREN, + ACTIONS(9317), 1, + anon_sym_LBRACE, + ACTIONS(9319), 1, + anon_sym_do, + STATE(2426), 1, + sym__body, + STATE(3330), 1, + aux_sym_program_repeat1, + STATE(2680), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [182829] = 8, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9271), 1, + anon_sym_LF, + ACTIONS(9305), 1, + anon_sym_LPAREN, + ACTIONS(9307), 1, + anon_sym_LBRACE, + ACTIONS(9309), 1, + anon_sym_do, + STATE(3240), 1, + sym__body, + STATE(3330), 1, + aux_sym_program_repeat1, + STATE(3298), 3, + sym_subshell, + sym_compound_statement, + sym_do_group, + [182856] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8806), 2, + ACTIONS(8849), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(8804), 6, + ACTIONS(8847), 7, + sym__heredoc_newline, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PIPE_AMP, anon_sym_done, - [183451] = 7, - ACTIONS(2007), 1, + [182873] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9416), 1, + ACTIONS(9353), 1, anon_sym_fi, - ACTIONS(9418), 1, + ACTIONS(9355), 1, anon_sym_elif, - ACTIONS(9420), 1, + ACTIONS(9357), 1, anon_sym_else, - STATE(3388), 1, + STATE(3358), 1, aux_sym_if_statement_repeat1, - STATE(3467), 1, + STATE(3382), 1, sym_elif_clause, - STATE(3688), 1, + STATE(3647), 1, sym_else_clause, - [183473] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9422), 1, - sym__concat, - STATE(3379), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6231), 4, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_in, - [183489] = 7, - ACTIONS(2007), 1, + [182895] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9418), 1, + ACTIONS(9355), 1, anon_sym_elif, - ACTIONS(9420), 1, + ACTIONS(9357), 1, anon_sym_else, - ACTIONS(9424), 1, + ACTIONS(9359), 1, anon_sym_fi, - STATE(3370), 1, + STATE(3358), 1, aux_sym_if_statement_repeat1, - STATE(3467), 1, + STATE(3382), 1, sym_elif_clause, - STATE(3745), 1, + STATE(3599), 1, sym_else_clause, - [183511] = 7, - ACTIONS(2007), 1, + [182917] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9418), 1, + ACTIONS(9355), 1, anon_sym_elif, - ACTIONS(9420), 1, + ACTIONS(9357), 1, anon_sym_else, - ACTIONS(9426), 1, + ACTIONS(9361), 1, anon_sym_fi, - STATE(3378), 1, + STATE(3326), 1, aux_sym_if_statement_repeat1, - STATE(3467), 1, + STATE(3382), 1, sym_elif_clause, - STATE(3798), 1, + STATE(3760), 1, sym_else_clause, - [183533] = 7, - ACTIONS(2007), 1, + [182939] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9418), 1, + ACTIONS(9355), 1, anon_sym_elif, - ACTIONS(9420), 1, + ACTIONS(9357), 1, anon_sym_else, - ACTIONS(9428), 1, + ACTIONS(9363), 1, anon_sym_fi, - STATE(3388), 1, + STATE(3358), 1, aux_sym_if_statement_repeat1, - STATE(3467), 1, + STATE(3382), 1, sym_elif_clause, - STATE(3800), 1, + STATE(3587), 1, sym_else_clause, - [183555] = 7, - ACTIONS(2007), 1, + [182961] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9418), 1, + ACTIONS(9365), 1, + sym__concat, + STATE(3325), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6435), 4, + anon_sym_LF, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_in, + [182977] = 7, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9355), 1, anon_sym_elif, - ACTIONS(9420), 1, + ACTIONS(9357), 1, anon_sym_else, - ACTIONS(9430), 1, + ACTIONS(9367), 1, anon_sym_fi, - STATE(3377), 1, + STATE(3358), 1, aux_sym_if_statement_repeat1, - STATE(3467), 1, + STATE(3382), 1, sym_elif_clause, - STATE(3791), 1, + STATE(3907), 1, sym_else_clause, - [183577] = 7, - ACTIONS(2007), 1, + [182999] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9418), 1, + ACTIONS(9355), 1, anon_sym_elif, - ACTIONS(9420), 1, + ACTIONS(9357), 1, anon_sym_else, - ACTIONS(9432), 1, + ACTIONS(9369), 1, anon_sym_fi, - STATE(3388), 1, + STATE(3319), 1, aux_sym_if_statement_repeat1, - STATE(3467), 1, + STATE(3382), 1, sym_elif_clause, - STATE(3793), 1, + STATE(3827), 1, sym_else_clause, - [183599] = 7, - ACTIONS(2007), 1, + [183021] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9418), 1, + ACTIONS(9355), 1, anon_sym_elif, - ACTIONS(9420), 1, + ACTIONS(9357), 1, anon_sym_else, - ACTIONS(9434), 1, + ACTIONS(9371), 1, anon_sym_fi, - STATE(3388), 1, + STATE(3358), 1, aux_sym_if_statement_repeat1, - STATE(3467), 1, + STATE(3382), 1, sym_elif_clause, - STATE(3803), 1, + STATE(3758), 1, sym_else_clause, - [183621] = 7, - ACTIONS(2007), 1, + [183043] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9418), 1, + ACTIONS(9355), 1, anon_sym_elif, - ACTIONS(9420), 1, + ACTIONS(9357), 1, anon_sym_else, - ACTIONS(9436), 1, + ACTIONS(9373), 1, anon_sym_fi, - STATE(3388), 1, + STATE(3358), 1, aux_sym_if_statement_repeat1, - STATE(3467), 1, + STATE(3382), 1, sym_elif_clause, - STATE(3824), 1, + STATE(3838), 1, sym_else_clause, - [183643] = 4, - ACTIONS(2007), 1, + [183065] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9438), 1, + ACTIONS(9375), 1, sym__concat, - STATE(3379), 1, + STATE(3325), 1, aux_sym_concatenation_repeat1, - ACTIONS(6237), 4, + ACTIONS(6428), 4, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183659] = 7, - ACTIONS(2007), 1, + [183081] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9418), 1, + ACTIONS(9355), 1, anon_sym_elif, - ACTIONS(9420), 1, + ACTIONS(9357), 1, anon_sym_else, - ACTIONS(9441), 1, + ACTIONS(9378), 1, anon_sym_fi, - STATE(3388), 1, + STATE(3358), 1, aux_sym_if_statement_repeat1, - STATE(3467), 1, + STATE(3382), 1, sym_elif_clause, - STATE(3903), 1, + STATE(3718), 1, sym_else_clause, - [183681] = 7, - ACTIONS(2007), 1, + [183103] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9418), 1, + ACTIONS(9355), 1, anon_sym_elif, - ACTIONS(9420), 1, + ACTIONS(9357), 1, anon_sym_else, - ACTIONS(9443), 1, + ACTIONS(9380), 1, anon_sym_fi, - STATE(3383), 1, + STATE(3358), 1, aux_sym_if_statement_repeat1, - STATE(3467), 1, + STATE(3382), 1, sym_elif_clause, - STATE(3689), 1, + STATE(3823), 1, sym_else_clause, - [183703] = 7, - ACTIONS(2007), 1, + [183125] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9418), 1, + ACTIONS(9355), 1, anon_sym_elif, - ACTIONS(9420), 1, + ACTIONS(9357), 1, anon_sym_else, - ACTIONS(9445), 1, + ACTIONS(9382), 1, anon_sym_fi, - STATE(3388), 1, + STATE(3327), 1, aux_sym_if_statement_repeat1, - STATE(3467), 1, + STATE(3382), 1, sym_elif_clause, - STATE(3691), 1, + STATE(3614), 1, sym_else_clause, - [183725] = 7, - ACTIONS(2007), 1, + [183147] = 7, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9418), 1, + ACTIONS(9355), 1, anon_sym_elif, - ACTIONS(9420), 1, + ACTIONS(9357), 1, anon_sym_else, - ACTIONS(9447), 1, + ACTIONS(9384), 1, anon_sym_fi, - STATE(3388), 1, + STATE(3323), 1, aux_sym_if_statement_repeat1, - STATE(3467), 1, + STATE(3382), 1, sym_elif_clause, - STATE(3702), 1, + STATE(3909), 1, sym_else_clause, - [183747] = 4, - ACTIONS(2007), 1, + [183169] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9451), 1, - anon_sym_in, - STATE(3230), 1, - sym__terminator, - ACTIONS(9449), 3, + ACTIONS(9386), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP, - [183762] = 4, - ACTIONS(2007), 1, + STATE(3330), 1, + aux_sym_program_repeat1, + ACTIONS(992), 4, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_do, + anon_sym_in, + [183185] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9455), 1, + ACTIONS(9391), 1, anon_sym_in, - STATE(3257), 1, + STATE(3201), 1, sym__terminator, - ACTIONS(9453), 3, + ACTIONS(9389), 3, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP, - [183777] = 2, - ACTIONS(2007), 1, + [183200] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6448), 5, + ACTIONS(6428), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183788] = 2, - ACTIONS(2007), 1, + [183211] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5880), 5, + ACTIONS(6320), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183799] = 5, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9459), 1, - anon_sym_elif, - STATE(3388), 1, - aux_sym_if_statement_repeat1, - STATE(3467), 1, - sym_elif_clause, - ACTIONS(9457), 2, - anon_sym_fi, - anon_sym_else, - [183816] = 2, - ACTIONS(2007), 1, + [183222] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6028), 5, + ACTIONS(6262), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183827] = 2, - ACTIONS(2007), 1, + [183233] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5816), 5, + ACTIONS(6491), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183838] = 2, - ACTIONS(2007), 1, + [183244] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9395), 1, + anon_sym_in, + STATE(3303), 1, + sym__terminator, + ACTIONS(9393), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP, + [183259] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5932), 5, + ACTIONS(6242), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183849] = 4, - ACTIONS(2007), 1, + [183270] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9464), 1, - anon_sym_in, - STATE(3231), 1, - sym__terminator, - ACTIONS(9462), 3, + ACTIONS(6495), 5, + sym__concat, anon_sym_LF, - anon_sym_SEMI, - anon_sym_AMP, - [183864] = 2, - ACTIONS(2007), 1, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_in, + [183281] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6163), 5, + ACTIONS(6141), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183875] = 2, - ACTIONS(2007), 1, + [183292] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5866), 5, + ACTIONS(6258), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183886] = 3, - ACTIONS(2007), 1, + [183303] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6227), 1, + ACTIONS(6017), 5, sym__concat, - ACTIONS(6223), 4, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183899] = 2, - ACTIONS(2007), 1, + [183314] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5902), 5, + ACTIONS(6107), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183910] = 2, - ACTIONS(2007), 1, + [183325] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6452), 5, + ACTIONS(5949), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183921] = 2, - ACTIONS(2007), 1, + [183336] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9399), 1, + anon_sym_in, + STATE(3247), 1, + sym__terminator, + ACTIONS(9397), 3, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_AMP, + [183351] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5978), 5, + ACTIONS(6103), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183932] = 2, - ACTIONS(2007), 1, + [183362] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6044), 5, + ACTIONS(5903), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183943] = 2, - ACTIONS(2007), 1, + [183373] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6237), 5, + ACTIONS(6187), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183954] = 2, - ACTIONS(2007), 1, + [183384] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6064), 5, + ACTIONS(6268), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183965] = 2, - ACTIONS(2007), 1, + [183395] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5804), 5, + ACTIONS(6487), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183976] = 2, - ACTIONS(2007), 1, + [183406] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6436), 5, + ACTIONS(6081), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183987] = 2, - ACTIONS(2007), 1, + [183417] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5830), 5, + ACTIONS(6344), 1, sym__concat, + ACTIONS(6340), 4, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [183998] = 2, - ACTIONS(2007), 1, + [183430] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5836), 5, + ACTIONS(6300), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [184009] = 2, - ACTIONS(2007), 1, + [183441] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6173), 5, + ACTIONS(6099), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [184020] = 2, - ACTIONS(2007), 1, + [183452] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5986), 5, + ACTIONS(6175), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [184031] = 2, - ACTIONS(2007), 1, + [183463] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6074), 5, + ACTIONS(5967), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [184042] = 2, - ACTIONS(2007), 1, + [183474] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5842), 5, + ACTIONS(6181), 5, sym__concat, anon_sym_LF, anon_sym_PIPE, anon_sym_RPAREN, anon_sym_in, - [184053] = 4, - ACTIONS(2007), 1, + [183485] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9468), 1, + ACTIONS(9403), 1, anon_sym_in, - STATE(3272), 1, + STATE(3190), 1, sym__terminator, - ACTIONS(9466), 3, + ACTIONS(9401), 3, anon_sym_LF, anon_sym_SEMI, anon_sym_AMP, - [184068] = 2, - ACTIONS(2007), 1, + [183500] = 5, + ACTIONS(1167), 1, sym_comment, - ACTIONS(5998), 5, - sym__concat, - anon_sym_LF, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_in, - [184079] = 4, - ACTIONS(2007), 1, + ACTIONS(9407), 1, + anon_sym_elif, + STATE(3358), 1, + aux_sym_if_statement_repeat1, + STATE(3382), 1, + sym_elif_clause, + ACTIONS(9405), 2, + anon_sym_fi, + anon_sym_else, + [183517] = 4, + ACTIONS(1007), 1, + sym_heredoc_body, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9470), 1, + ACTIONS(9410), 1, + sym_heredoc_end, + STATE(322), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + [183531] = 4, + ACTIONS(1060), 1, + sym_heredoc_body, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9412), 1, + sym_heredoc_end, + STATE(325), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + [183545] = 4, + ACTIONS(1066), 1, + sym_heredoc_body, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9414), 1, + sym_heredoc_end, + STATE(326), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + [183559] = 4, + ACTIONS(972), 1, + sym_heredoc_body, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9416), 1, + sym_heredoc_end, + STATE(314), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + [183573] = 4, + ACTIONS(1001), 1, + sym_heredoc_body, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9418), 1, + sym_heredoc_end, + STATE(320), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + [183587] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9420), 1, anon_sym_esac, - ACTIONS(9472), 1, + ACTIONS(9422), 1, anon_sym_SEMI_SEMI, - ACTIONS(9474), 2, + ACTIONS(9424), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [184093] = 4, - ACTIONS(2007), 1, + [183601] = 4, + ACTIONS(956), 1, + sym_heredoc_body, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9476), 1, + ACTIONS(9426), 1, + sym_heredoc_end, + STATE(311), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + [183615] = 4, + ACTIONS(940), 1, + sym_heredoc_body, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9428), 1, + sym_heredoc_end, + STATE(309), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + [183629] = 4, + ACTIONS(1054), 1, + sym_heredoc_body, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9430), 1, + sym_heredoc_end, + STATE(324), 2, + sym__heredoc, + aux_sym__statement_end_repeat1, + [183643] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9432), 1, anon_sym_esac, - ACTIONS(9478), 1, + ACTIONS(9434), 1, anon_sym_SEMI_SEMI, - ACTIONS(9480), 2, + ACTIONS(9436), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [184107] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9482), 1, - anon_sym_LBRACK, - ACTIONS(9484), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [184118] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9486), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [184131] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9488), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [184144] = 4, + [183657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9490), 1, + ACTIONS(9438), 1, sym_variable_name, - ACTIONS(9492), 1, + ACTIONS(9440), 1, anon_sym_DQUOTE, - ACTIONS(9494), 1, + ACTIONS(9442), 1, sym_special_variable, - [184157] = 4, + [183670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9496), 1, + ACTIONS(9444), 1, sym_variable_name, - ACTIONS(9498), 1, + ACTIONS(9446), 1, anon_sym_DQUOTE, - ACTIONS(9500), 1, + ACTIONS(9448), 1, sym_special_variable, - [184170] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9502), 1, - anon_sym_LBRACK, - ACTIONS(9504), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [184181] = 4, - ACTIONS(934), 1, - sym__backtick_close, - ACTIONS(2007), 1, + [183683] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9506), 1, - anon_sym_LF, - STATE(3436), 1, - aux_sym_program_repeat1, - [184194] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9508), 1, - anon_sym_PIPE, - ACTIONS(9510), 1, - anon_sym_RPAREN, - STATE(3458), 1, - aux_sym__case_patterns_repeat1, - [184207] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9512), 1, + ACTIONS(9450), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184220] = 4, - ACTIONS(2007), 1, + [183696] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9514), 1, + ACTIONS(9452), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184233] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9516), 1, - anon_sym_LBRACK, - ACTIONS(9518), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [184244] = 3, - ACTIONS(2007), 1, + [183709] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9520), 1, - anon_sym_LBRACK, - ACTIONS(9522), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [184255] = 4, - ACTIONS(2007), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9454), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [183722] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9524), 1, + ACTIONS(9456), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184268] = 4, + [183735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9526), 1, + ACTIONS(9458), 1, sym_variable_name, - ACTIONS(9528), 1, + ACTIONS(9460), 1, anon_sym_DQUOTE, - ACTIONS(9530), 1, + ACTIONS(9462), 1, sym_special_variable, - [184281] = 4, + [183748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9532), 1, + ACTIONS(9464), 1, sym_variable_name, - ACTIONS(9534), 1, + ACTIONS(9466), 1, anon_sym_DQUOTE, - ACTIONS(9536), 1, + ACTIONS(9468), 1, sym_special_variable, - [184294] = 4, - ACTIONS(2007), 1, + [183761] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9538), 1, + ACTIONS(9470), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184307] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9540), 1, - sym_variable_name, - ACTIONS(9542), 1, - anon_sym_DQUOTE, - ACTIONS(9544), 1, - sym_special_variable, - [184320] = 4, - ACTIONS(2007), 1, + [183774] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9546), 1, + ACTIONS(9472), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184333] = 4, - ACTIONS(2007), 1, + [183787] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(9474), 3, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [183796] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9548), 1, + ACTIONS(9476), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184346] = 4, - ACTIONS(2007), 1, + [183809] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9550), 1, + ACTIONS(9478), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184359] = 4, - ACTIONS(2007), 1, + [183822] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(9480), 3, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + [183831] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9552), 1, + ACTIONS(9482), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184372] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9554), 1, - anon_sym_LF, - ACTIONS(9556), 1, - anon_sym_in, - STATE(3439), 1, - aux_sym_program_repeat1, - [184385] = 4, - ACTIONS(956), 1, - sym__backtick_close, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9558), 1, - anon_sym_LF, - STATE(3436), 1, - aux_sym_program_repeat1, - [184398] = 4, - ACTIONS(2007), 1, + [183844] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9561), 1, + ACTIONS(9484), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184411] = 4, - ACTIONS(2007), 1, + [183857] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9563), 1, + ACTIONS(9486), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184424] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8908), 1, - anon_sym_LF, - ACTIONS(9565), 1, - anon_sym_in, - STATE(2925), 1, - aux_sym_program_repeat1, - [184437] = 4, + [183870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9567), 1, + ACTIONS(9488), 1, sym_variable_name, - ACTIONS(9569), 1, + ACTIONS(9490), 1, anon_sym_DQUOTE, - ACTIONS(9571), 1, + ACTIONS(9492), 1, sym_special_variable, - [184450] = 3, - ACTIONS(2007), 1, + [183883] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9573), 1, + ACTIONS(9494), 1, anon_sym_LBRACK, - ACTIONS(9575), 2, + ACTIONS(9496), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [184461] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9577), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [184474] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9579), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [184487] = 4, + [183894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9581), 1, + ACTIONS(9498), 1, sym_variable_name, - ACTIONS(9583), 1, + ACTIONS(9500), 1, anon_sym_DQUOTE, - ACTIONS(9585), 1, + ACTIONS(9502), 1, sym_special_variable, - [184500] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9587), 1, - anon_sym_LBRACK, - ACTIONS(9589), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [184511] = 4, - ACTIONS(944), 1, - sym__backtick_close, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9506), 1, - anon_sym_LF, - STATE(3436), 1, - aux_sym_program_repeat1, - [184524] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9591), 1, - anon_sym_LBRACK, - ACTIONS(9593), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [184535] = 4, + [183907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9595), 1, + ACTIONS(9504), 1, sym_variable_name, - ACTIONS(9597), 1, + ACTIONS(9506), 1, anon_sym_DQUOTE, - ACTIONS(9599), 1, + ACTIONS(9508), 1, sym_special_variable, - [184548] = 4, - ACTIONS(2007), 1, + [183920] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9601), 1, + ACTIONS(9510), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184561] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9603), 1, - sym_variable_name, - ACTIONS(9605), 1, - anon_sym_DQUOTE, - ACTIONS(9607), 1, - sym_special_variable, - [184574] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9609), 1, - anon_sym_LF, - ACTIONS(9611), 1, - anon_sym_in, - STATE(3454), 1, - aux_sym_program_repeat1, - [184587] = 4, - ACTIONS(2007), 1, + [183933] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9613), 1, + ACTIONS(9512), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184600] = 4, + [183946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9615), 1, + ACTIONS(9514), 1, sym_variable_name, - ACTIONS(9617), 1, + ACTIONS(9516), 1, anon_sym_DQUOTE, - ACTIONS(9619), 1, + ACTIONS(9518), 1, sym_special_variable, - [184613] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8908), 1, - anon_sym_LF, - ACTIONS(9621), 1, - anon_sym_in, - STATE(2925), 1, - aux_sym_program_repeat1, - [184626] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9623), 3, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [184635] = 4, - ACTIONS(2007), 1, + [183959] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9625), 1, + ACTIONS(9520), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184648] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9627), 1, - anon_sym_LF, - ACTIONS(9629), 1, - anon_sym_in, - STATE(3459), 1, - aux_sym_program_repeat1, - [184661] = 4, - ACTIONS(2007), 1, + [183972] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9508), 1, + ACTIONS(9522), 1, anon_sym_PIPE, - ACTIONS(9631), 1, + ACTIONS(9524), 1, anon_sym_RPAREN, - STATE(3530), 1, + STATE(3431), 1, aux_sym__case_patterns_repeat1, - [184674] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8908), 1, - anon_sym_LF, - ACTIONS(9633), 1, - anon_sym_in, - STATE(2925), 1, - aux_sym_program_repeat1, - [184687] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9635), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [184700] = 4, + [183985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9637), 1, + ACTIONS(9526), 1, sym_variable_name, - ACTIONS(9639), 1, + ACTIONS(9528), 1, anon_sym_DQUOTE, - ACTIONS(9641), 1, + ACTIONS(9530), 1, sym_special_variable, - [184713] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9643), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [184726] = 4, - ACTIONS(944), 1, - anon_sym_done, - ACTIONS(2007), 1, + [183998] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9645), 1, - anon_sym_LF, - STATE(3499), 1, - aux_sym_program_repeat1, - [184739] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9647), 1, + ACTIONS(9532), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184752] = 4, - ACTIONS(2007), 1, + [184011] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9649), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [184765] = 4, - ACTIONS(2007), 1, + ACTIONS(9534), 1, + sym_variable_name, + ACTIONS(9536), 1, + anon_sym_DQUOTE, + ACTIONS(9538), 1, + sym_special_variable, + [184024] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9651), 1, + ACTIONS(9540), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184778] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9653), 3, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - [184787] = 3, - ACTIONS(2007), 1, + [184037] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9655), 1, + ACTIONS(9542), 1, anon_sym_LBRACK, - ACTIONS(9657), 2, + ACTIONS(9544), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [184798] = 4, - ACTIONS(2007), 1, + [184048] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9659), 1, + ACTIONS(9546), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184811] = 4, - ACTIONS(2007), 1, + [184061] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9661), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [184824] = 4, - ACTIONS(2007), 1, + ACTIONS(9548), 1, + anon_sym_LF, + ACTIONS(9550), 1, + anon_sym_in, + STATE(3410), 1, + aux_sym_program_repeat1, + [184074] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9663), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [184837] = 4, + ACTIONS(9552), 1, + sym_variable_name, + ACTIONS(9554), 1, + anon_sym_DQUOTE, + ACTIONS(9556), 1, + sym_special_variable, + [184087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9665), 1, + ACTIONS(9558), 1, sym_variable_name, - ACTIONS(9667), 1, + ACTIONS(9560), 1, anon_sym_DQUOTE, - ACTIONS(9669), 1, + ACTIONS(9562), 1, sym_special_variable, - [184850] = 4, - ACTIONS(2007), 1, + [184100] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9564), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [184113] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9566), 1, + anon_sym_LBRACK, + ACTIONS(9568), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [184124] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9671), 1, + ACTIONS(9570), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184863] = 4, + [184137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9673), 1, + ACTIONS(9572), 1, sym_variable_name, - ACTIONS(9675), 1, + ACTIONS(9574), 1, anon_sym_DQUOTE, - ACTIONS(9677), 1, + ACTIONS(9576), 1, sym_special_variable, - [184876] = 4, - ACTIONS(2007), 1, + [184150] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9679), 1, + ACTIONS(9578), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184889] = 4, - ACTIONS(2007), 1, + [184163] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9681), 1, + ACTIONS(9580), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184902] = 4, - ACTIONS(2007), 1, + [184176] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(9271), 1, + anon_sym_LF, + ACTIONS(9582), 1, + anon_sym_in, + STATE(3330), 1, + aux_sym_program_repeat1, + [184189] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9683), 1, + ACTIONS(9584), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184915] = 4, - ACTIONS(2007), 1, + [184202] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(9586), 1, + anon_sym_LF, + ACTIONS(9588), 1, + anon_sym_in, + STATE(3414), 1, + aux_sym_program_repeat1, + [184215] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9685), 1, + ACTIONS(9590), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184928] = 4, - ACTIONS(2007), 1, + [184228] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(9271), 1, + anon_sym_LF, + ACTIONS(9592), 1, + anon_sym_in, + STATE(3330), 1, + aux_sym_program_repeat1, + [184241] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9687), 1, + ACTIONS(9594), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184941] = 4, - ACTIONS(2007), 1, + [184254] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9689), 1, + ACTIONS(9596), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184954] = 4, + [184267] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9598), 1, + anon_sym_LBRACK, + ACTIONS(9600), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [184278] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9691), 1, + ACTIONS(9602), 1, sym_variable_name, - ACTIONS(9693), 1, + ACTIONS(9604), 1, anon_sym_DQUOTE, - ACTIONS(9695), 1, + ACTIONS(9606), 1, sym_special_variable, - [184967] = 4, - ACTIONS(2007), 1, + [184291] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(9608), 1, + anon_sym_LF, + ACTIONS(9610), 1, + anon_sym_in, + STATE(3421), 1, + aux_sym_program_repeat1, + [184304] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9697), 1, + ACTIONS(9612), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184980] = 4, - ACTIONS(2007), 1, + [184317] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(9271), 1, + anon_sym_LF, + ACTIONS(9614), 1, + anon_sym_in, + STATE(3330), 1, + aux_sym_program_repeat1, + [184330] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9616), 1, + sym_variable_name, + ACTIONS(9618), 1, + anon_sym_DQUOTE, + ACTIONS(9620), 1, + sym_special_variable, + [184343] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9699), 1, + ACTIONS(9622), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [184993] = 4, - ACTIONS(2007), 1, + [184356] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(9624), 1, anon_sym_LF, - ACTIONS(9701), 1, + ACTIONS(9626), 1, anon_sym_in, - STATE(2925), 1, + STATE(3425), 1, aux_sym_program_repeat1, - [185006] = 4, - ACTIONS(2007), 1, + [184369] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9271), 1, + anon_sym_LF, + ACTIONS(9628), 1, + anon_sym_in, + STATE(3330), 1, + aux_sym_program_repeat1, + [184382] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7685), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9630), 1, anon_sym_RBRACE, - ACTIONS(9703), 1, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [184395] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, anon_sym_COMMA, - STATE(3485), 1, + ACTIONS(9632), 1, + anon_sym_RBRACE, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185019] = 4, - ACTIONS(2007), 1, + [184408] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9706), 1, + ACTIONS(9634), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185032] = 4, - ACTIONS(2007), 1, + [184421] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9708), 1, + ACTIONS(9636), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185045] = 3, - ACTIONS(2007), 1, + [184434] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9710), 1, - anon_sym_LBRACK, - ACTIONS(9712), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [185056] = 3, - ACTIONS(2007), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9638), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [184447] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9714), 1, + ACTIONS(9522), 1, + anon_sym_PIPE, + ACTIONS(9640), 1, + anon_sym_RPAREN, + STATE(3477), 1, + aux_sym__case_patterns_repeat1, + [184460] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9642), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [184473] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9644), 1, anon_sym_LBRACK, - ACTIONS(9716), 2, + ACTIONS(9646), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [185067] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9718), 1, - sym_variable_name, - ACTIONS(9720), 1, - anon_sym_DQUOTE, - ACTIONS(9722), 1, - sym_special_variable, - [185080] = 4, + [184484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9724), 1, + ACTIONS(9648), 1, sym_variable_name, - ACTIONS(9726), 1, + ACTIONS(9650), 1, anon_sym_DQUOTE, - ACTIONS(9728), 1, + ACTIONS(9652), 1, sym_special_variable, - [185093] = 4, + [184497] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9730), 1, + ACTIONS(9654), 1, sym_variable_name, - ACTIONS(9732), 1, + ACTIONS(9656), 1, anon_sym_DQUOTE, - ACTIONS(9734), 1, + ACTIONS(9658), 1, sym_special_variable, - [185106] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9736), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [185119] = 3, - ACTIONS(2007), 1, + [184510] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9738), 1, + ACTIONS(9660), 1, anon_sym_LBRACK, - ACTIONS(9740), 2, + ACTIONS(9662), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [185130] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9742), 1, - anon_sym_LF, - ACTIONS(9744), 1, - anon_sym_in, - STATE(3484), 1, - aux_sym_program_repeat1, - [185143] = 4, + [184521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9746), 1, + ACTIONS(9664), 1, sym_variable_name, - ACTIONS(9748), 1, + ACTIONS(9666), 1, anon_sym_DQUOTE, - ACTIONS(9750), 1, + ACTIONS(9668), 1, sym_special_variable, - [185156] = 4, + [184534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9752), 1, + ACTIONS(9670), 1, sym_variable_name, - ACTIONS(9754), 1, + ACTIONS(9672), 1, anon_sym_DQUOTE, - ACTIONS(9756), 1, + ACTIONS(9674), 1, sym_special_variable, - [185169] = 4, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9758), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [185182] = 4, - ACTIONS(956), 1, - anon_sym_done, - ACTIONS(2007), 1, + [184547] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9760), 1, - anon_sym_LF, - STATE(3499), 1, - aux_sym_program_repeat1, - [185195] = 3, - ACTIONS(2007), 1, + ACTIONS(9434), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9436), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [184558] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9763), 1, + ACTIONS(9676), 1, anon_sym_LBRACK, - ACTIONS(9765), 2, + ACTIONS(9678), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [185206] = 4, - ACTIONS(934), 1, - anon_sym_done, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9645), 1, - anon_sym_LF, - STATE(3499), 1, - aux_sym_program_repeat1, - [185219] = 4, - ACTIONS(952), 1, - anon_sym_done, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9645), 1, - anon_sym_LF, - STATE(3499), 1, - aux_sym_program_repeat1, - [185232] = 4, - ACTIONS(2007), 1, + [184569] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9767), 1, + ACTIONS(9680), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185245] = 4, - ACTIONS(952), 1, - sym__backtick_close, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9506), 1, - anon_sym_LF, - STATE(3436), 1, - aux_sym_program_repeat1, - [185258] = 4, - ACTIONS(2007), 1, + [184582] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9769), 1, + ACTIONS(9682), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185271] = 4, - ACTIONS(2007), 1, + [184595] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9771), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [185284] = 3, - ACTIONS(2007), 1, + ACTIONS(9684), 1, + sym_variable_name, + ACTIONS(9686), 1, + anon_sym_DQUOTE, + ACTIONS(9688), 1, + sym_special_variable, + [184608] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9773), 1, + ACTIONS(9690), 1, anon_sym_LBRACK, - ACTIONS(9775), 2, + ACTIONS(9692), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [185295] = 4, - ACTIONS(2007), 1, + [184619] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9777), 1, + ACTIONS(9694), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185308] = 4, - ACTIONS(2007), 1, + [184632] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9779), 1, + ACTIONS(9696), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185321] = 4, - ACTIONS(2007), 1, + [184645] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9781), 1, + ACTIONS(9698), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185334] = 4, + [184658] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9700), 1, + anon_sym_LBRACK, + ACTIONS(9702), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [184669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9783), 1, + ACTIONS(9704), 1, sym_variable_name, - ACTIONS(9785), 1, + ACTIONS(9706), 1, anon_sym_DQUOTE, - ACTIONS(9787), 1, + ACTIONS(9708), 1, sym_special_variable, - [185347] = 4, + [184682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9789), 1, + ACTIONS(9710), 1, sym_variable_name, - ACTIONS(9791), 1, + ACTIONS(9712), 1, anon_sym_DQUOTE, - ACTIONS(9793), 1, + ACTIONS(9714), 1, sym_special_variable, - [185360] = 4, + [184695] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9716), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [184708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9795), 1, + ACTIONS(9718), 1, sym_variable_name, - ACTIONS(9797), 1, + ACTIONS(9720), 1, anon_sym_DQUOTE, - ACTIONS(9799), 1, + ACTIONS(9722), 1, sym_special_variable, - [185373] = 4, - ACTIONS(2007), 1, + [184721] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9801), 1, + ACTIONS(9724), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185386] = 4, - ACTIONS(2007), 1, + [184734] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9803), 1, + ACTIONS(9726), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185399] = 4, - ACTIONS(3), 1, + [184747] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9805), 1, - sym_variable_name, - ACTIONS(9807), 1, - anon_sym_DQUOTE, - ACTIONS(9809), 1, - sym_special_variable, - [185412] = 4, - ACTIONS(3), 1, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9728), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [184760] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9811), 1, - sym_variable_name, - ACTIONS(9813), 1, - anon_sym_DQUOTE, - ACTIONS(9815), 1, - sym_special_variable, - [185425] = 4, + ACTIONS(9730), 1, + anon_sym_LBRACK, + ACTIONS(9732), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [184771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9817), 1, + ACTIONS(9734), 1, sym_variable_name, - ACTIONS(9819), 1, + ACTIONS(9736), 1, anon_sym_DQUOTE, - ACTIONS(9821), 1, + ACTIONS(9738), 1, sym_special_variable, - [185438] = 4, - ACTIONS(2007), 1, + [184784] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9823), 1, + ACTIONS(9740), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185451] = 4, - ACTIONS(2007), 1, + [184797] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9825), 1, + ACTIONS(9742), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185464] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9472), 1, - anon_sym_SEMI_SEMI, - ACTIONS(9474), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [185475] = 3, - ACTIONS(2007), 1, + [184810] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9827), 1, + ACTIONS(9744), 1, anon_sym_LBRACK, - ACTIONS(9829), 2, + ACTIONS(9746), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [185486] = 3, - ACTIONS(2007), 1, + [184821] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9831), 1, - anon_sym_LBRACK, - ACTIONS(9833), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [185497] = 4, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9748), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [184834] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9835), 1, + ACTIONS(9750), 1, sym_variable_name, - ACTIONS(9837), 1, + ACTIONS(9752), 1, anon_sym_DQUOTE, - ACTIONS(9839), 1, + ACTIONS(9754), 1, sym_special_variable, - [185510] = 4, + [184847] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9756), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [184860] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7737), 1, + anon_sym_RBRACE, + ACTIONS(9758), 1, + anon_sym_COMMA, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [184873] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9761), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [184886] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9763), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [184899] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9765), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [184912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9841), 1, + ACTIONS(9767), 1, sym_variable_name, - ACTIONS(9843), 1, + ACTIONS(9769), 1, anon_sym_DQUOTE, - ACTIONS(9845), 1, + ACTIONS(9771), 1, sym_special_variable, - [185523] = 4, + [184925] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9773), 1, + anon_sym_LBRACK, + ACTIONS(9775), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [184936] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9777), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [184949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9847), 1, + ACTIONS(9779), 1, sym_variable_name, - ACTIONS(9849), 1, + ACTIONS(9781), 1, anon_sym_DQUOTE, - ACTIONS(9851), 1, + ACTIONS(9783), 1, sym_special_variable, - [185536] = 4, - ACTIONS(2007), 1, + [184962] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9853), 1, + ACTIONS(9785), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185549] = 4, + [184975] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9787), 1, + anon_sym_LBRACK, + ACTIONS(9789), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [184986] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9855), 1, + ACTIONS(9791), 1, sym_variable_name, - ACTIONS(9857), 1, + ACTIONS(9793), 1, anon_sym_DQUOTE, - ACTIONS(9859), 1, + ACTIONS(9795), 1, sym_special_variable, - [185562] = 4, - ACTIONS(2007), 1, + [184999] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9861), 1, + ACTIONS(9797), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185575] = 4, - ACTIONS(2007), 1, + [185012] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9799), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [185025] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9863), 1, + ACTIONS(9801), 1, anon_sym_PIPE, - ACTIONS(9866), 1, + ACTIONS(9804), 1, anon_sym_RPAREN, - STATE(3530), 1, + STATE(3477), 1, aux_sym__case_patterns_repeat1, - [185588] = 4, - ACTIONS(2007), 1, + [185038] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9868), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [185601] = 4, - ACTIONS(2007), 1, + ACTIONS(9806), 1, + anon_sym_LBRACK, + ACTIONS(9808), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [185049] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9870), 1, + ACTIONS(9810), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185614] = 4, - ACTIONS(2007), 1, + [185062] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9872), 1, + ACTIONS(9812), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185627] = 4, - ACTIONS(2007), 1, + [185075] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9874), 1, + ACTIONS(9814), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185640] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9876), 1, - sym_variable_name, - ACTIONS(9878), 1, - anon_sym_DQUOTE, - ACTIONS(9880), 1, - sym_special_variable, - [185653] = 4, - ACTIONS(2007), 1, + [185088] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9882), 1, + ACTIONS(9816), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185666] = 3, - ACTIONS(2007), 1, + [185101] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9478), 1, - anon_sym_SEMI_SEMI, - ACTIONS(9480), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [185677] = 4, - ACTIONS(2007), 1, + ACTIONS(9818), 1, + anon_sym_LBRACK, + ACTIONS(9820), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [185112] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9884), 1, + ACTIONS(9822), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185690] = 4, + [185125] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9886), 1, + ACTIONS(9824), 1, sym_variable_name, - ACTIONS(9888), 1, + ACTIONS(9826), 1, anon_sym_DQUOTE, - ACTIONS(9890), 1, + ACTIONS(9828), 1, sym_special_variable, - [185703] = 4, + [185138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9892), 1, + ACTIONS(9830), 1, sym_variable_name, - ACTIONS(9894), 1, + ACTIONS(9832), 1, anon_sym_DQUOTE, - ACTIONS(9896), 1, + ACTIONS(9834), 1, sym_special_variable, - [185716] = 4, + [185151] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9836), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [185164] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9838), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [185177] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, + anon_sym_COMMA, + ACTIONS(9840), 1, + anon_sym_RBRACE, + STATE(3464), 1, + aux_sym_brace_expression_repeat1, + [185190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9898), 1, + ACTIONS(9842), 1, sym_variable_name, - ACTIONS(9900), 1, + ACTIONS(9844), 1, anon_sym_DQUOTE, - ACTIONS(9902), 1, + ACTIONS(9846), 1, sym_special_variable, - [185729] = 4, - ACTIONS(2007), 1, + [185203] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(9422), 1, + anon_sym_SEMI_SEMI, + ACTIONS(9424), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [185214] = 4, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9904), 1, + ACTIONS(9848), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185742] = 4, - ACTIONS(2007), 1, + [185227] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9906), 1, + ACTIONS(9850), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185755] = 3, - ACTIONS(2007), 1, + [185240] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9908), 1, + ACTIONS(9852), 1, anon_sym_LBRACK, - ACTIONS(9910), 2, + ACTIONS(9854), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [185766] = 4, - ACTIONS(2007), 1, + [185251] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9912), 1, + ACTIONS(9856), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185779] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9914), 1, - anon_sym_LBRACK, - ACTIONS(9916), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [185790] = 4, - ACTIONS(2007), 1, + [185264] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9918), 1, + ACTIONS(9858), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185803] = 4, + [185277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9920), 1, + ACTIONS(9860), 1, sym_variable_name, - ACTIONS(9922), 1, + ACTIONS(9862), 1, anon_sym_DQUOTE, - ACTIONS(9924), 1, + ACTIONS(9864), 1, sym_special_variable, - [185816] = 3, - ACTIONS(2007), 1, + [185290] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9926), 1, + ACTIONS(9866), 1, anon_sym_LBRACK, - ACTIONS(9928), 2, + ACTIONS(9868), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [185827] = 4, - ACTIONS(2007), 1, + [185301] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9930), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [185840] = 4, - ACTIONS(2007), 1, + ACTIONS(9870), 1, + sym_variable_name, + ACTIONS(9872), 1, + anon_sym_DQUOTE, + ACTIONS(9874), 1, + sym_special_variable, + [185314] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9932), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [185853] = 4, + ACTIONS(9876), 1, + sym_variable_name, + ACTIONS(9878), 1, + anon_sym_DQUOTE, + ACTIONS(9880), 1, + sym_special_variable, + [185327] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9934), 1, + ACTIONS(9882), 1, sym_variable_name, - ACTIONS(9936), 1, + ACTIONS(9884), 1, anon_sym_DQUOTE, - ACTIONS(9938), 1, + ACTIONS(9886), 1, sym_special_variable, - [185866] = 4, - ACTIONS(2007), 1, + [185340] = 4, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(7733), 1, anon_sym_COMMA, - ACTIONS(9940), 1, + ACTIONS(9888), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3464), 1, aux_sym_brace_expression_repeat1, - [185879] = 4, - ACTIONS(2007), 1, + [185353] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7657), 1, - anon_sym_COMMA, - ACTIONS(9942), 1, - anon_sym_RBRACE, - STATE(3485), 1, - aux_sym_brace_expression_repeat1, - [185892] = 3, - ACTIONS(2007), 1, + ACTIONS(9890), 1, + anon_sym_LBRACK, + ACTIONS(9892), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [185364] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(9382), 1, - anon_sym_do, - STATE(2585), 1, - sym_do_group, - [185902] = 3, - ACTIONS(2007), 1, + ACTIONS(9894), 1, + sym_variable_name, + ACTIONS(9896), 1, + anon_sym_DQUOTE, + ACTIONS(9898), 1, + sym_special_variable, + [185377] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9900), 1, + anon_sym_LBRACK, + ACTIONS(9902), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [185388] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8890), 1, + ACTIONS(6437), 1, sym__concat, - STATE(2988), 1, + STATE(1201), 1, aux_sym_concatenation_repeat1, - [185912] = 3, - ACTIONS(2007), 1, + [185398] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9904), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [185406] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9906), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [185414] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6320), 1, + ACTIONS(8191), 1, sym__concat, - STATE(1186), 1, + STATE(2669), 1, aux_sym_concatenation_repeat1, - [185922] = 3, - ACTIONS(2007), 1, + [185424] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6950), 1, + ACTIONS(6596), 1, sym__concat, - STATE(1733), 1, + STATE(1277), 1, aux_sym_concatenation_repeat1, - [185932] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9944), 1, - sym_word, - ACTIONS(9946), 1, - anon_sym_LPAREN_LPAREN, - [185942] = 3, - ACTIONS(2007), 1, + [185434] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6680), 1, + ACTIONS(6724), 1, sym__concat, - STATE(1430), 1, + STATE(1440), 1, aux_sym_concatenation_repeat1, - [185952] = 3, - ACTIONS(2007), 1, + [185444] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9211), 1, + ACTIONS(6507), 1, sym__concat, - STATE(3137), 1, + STATE(1236), 1, aux_sym_concatenation_repeat1, - [185962] = 2, - ACTIONS(2007), 1, + [185454] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9948), 2, + ACTIONS(9908), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [185970] = 2, - ACTIONS(2007), 1, + [185462] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9950), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [185978] = 3, - ACTIONS(2007), 1, + ACTIONS(9910), 1, + sym_word, + ACTIONS(9912), 1, + anon_sym_LPAREN_LPAREN, + [185472] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8149), 1, + ACTIONS(6841), 1, sym__concat, - STATE(2642), 1, + STATE(1587), 1, aux_sym_concatenation_repeat1, - [185988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9952), 1, - sym_variable_name, - ACTIONS(9954), 1, - sym_special_variable, - [185998] = 3, - ACTIONS(2007), 1, + [185482] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_do, - STATE(2100), 1, - sym_do_group, - [186008] = 2, - ACTIONS(2007), 1, + ACTIONS(8991), 1, + sym__concat, + STATE(3039), 1, + aux_sym_concatenation_repeat1, + [185492] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9956), 2, + ACTIONS(9914), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [186016] = 3, - ACTIONS(2007), 1, + [185500] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7974), 1, - sym__concat, - STATE(2418), 1, - aux_sym_concatenation_repeat1, - [186026] = 3, - ACTIONS(2007), 1, + ACTIONS(9319), 1, + anon_sym_do, + STATE(2553), 1, + sym_do_group, + [185510] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6695), 1, - sym__concat, - STATE(1474), 1, - aux_sym_concatenation_repeat1, - [186036] = 3, - ACTIONS(2007), 1, + ACTIONS(9319), 1, + anon_sym_do, + STATE(2554), 1, + sym_do_group, + [185520] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6529), 1, + ACTIONS(9365), 1, sym__concat, - STATE(1282), 1, + STATE(3320), 1, aux_sym_concatenation_repeat1, - [186046] = 2, - ACTIONS(2007), 1, + [185530] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9866), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [186054] = 3, - ACTIONS(2007), 1, + ACTIONS(9916), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [185538] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9422), 1, + ACTIONS(6621), 1, sym__concat, - STATE(3371), 1, + STATE(1296), 1, aux_sym_concatenation_repeat1, - [186064] = 3, - ACTIONS(2007), 1, + [185548] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8750), 1, + ACTIONS(7621), 1, sym__concat, - STATE(2900), 1, + STATE(2053), 1, aux_sym_concatenation_repeat1, - [186074] = 3, - ACTIONS(2007), 1, + [185558] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6278), 1, + ACTIONS(9918), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [185566] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7901), 1, sym__concat, - STATE(1179), 1, + STATE(2345), 1, aux_sym_concatenation_repeat1, - [186084] = 3, - ACTIONS(2007), 1, + [185576] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6616), 1, + ACTIONS(6480), 1, sym__concat, - STATE(1374), 1, + STATE(1206), 1, aux_sym_concatenation_repeat1, - [186094] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9330), 1, - anon_sym_do, - STATE(2371), 1, - sym_do_group, - [186104] = 3, - ACTIONS(2007), 1, + [185586] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9330), 1, + ACTIONS(9269), 1, anon_sym_do, - STATE(2374), 1, + STATE(2466), 1, sym_do_group, - [186114] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(7573), 1, - sym__concat, - STATE(2090), 1, - aux_sym_concatenation_repeat1, - [186124] = 3, - ACTIONS(2007), 1, + [185596] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8158), 1, - sym__concat, - STATE(2645), 1, - aux_sym_concatenation_repeat1, - [186134] = 3, - ACTIONS(2007), 1, + ACTIONS(9910), 1, + sym_word, + ACTIONS(9920), 1, + anon_sym_LPAREN_LPAREN, + [185606] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6817), 1, + ACTIONS(6739), 1, sym__concat, - STATE(1631), 1, + STATE(1462), 1, aux_sym_concatenation_repeat1, - [186144] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9356), 1, - anon_sym_do, - STATE(2489), 1, - sym_do_group, - [186154] = 3, - ACTIONS(2007), 1, + [185616] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9356), 1, - anon_sym_do, - STATE(2490), 1, - sym_do_group, - [186164] = 2, - ACTIONS(2007), 1, + ACTIONS(9804), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [185624] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9958), 2, + ACTIONS(9922), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [186172] = 2, - ACTIONS(2007), 1, + [185632] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9960), 2, + ACTIONS(9924), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [186180] = 3, - ACTIONS(2007), 1, + [185640] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6233), 1, + ACTIONS(6765), 1, sym__concat, - STATE(1168), 1, + STATE(1514), 1, aux_sym_concatenation_repeat1, - [186190] = 3, - ACTIONS(2007), 1, + [185650] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6574), 1, + ACTIONS(6858), 1, sym__concat, - STATE(1332), 1, + STATE(1814), 1, aux_sym_concatenation_repeat1, - [186200] = 3, - ACTIONS(2007), 1, + [185660] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6850), 1, + ACTIONS(6512), 1, sym__concat, - STATE(1686), 1, + STATE(1246), 1, aux_sym_concatenation_repeat1, - [186210] = 2, - ACTIONS(2007), 1, + [185670] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9962), 2, + ACTIONS(9926), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [186218] = 3, - ACTIONS(2007), 1, + [185678] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9382), 1, + ACTIONS(6777), 1, + sym__concat, + STATE(1536), 1, + aux_sym_concatenation_repeat1, + [185688] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9928), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [185696] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6772), 1, + sym__concat, + STATE(1524), 1, + aux_sym_concatenation_repeat1, + [185706] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6770), 1, + sym__concat, + STATE(1520), 1, + aux_sym_concatenation_repeat1, + [185716] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9269), 1, anon_sym_do, - STATE(2582), 1, + STATE(2463), 1, sym_do_group, - [186228] = 3, - ACTIONS(2007), 1, + [185726] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6470), 1, + ACTIONS(8891), 1, sym__concat, - STATE(1242), 1, + STATE(2938), 1, aux_sym_concatenation_repeat1, - [186238] = 3, - ACTIONS(2007), 1, + [185736] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7942), 1, + ACTIONS(6707), 1, sym__concat, - STATE(2389), 1, + STATE(1408), 1, aux_sym_concatenation_repeat1, - [186248] = 2, - ACTIONS(2007), 1, + [185746] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(7615), 1, + sym__concat, + STATE(2037), 1, + aux_sym_concatenation_repeat1, + [185756] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9964), 2, + ACTIONS(9930), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [186256] = 3, - ACTIONS(2007), 1, + [185764] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9966), 1, + ACTIONS(9932), 1, sym_word, - ACTIONS(9968), 1, + ACTIONS(9934), 1, anon_sym_LPAREN_LPAREN, - [186266] = 3, - ACTIONS(2007), 1, + [185774] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6246), 1, + ACTIONS(9936), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [185782] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(6502), 1, sym__concat, - STATE(1171), 1, + STATE(1219), 1, aux_sym_concatenation_repeat1, - [186276] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9338), 1, - anon_sym_do, - STATE(2084), 1, - sym_do_group, - [186286] = 2, - ACTIONS(2007), 1, + [185792] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(9970), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [186294] = 3, - ACTIONS(2007), 1, + ACTIONS(9938), 1, + sym_variable_name, + ACTIONS(9940), 1, + sym_special_variable, + [185802] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9972), 1, + ACTIONS(9942), 1, sym_word, - ACTIONS(9974), 1, + ACTIONS(9944), 1, anon_sym_LPAREN_LPAREN, - [186304] = 2, - ACTIONS(2007), 1, + [185812] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9976), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [186312] = 2, - ACTIONS(2007), 1, + ACTIONS(7566), 1, + sym__concat, + STATE(2032), 1, + aux_sym_concatenation_repeat1, + [185822] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9978), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [186320] = 3, - ACTIONS(2007), 1, + ACTIONS(9279), 1, + anon_sym_do, + STATE(2200), 1, + sym_do_group, + [185832] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6644), 1, + ACTIONS(8973), 1, sym__concat, - STATE(1390), 1, + STATE(3017), 1, aux_sym_concatenation_repeat1, - [186330] = 3, - ACTIONS(2007), 1, + [185842] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9980), 1, + ACTIONS(9946), 1, sym_word, - ACTIONS(9982), 1, + ACTIONS(9948), 1, anon_sym_LPAREN_LPAREN, - [186340] = 2, - ACTIONS(2007), 1, + [185852] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9984), 2, + ACTIONS(6722), 1, + sym__concat, + STATE(1438), 1, + aux_sym_concatenation_repeat1, + [185862] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9950), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [186348] = 2, - ACTIONS(2007), 1, + [185870] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9279), 1, + anon_sym_do, + STATE(2201), 1, + sym_do_group, + [185880] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9986), 2, + ACTIONS(9952), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [186356] = 3, - ACTIONS(2007), 1, + [185888] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9293), 1, + anon_sym_do, + STATE(1985), 1, + sym_do_group, + [185898] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6776), 1, + ACTIONS(6497), 1, sym__concat, - STATE(1620), 1, + STATE(1214), 1, aux_sym_concatenation_repeat1, - [186366] = 3, - ACTIONS(2007), 1, + [185908] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(7638), 1, + ACTIONS(6731), 1, sym__concat, - STATE(2110), 1, + STATE(1447), 1, aux_sym_concatenation_repeat1, - [186376] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9988), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [186384] = 2, - ACTIONS(2007), 1, + [185918] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9990), 2, + ACTIONS(9954), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [186392] = 3, - ACTIONS(2007), 1, + [185926] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6394), 1, + ACTIONS(8144), 1, sym__concat, - STATE(1202), 1, + STATE(2595), 1, aux_sym_concatenation_repeat1, - [186402] = 2, - ACTIONS(2007), 1, + [185936] = 3, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9293), 1, + anon_sym_do, + STATE(1932), 1, + sym_do_group, + [185946] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9992), 2, + ACTIONS(9956), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [186410] = 2, - ACTIONS(2007), 1, + [185954] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9994), 2, + ACTIONS(9958), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [186418] = 3, - ACTIONS(2007), 1, + [185962] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6855), 1, - sym__concat, - STATE(1691), 1, - aux_sym_concatenation_repeat1, - [186428] = 3, - ACTIONS(2007), 1, + ACTIONS(9960), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [185970] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(8997), 1, + ACTIONS(8136), 1, sym__concat, - STATE(3060), 1, + STATE(2591), 1, aux_sym_concatenation_repeat1, - [186438] = 2, - ACTIONS(2007), 1, + [185980] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9996), 2, + ACTIONS(9962), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [186446] = 3, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(8209), 1, - sym__concat, - STATE(2713), 1, - aux_sym_concatenation_repeat1, - [186456] = 3, - ACTIONS(2007), 1, + [185988] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6826), 1, + ACTIONS(8231), 1, sym__concat, - STATE(1639), 1, + STATE(2714), 1, aux_sym_concatenation_repeat1, - [186466] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9998), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [186474] = 3, - ACTIONS(2007), 1, + [185998] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9944), 1, + ACTIONS(9910), 1, sym_word, - ACTIONS(10000), 1, + ACTIONS(9964), 1, anon_sym_LPAREN_LPAREN, - [186484] = 3, - ACTIONS(2007), 1, + [186008] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9980), 1, + ACTIONS(9946), 1, sym_word, - ACTIONS(10002), 1, + ACTIONS(9966), 1, anon_sym_LPAREN_LPAREN, - [186494] = 3, - ACTIONS(2007), 1, + [186018] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9944), 1, + ACTIONS(9910), 1, sym_word, - ACTIONS(10004), 1, + ACTIONS(9968), 1, anon_sym_LPAREN_LPAREN, - [186504] = 3, - ACTIONS(2007), 1, + [186028] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9944), 1, + ACTIONS(9910), 1, sym_word, - ACTIONS(10006), 1, + ACTIONS(9970), 1, anon_sym_LPAREN_LPAREN, - [186514] = 3, - ACTIONS(2007), 1, + [186038] = 3, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9944), 1, + ACTIONS(7955), 1, + sym__concat, + STATE(2359), 1, + aux_sym_concatenation_repeat1, + [186048] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9972), 1, + anon_sym_LBRACE, + [186055] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9974), 1, + anon_sym_esac, + [186062] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9976), 1, + sym_heredoc_start, + [186069] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9978), 1, + sym__heredoc_start_dash, + [186076] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9980), 1, + anon_sym_RPAREN, + [186083] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9976), 1, + sym__heredoc_start_dash, + [186090] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9982), 1, + sym__backtick_close, + [186097] = 2, + ACTIONS(779), 1, + ts_builtin_sym_end, + ACTIONS(1167), 1, + sym_comment, + [186104] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9984), 1, + sym__heredoc_start_dash, + [186111] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9986), 1, + anon_sym_RPAREN, + [186118] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9988), 1, sym_word, + [186125] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9990), 1, + anon_sym_fi, + [186132] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9992), 1, + sym__backtick_close, + [186139] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9994), 1, + sym__backtick_close, + [186146] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9982), 1, + anon_sym_RPAREN, + [186153] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9996), 1, + anon_sym_then, + [186160] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9998), 1, + anon_sym_RPAREN, + [186167] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10000), 1, + sym__backtick_close, + [186174] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10002), 1, + anon_sym_RPAREN, + [186181] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10004), 1, + sym_heredoc_start, + [186188] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10006), 1, + anon_sym_esac, + [186195] = 2, + ACTIONS(1167), 1, + sym_comment, ACTIONS(10008), 1, - anon_sym_LPAREN_LPAREN, - [186524] = 3, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [186202] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(6612), 1, - sym__concat, - STATE(1371), 1, - aux_sym_concatenation_repeat1, - [186534] = 2, - ACTIONS(2007), 1, + ACTIONS(10004), 1, + sym__heredoc_start_dash, + [186209] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10010), 1, - anon_sym_LBRACE, - [186541] = 2, - ACTIONS(2007), 1, + anon_sym_fi, + [186216] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10012), 1, - sym__heredoc_start_dash, - [186548] = 2, - ACTIONS(2007), 1, + sym_heredoc_end, + [186223] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10014), 1, - sym__backtick_close, - [186555] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [186230] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10016), 1, - sym_word, - [186562] = 2, - ACTIONS(2007), 1, + anon_sym_fi, + [186237] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10018), 1, + sym_heredoc_start, + [186244] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9992), 1, anon_sym_RPAREN, - [186569] = 2, - ACTIONS(2007), 1, + [186251] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10020), 1, anon_sym_RPAREN, - [186576] = 2, - ACTIONS(2007), 1, + [186258] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10022), 1, - anon_sym_RBRACE, - [186583] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [186265] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10024), 1, anon_sym_RPAREN, - [186590] = 2, - ACTIONS(2007), 1, + [186272] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10026), 1, - anon_sym_then, - [186597] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [186279] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10028), 1, - anon_sym_RPAREN, - [186604] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [186286] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10030), 1, anon_sym_RPAREN, - [186611] = 2, - ACTIONS(2007), 1, + [186293] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10032), 1, + ACTIONS(10000), 1, anon_sym_RPAREN, - [186618] = 2, - ACTIONS(2007), 1, + [186300] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10032), 1, + anon_sym_esac, + [186307] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10034), 1, - anon_sym_RPAREN, - [186625] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [186314] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10036), 1, - anon_sym_RBRACE, - [186632] = 2, - ACTIONS(2007), 1, + anon_sym_fi, + [186321] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10038), 1, sym_heredoc_start, - [186639] = 2, - ACTIONS(2007), 1, + [186328] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10040), 1, - anon_sym_RPAREN, - [186646] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [186335] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10042), 1, - sym_heredoc_start, - [186653] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [186342] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10044), 1, anon_sym_RPAREN, - [186660] = 2, - ACTIONS(2007), 1, + [186349] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10046), 1, - ts_builtin_sym_end, - [186667] = 2, - ACTIONS(2007), 1, + ACTIONS(10024), 1, + sym__backtick_close, + [186356] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10042), 1, - sym__heredoc_start_dash, - [186674] = 2, - ACTIONS(2007), 1, + ACTIONS(10046), 1, + sym_heredoc_start, + [186363] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10048), 1, anon_sym_RPAREN, - [186681] = 2, - ACTIONS(2007), 1, + [186370] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10046), 1, + sym__heredoc_start_dash, + [186377] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10050), 1, - sym__backtick_close, - [186688] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [186384] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10052), 1, anon_sym_RPAREN, - [186695] = 2, - ACTIONS(2007), 1, + [186391] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10054), 1, - anon_sym_RPAREN, - [186702] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [186398] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10048), 1, + sym__backtick_close, + [186405] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10056), 1, - anon_sym_RPAREN, - [186709] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [186412] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10058), 1, - anon_sym_RBRACE, - [186716] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [186419] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10058), 1, + sym__heredoc_start_dash, + [186426] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10060), 1, anon_sym_RPAREN, - [186723] = 2, - ACTIONS(2007), 1, + [186433] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10014), 1, + ACTIONS(10034), 1, anon_sym_RPAREN, - [186730] = 2, - ACTIONS(2007), 1, + [186440] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10038), 1, - sym__heredoc_start_dash, - [186737] = 2, - ACTIONS(2007), 1, + ACTIONS(9998), 1, + sym__backtick_close, + [186447] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10062), 1, anon_sym_RPAREN, - [186744] = 2, - ACTIONS(2007), 1, + [186454] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10064), 1, anon_sym_RPAREN, - [186751] = 2, - ACTIONS(2007), 1, + [186461] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10066), 1, - anon_sym_RPAREN, - [186758] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [186468] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10066), 1, + sym__heredoc_start_dash, + [186475] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10068), 1, - anon_sym_RPAREN, - [186765] = 2, - ACTIONS(2007), 1, + anon_sym_RBRACE, + [186482] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10070), 1, - anon_sym_RPAREN, - [186772] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [186489] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10072), 1, - anon_sym_RBRACE, - [186779] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [186496] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10072), 1, + sym__heredoc_start_dash, + [186503] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10074), 1, sym__backtick_close, - [186786] = 2, - ACTIONS(2007), 1, + [186510] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10076), 1, - anon_sym_RPAREN, - [186793] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [186517] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10078), 1, + ACTIONS(10056), 1, sym__heredoc_start_dash, - [186800] = 2, - ACTIONS(2007), 1, + [186524] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10080), 1, - anon_sym_esac, - [186807] = 2, - ACTIONS(2007), 1, + ACTIONS(10078), 1, + sym_heredoc_end, + [186531] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10082), 1, + ACTIONS(10080), 1, anon_sym_RPAREN, - [186814] = 2, - ACTIONS(2007), 1, + [186538] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10084), 1, - sym_heredoc_start, - [186821] = 2, - ACTIONS(2007), 1, + ACTIONS(10082), 1, + anon_sym_then, + [186545] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10084), 1, - sym__heredoc_start_dash, - [186828] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10086), 1, - sym_heredoc_start, - [186835] = 2, - ACTIONS(2007), 1, + anon_sym_fi, + [186552] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10086), 1, - sym__heredoc_start_dash, - [186842] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [186559] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10088), 1, - sym__heredoc_start_dash, - [186849] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [186566] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10090), 1, - anon_sym_RPAREN, - [186856] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [186573] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10074), 1, anon_sym_RPAREN, - [186863] = 2, - ACTIONS(2007), 1, + [186580] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10090), 1, + sym__heredoc_start_dash, + [186587] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10092), 1, - anon_sym_RPAREN, - [186870] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [186594] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10094), 1, - sym__backtick_close, - [186877] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [186601] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10092), 1, + sym__heredoc_start_dash, + [186608] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10096), 1, anon_sym_RPAREN, - [186884] = 2, - ACTIONS(2007), 1, + [186615] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10098), 1, - sym_heredoc_start, - [186891] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [186622] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10098), 1, - sym__heredoc_start_dash, - [186898] = 2, - ACTIONS(2007), 1, + ACTIONS(10070), 1, + anon_sym_RPAREN, + [186629] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10100), 1, - sym__backtick_close, - [186905] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [186636] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10102), 1, - anon_sym_fi, - [186912] = 2, - ACTIONS(2007), 1, + sym_word, + [186643] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10104), 1, - sym_heredoc_start, - [186919] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [186650] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10106), 1, - anon_sym_esac, - [186926] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [186657] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10108), 1, - anon_sym_RPAREN, - [186933] = 2, - ACTIONS(2007), 1, + anon_sym_RBRACE, + [186664] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10110), 1, - anon_sym_then, - [186940] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [186671] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10112), 1, - sym_heredoc_start, - [186947] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [186678] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10114), 1, - sym_heredoc_start, - [186954] = 2, - ACTIONS(2007), 1, + ACTIONS(10086), 1, + anon_sym_RPAREN, + [186685] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10114), 1, - sym__heredoc_start_dash, - [186961] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [186692] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10116), 1, anon_sym_done, - [186968] = 2, - ACTIONS(2007), 1, + [186699] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10118), 1, - sym__backtick_close, - [186975] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [186706] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10120), 1, - sym_heredoc_start, - [186982] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [186713] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10122), 1, - anon_sym_RPAREN, - [186989] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [186720] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10124), 1, - anon_sym_fi, - [186996] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [186727] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10126), 1, - anon_sym_fi, - [187003] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10112), 1, - sym__heredoc_start_dash, - [187010] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [186734] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10128), 1, - anon_sym_fi, - [187017] = 2, - ACTIONS(2007), 1, + anon_sym_done, + [186741] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10130), 1, - anon_sym_esac, - [187024] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9944), 1, - sym_word, - [187031] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [186748] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10132), 1, - anon_sym_esac, - [187038] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [186755] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10134), 1, anon_sym_esac, - [187045] = 2, - ACTIONS(2007), 1, + [186762] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10050), 1, - anon_sym_RPAREN, - [187052] = 2, - ACTIONS(2007), 1, + ACTIONS(10132), 1, + sym__heredoc_start_dash, + [186769] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10136), 1, - sym__backtick_close, - [187059] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [186776] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10130), 1, + sym__heredoc_start_dash, + [186783] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10124), 1, + sym__heredoc_start_dash, + [186790] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10098), 1, + anon_sym_RPAREN, + [186797] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10138), 1, - sym_heredoc_start, - [187066] = 2, - ACTIONS(2007), 1, + sym_heredoc_end, + [186804] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10140), 1, - anon_sym_RPAREN, - [187073] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [186811] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10142), 1, sym_heredoc_start, - [187080] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10118), 1, - anon_sym_RPAREN, - [187087] = 2, - ACTIONS(2007), 1, + [186818] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10144), 1, - anon_sym_fi, - [187094] = 2, - ACTIONS(2007), 1, + anon_sym_RBRACE, + [186825] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10146), 1, - anon_sym_esac, - [187101] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10148), 1, - anon_sym_esac, - [187108] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [186832] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10138), 1, + ACTIONS(10146), 1, sym__heredoc_start_dash, - [187115] = 2, - ACTIONS(2007), 1, + [186839] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10148), 1, + sym__backtick_close, + [186846] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10150), 1, anon_sym_RPAREN, - [187122] = 2, - ACTIONS(2007), 1, + [186853] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10152), 1, sym_heredoc_start, - [187129] = 2, - ACTIONS(2007), 1, + [186860] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10154), 1, - anon_sym_RPAREN, - [187136] = 2, - ACTIONS(2007), 1, + anon_sym_RBRACE, + [186867] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10152), 1, + sym__heredoc_start_dash, + [186874] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10156), 1, - anon_sym_esac, - [187143] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [186881] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10158), 1, - anon_sym_RPAREN, - [187150] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [186888] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10160), 1, - anon_sym_RPAREN, - [187157] = 2, - ACTIONS(2007), 1, + anon_sym_done, + [186895] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10136), 1, + ACTIONS(10148), 1, anon_sym_RPAREN, - [187164] = 2, - ACTIONS(2007), 1, + [186902] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10126), 1, + sym__heredoc_start_dash, + [186909] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10162), 1, - anon_sym_done, - [187171] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [186916] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10164), 1, sym__backtick_close, - [187178] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10142), 1, - sym__heredoc_start_dash, - [187185] = 2, - ACTIONS(2007), 1, + [186923] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10166), 1, - anon_sym_RPAREN, - [187192] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10152), 1, - sym__heredoc_start_dash, - [187199] = 2, - ACTIONS(2007), 1, + sym_heredoc_end, + [186930] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10168), 1, - sym__backtick_close, - [187206] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [186937] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10170), 1, - sym__backtick_close, - [187213] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10172), 1, sym_heredoc_start, - [187220] = 2, - ACTIONS(2007), 1, + [186944] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10172), 1, + ACTIONS(10170), 1, sym__heredoc_start_dash, - [187227] = 2, - ACTIONS(2007), 1, + [186951] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10172), 1, + sym_heredoc_start, + [186958] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10174), 1, sym_heredoc_start, - [187234] = 2, - ACTIONS(2007), 1, + [186965] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10176), 1, - sym__backtick_close, - [187241] = 2, - ACTIONS(2007), 1, + anon_sym_fi, + [186972] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10178), 1, - anon_sym_done, - [187248] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [186979] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10180), 1, - sym_heredoc_start, - [187255] = 2, - ACTIONS(2007), 1, + sym_heredoc_end, + [186986] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10156), 1, + anon_sym_RPAREN, + [186993] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9994), 1, + anon_sym_RPAREN, + [187000] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10182), 1, - sym__backtick_close, - [187262] = 2, - ACTIONS(2007), 1, + anon_sym_done, + [187007] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10184), 1, - sym_heredoc_start, - [187269] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [187014] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10186), 1, - sym_heredoc_start, - [187276] = 2, - ACTIONS(2007), 1, + ACTIONS(10172), 1, + sym__heredoc_start_dash, + [187021] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10188), 1, + ACTIONS(10136), 1, + sym__heredoc_start_dash, + [187028] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10164), 1, anon_sym_RPAREN, - [187283] = 2, - ACTIONS(2007), 1, + [187035] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10186), 1, + anon_sym_RPAREN, + [187042] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10188), 1, + anon_sym_fi, + [187049] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10038), 1, sym__heredoc_start_dash, - [187290] = 2, - ACTIONS(2007), 1, + [187056] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10190), 1, - sym_heredoc_start, - [187297] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10192), 1, - sym_heredoc_start, - [187304] = 2, - ACTIONS(2007), 1, + anon_sym_fi, + [187063] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10192), 1, - sym__heredoc_start_dash, - [187311] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187070] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10194), 1, - sym__backtick_close, - [187318] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [187077] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10190), 1, + ACTIONS(10194), 1, sym__heredoc_start_dash, - [187325] = 2, - ACTIONS(2007), 1, + [187084] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10196), 1, - anon_sym_RPAREN, - [187332] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10198), 1, - anon_sym_RBRACE, - [187339] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10104), 1, - sym__heredoc_start_dash, - [187346] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [187091] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10174), 1, sym__heredoc_start_dash, - [187353] = 2, - ACTIONS(2007), 1, + [187098] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10120), 1, - sym__heredoc_start_dash, - [187360] = 2, - ACTIONS(2007), 1, + ACTIONS(10198), 1, + anon_sym_RPAREN, + [187105] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10164), 1, + ACTIONS(10140), 1, anon_sym_RPAREN, - [187367] = 2, - ACTIONS(2007), 1, + [187112] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10200), 1, - sym_heredoc_start, - [187374] = 2, - ACTIONS(2007), 1, + anon_sym_done, + [187119] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10202), 1, - anon_sym_esac, - [187381] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187126] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10204), 1, sym__backtick_close, - [187388] = 2, - ACTIONS(2007), 1, + [187133] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10206), 1, - anon_sym_fi, - [187395] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [187140] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10200), 1, + ACTIONS(10142), 1, sym__heredoc_start_dash, - [187402] = 2, - ACTIONS(2007), 1, + [187147] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10208), 1, - sym__backtick_close, - [187409] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10182), 1, - anon_sym_RPAREN, - [187416] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10094), 1, - anon_sym_RPAREN, - [187423] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10210), 1, - sym_heredoc_start, - [187430] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10100), 1, anon_sym_RPAREN, - [187437] = 2, - ACTIONS(2007), 1, + [187154] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10210), 1, - sym__heredoc_start_dash, - [187444] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10194), 1, anon_sym_RPAREN, - [187451] = 2, - ACTIONS(2007), 1, + [187161] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10212), 1, - sym__backtick_close, - [187458] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10176), 1, - anon_sym_RPAREN, - [187465] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [187168] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10214), 1, - anon_sym_RPAREN, - [187472] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10056), 1, - sym__backtick_close, - [187479] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10204), 1, - anon_sym_RPAREN, - [187486] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [187175] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10082), 1, - sym__backtick_close, - [187493] = 2, - ACTIONS(2007), 1, + ACTIONS(10214), 1, + sym__heredoc_start_dash, + [187182] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10216), 1, - anon_sym_then, - [187500] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [187189] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10218), 1, - sym_word, - [187507] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187196] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10220), 1, - anon_sym_RPAREN, - [187514] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [187203] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10222), 1, - anon_sym_RPAREN, - [187521] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [187210] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10224), 1, anon_sym_RPAREN, - [187528] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10212), 1, - anon_sym_RPAREN, - [187535] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10090), 1, - sym__backtick_close, - [187542] = 2, - ACTIONS(2007), 1, + [187217] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10226), 1, + anon_sym_RBRACE, + [187224] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10158), 1, anon_sym_RPAREN, - [187549] = 2, - ACTIONS(2007), 1, + [187231] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10212), 1, + sym__heredoc_start_dash, + [187238] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10228), 1, + sym_heredoc_start, + [187245] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10216), 1, anon_sym_RPAREN, - [187556] = 2, - ACTIONS(2007), 1, + [187252] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10230), 1, anon_sym_RPAREN, - [187563] = 2, - ACTIONS(2007), 1, + [187259] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10232), 1, - anon_sym_fi, - [187570] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [187266] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10234), 1, - anon_sym_fi, - [187577] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187273] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10236), 1, sym__backtick_close, - [187584] = 2, - ACTIONS(2007), 1, + [187280] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10238), 1, - sym_heredoc_start, - [187591] = 2, - ACTIONS(2007), 1, + anon_sym_RBRACE, + [187287] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10238), 1, + ACTIONS(10232), 1, sym__heredoc_start_dash, - [187598] = 2, - ACTIONS(2007), 1, + [187294] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10018), 1, + sym__heredoc_start_dash, + [187301] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10220), 1, + anon_sym_RPAREN, + [187308] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10240), 1, - anon_sym_esac, - [187605] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [187315] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10242), 1, - sym_heredoc_start, - [187612] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [187322] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10244), 1, anon_sym_fi, - [187619] = 2, - ACTIONS(783), 1, - ts_builtin_sym_end, - ACTIONS(2007), 1, - sym_comment, - [187626] = 2, - ACTIONS(2007), 1, + [187329] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10246), 1, - anon_sym_RPAREN, - [187633] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [187336] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10248), 1, - anon_sym_esac, - [187640] = 2, - ACTIONS(2007), 1, + anon_sym_fi, + [187343] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10196), 1, + sym__heredoc_start_dash, + [187350] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10250), 1, - sym__backtick_close, - [187647] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187357] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10252), 1, - anon_sym_RBRACE, - [187654] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10242), 1, - sym__heredoc_start_dash, - [187661] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [187364] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10254), 1, anon_sym_done, - [187668] = 2, - ACTIONS(2007), 1, + [187371] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10228), 1, + sym__heredoc_start_dash, + [187378] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10256), 1, sym_heredoc_start, - [187675] = 2, - ACTIONS(2007), 1, + [187385] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10256), 1, sym__heredoc_start_dash, - [187682] = 2, - ACTIONS(2007), 1, + [187392] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10258), 1, - anon_sym_done, - [187689] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [187399] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10260), 1, - anon_sym_RPAREN, - [187696] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [187406] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10250), 1, - anon_sym_RPAREN, - [187703] = 2, - ACTIONS(2007), 1, + ACTIONS(10260), 1, + sym__heredoc_start_dash, + [187413] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10262), 1, - anon_sym_esac, - [187710] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [187420] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10264), 1, - anon_sym_fi, - [187717] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10170), 1, anon_sym_RPAREN, - [187724] = 2, - ACTIONS(2007), 1, + [187427] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10266), 1, - anon_sym_fi, - [187731] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187434] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10240), 1, + anon_sym_RPAREN, + [187441] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10268), 1, - anon_sym_esac, - [187738] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [187448] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10012), 1, + ACTIONS(10270), 1, sym_heredoc_start, - [187745] = 2, - ACTIONS(2007), 1, + [187455] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10270), 1, - anon_sym_esac, - [187752] = 2, - ACTIONS(2007), 1, + sym__heredoc_start_dash, + [187462] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10272), 1, - anon_sym_esac, - [187759] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [187469] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10268), 1, + sym__heredoc_start_dash, + [187476] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10274), 1, - anon_sym_fi, - [187766] = 2, - ACTIONS(2007), 1, + anon_sym_RBRACE, + [187483] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10242), 1, + anon_sym_RPAREN, + [187490] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10060), 1, + sym__backtick_close, + [187497] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10236), 1, + anon_sym_RPAREN, + [187504] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10276), 1, anon_sym_RPAREN, - [187773] = 2, - ACTIONS(2007), 1, + [187511] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10278), 1, - anon_sym_fi, - [187780] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187518] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(9910), 1, + sym_word, + [187525] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10280), 1, - anon_sym_esac, - [187787] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187532] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10258), 1, + sym__heredoc_start_dash, + [187539] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10026), 1, + anon_sym_RPAREN, + [187546] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10282), 1, - sym_heredoc_start, - [187794] = 2, - ACTIONS(2007), 1, + sym_word, + [187553] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10272), 1, + anon_sym_RPAREN, + [187560] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10284), 1, - anon_sym_fi, - [187801] = 2, - ACTIONS(2007), 1, + sym_heredoc_end, + [187567] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10286), 1, - anon_sym_esac, - [187808] = 2, - ACTIONS(2007), 1, + anon_sym_RBRACE, + [187574] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10288), 1, - anon_sym_esac, - [187815] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10282), 1, - sym__heredoc_start_dash, - [187822] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187581] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10290), 1, - sym__backtick_close, - [187829] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187588] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10292), 1, - anon_sym_LBRACE, - [187836] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10208), 1, - anon_sym_RPAREN, - [187843] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [187595] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10294), 1, - anon_sym_esac, - [187850] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10296), 1, sym_heredoc_start, - [187857] = 2, - ACTIONS(2007), 1, + [187602] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10262), 1, + anon_sym_RPAREN, + [187609] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10296), 1, - sym__heredoc_start_dash, - [187864] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187616] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10298), 1, anon_sym_esac, - [187871] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10300), 1, - anon_sym_esac, - [187878] = 2, - ACTIONS(2007), 1, + [187623] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10236), 1, + ACTIONS(10204), 1, anon_sym_RPAREN, - [187885] = 2, - ACTIONS(2007), 1, + [187630] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10302), 1, - sym_heredoc_start, - [187892] = 2, - ACTIONS(2007), 1, + ACTIONS(10300), 1, + anon_sym_RPAREN, + [187637] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10302), 1, - sym__heredoc_start_dash, - [187899] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [187644] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10304), 1, - anon_sym_RPAREN, - [187906] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10290), 1, - anon_sym_RPAREN, - [187913] = 2, - ACTIONS(2007), 1, + anon_sym_then, + [187651] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10306), 1, + anon_sym_fi, + [187658] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10178), 1, + sym__backtick_close, + [187665] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10252), 1, anon_sym_RPAREN, - [187920] = 2, - ACTIONS(2007), 1, + [187672] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10308), 1, - sym_word, - [187927] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187679] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10310), 1, anon_sym_RPAREN, - [187934] = 2, - ACTIONS(2007), 1, + [187686] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10312), 1, - sym__backtick_close, - [187941] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [187693] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10312), 1, + sym__heredoc_start_dash, + [187700] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10314), 1, - anon_sym_fi, - [187948] = 2, - ACTIONS(2007), 1, + sym_heredoc_end, + [187707] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10294), 1, + sym__heredoc_start_dash, + [187714] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10316), 1, anon_sym_RPAREN, - [187955] = 2, - ACTIONS(2007), 1, + [187721] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10318), 1, - sym_heredoc_start, - [187962] = 2, - ACTIONS(2007), 1, + ACTIONS(10278), 1, + sym__backtick_close, + [187728] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10318), 1, - sym__heredoc_start_dash, - [187969] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [187735] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10320), 1, - sym__backtick_close, - [187976] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [187742] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10322), 1, - anon_sym_esac, - [187983] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187749] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10292), 1, + sym__heredoc_start_dash, + [187756] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10324), 1, - anon_sym_RPAREN, - [187990] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [187763] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10324), 1, + sym__heredoc_start_dash, + [187770] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10326), 1, - anon_sym_RBRACE, - [187997] = 2, - ACTIONS(2007), 1, + sym__backtick_close, + [187777] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10328), 1, - anon_sym_then, - [188004] = 2, - ACTIONS(2007), 1, + anon_sym_fi, + [187784] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10330), 1, - anon_sym_RPAREN, - [188011] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10088), 1, - sym_heredoc_start, - [188018] = 2, - ACTIONS(2007), 1, + anon_sym_LBRACE, + [187791] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10332), 1, - anon_sym_RPAREN, - [188025] = 2, - ACTIONS(2007), 1, + sym_heredoc_end, + [187798] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10168), 1, - anon_sym_RPAREN, - [188032] = 2, - ACTIONS(2007), 1, + ACTIONS(10318), 1, + sym__heredoc_start_dash, + [187805] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10334), 1, - anon_sym_esac, - [188039] = 2, - ACTIONS(2007), 1, + anon_sym_fi, + [187812] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10320), 1, - anon_sym_RPAREN, - [188046] = 2, - ACTIONS(2007), 1, + ACTIONS(9932), 1, + sym_word, + [187819] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10336), 1, - sym_heredoc_start, - [188053] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [187826] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10336), 1, - sym__heredoc_start_dash, - [188060] = 2, - ACTIONS(2007), 1, + ACTIONS(10218), 1, + sym__backtick_close, + [187833] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10338), 1, - anon_sym_RPAREN, - [188067] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10340), 1, anon_sym_esac, - [188074] = 2, - ACTIONS(2007), 1, + [187840] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10108), 1, + ACTIONS(10340), 1, sym__backtick_close, - [188081] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10312), 1, - anon_sym_RPAREN, - [188088] = 2, - ACTIONS(2007), 1, + [187847] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10342), 1, - sym_heredoc_start, - [188095] = 2, - ACTIONS(2007), 1, + anon_sym_LBRACE, + [187854] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10342), 1, - sym__heredoc_start_dash, - [188102] = 2, - ACTIONS(2007), 1, + ACTIONS(10112), 1, + anon_sym_RPAREN, + [187861] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10344), 1, - sym__backtick_close, - [188109] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [187868] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10346), 1, - sym_heredoc_start, - [188116] = 2, - ACTIONS(2007), 1, + ts_builtin_sym_end, + [187875] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10184), 1, - sym__heredoc_start_dash, - [188123] = 2, - ACTIONS(2007), 1, + ACTIONS(9942), 1, + sym_word, + [187882] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10348), 1, - sym_heredoc_start, - [188130] = 2, - ACTIONS(2007), 1, + anon_sym_fi, + [187889] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10326), 1, + anon_sym_RPAREN, + [187896] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10350), 1, + anon_sym_done, + [187903] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10044), 1, sym__backtick_close, - [188137] = 2, - ACTIONS(2007), 1, + [187910] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10352), 1, - anon_sym_esac, - [188144] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10346), 1, - sym__heredoc_start_dash, - [188151] = 2, - ACTIONS(2007), 1, + anon_sym_LBRACE, + [187917] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10354), 1, - anon_sym_done, - [188158] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [187924] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10356), 1, anon_sym_RPAREN, - [188165] = 2, - ACTIONS(2007), 1, + [187931] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10358), 1, - sym__backtick_close, - [188172] = 2, - ACTIONS(2007), 1, + ACTIONS(9978), 1, + sym_heredoc_start, + [187938] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10360), 1, - anon_sym_LBRACE, - [188179] = 2, - ACTIONS(2007), 1, + ACTIONS(9946), 1, + sym_word, + [187945] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10028), 1, - sym__backtick_close, - [188186] = 2, - ACTIONS(2007), 1, + ACTIONS(10358), 1, + anon_sym_esac, + [187952] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10362), 1, - anon_sym_RPAREN, - [188193] = 2, - ACTIONS(2007), 1, + ACTIONS(10360), 1, + sym_heredoc_start, + [187959] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10348), 1, + ACTIONS(10360), 1, sym__heredoc_start_dash, - [188200] = 2, - ACTIONS(2007), 1, + [187966] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(9966), 1, - sym_word, - [188207] = 2, - ACTIONS(2007), 1, + ACTIONS(10362), 1, + sym__backtick_close, + [187973] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10364), 1, - sym_heredoc_start, - [188214] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10366), 1, - anon_sym_RPAREN, - [188221] = 2, - ACTIONS(2007), 1, + anon_sym_LBRACE, + [187980] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10350), 1, + ACTIONS(10340), 1, anon_sym_RPAREN, - [188228] = 2, - ACTIONS(2007), 1, + [187987] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10344), 1, + ACTIONS(10366), 1, anon_sym_RPAREN, - [188235] = 2, - ACTIONS(2007), 1, + [187994] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10368), 1, - anon_sym_LBRACE, - [188242] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [188001] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10370), 1, - sym_heredoc_start, - [188249] = 2, - ACTIONS(2007), 1, + anon_sym_LBRACE, + [188008] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10372), 1, sym_heredoc_start, - [188256] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10122), 1, - sym__backtick_close, - [188263] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9972), 1, - sym_word, - [188270] = 2, - ACTIONS(2007), 1, + [188015] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10372), 1, sym__heredoc_start_dash, - [188277] = 2, - ACTIONS(2007), 1, + [188022] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10374), 1, - anon_sym_RPAREN, - [188284] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10376), 1, - sym_heredoc_start, - [188291] = 2, - ACTIONS(2007), 1, + sym_word, + [188029] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10376), 1, - sym__heredoc_start_dash, - [188298] = 2, - ACTIONS(2007), 1, + anon_sym_LBRACE, + [188036] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10378), 1, - anon_sym_LBRACE, - [188305] = 2, - ACTIONS(2007), 1, + anon_sym_RPAREN, + [188043] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10380), 1, anon_sym_RPAREN, - [188312] = 2, - ACTIONS(2007), 1, + [188050] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10382), 1, - sym_word, - [188319] = 2, - ACTIONS(2007), 1, + anon_sym_then, + [188057] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10384), 1, - anon_sym_fi, - [188326] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(9980), 1, - sym_word, - [188333] = 2, - ACTIONS(2007), 1, + anon_sym_LBRACE, + [188064] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10386), 1, - anon_sym_esac, - [188340] = 2, - ACTIONS(2007), 1, + anon_sym_fi, + [188071] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10388), 1, - anon_sym_RPAREN, - [188347] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10370), 1, - sym__heredoc_start_dash, - [188354] = 2, - ACTIONS(2007), 1, + sym_heredoc_start, + [188078] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10364), 1, + ACTIONS(10388), 1, sym__heredoc_start_dash, - [188361] = 2, - ACTIONS(2007), 1, + [188085] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10390), 1, anon_sym_LBRACE, - [188368] = 2, - ACTIONS(2007), 1, + [188092] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10392), 1, - sym_heredoc_start, - [188375] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [188099] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10394), 1, anon_sym_then, - [188382] = 2, - ACTIONS(2007), 1, + [188106] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10396), 1, sym_heredoc_start, - [188389] = 2, - ACTIONS(2007), 1, + [188113] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10398), 1, anon_sym_LBRACE, - [188396] = 2, - ACTIONS(2007), 1, + [188120] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10396), 1, sym__heredoc_start_dash, - [188403] = 2, - ACTIONS(2007), 1, + [188127] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10400), 1, - sym_heredoc_start, - [188410] = 2, - ACTIONS(2007), 1, + anon_sym_LBRACE, + [188134] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10400), 1, - sym__heredoc_start_dash, - [188417] = 2, - ACTIONS(2007), 1, + ACTIONS(10362), 1, + anon_sym_RPAREN, + [188141] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10402), 1, anon_sym_LBRACE, - [188424] = 2, - ACTIONS(2007), 1, + [188148] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10404), 1, - anon_sym_RPAREN, - [188431] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10366), 1, - sym__backtick_close, - [188438] = 2, - ACTIONS(2007), 1, + anon_sym_LBRACE, + [188155] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10406), 1, - anon_sym_RPAREN, - [188445] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10408), 1, anon_sym_LBRACE, - [188452] = 2, - ACTIONS(2007), 1, + [188162] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10078), 1, - sym_heredoc_start, - [188459] = 2, - ACTIONS(2007), 1, + ACTIONS(10408), 1, + anon_sym_RPAREN, + [188169] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10410), 1, - anon_sym_RBRACE, - [188466] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10392), 1, - sym__heredoc_start_dash, - [188473] = 2, - ACTIONS(2007), 1, + anon_sym_LBRACE, + [188176] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10412), 1, anon_sym_RPAREN, - [188480] = 2, - ACTIONS(2007), 1, + [188183] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10414), 1, - anon_sym_done, - [188487] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10358), 1, - anon_sym_RPAREN, - [188494] = 2, - ACTIONS(2007), 1, + anon_sym_LBRACE, + [188190] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10416), 1, - anon_sym_fi, - [188501] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [188197] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10418), 1, anon_sym_LBRACE, - [188508] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10018), 1, - sym__backtick_close, - [188515] = 2, - ACTIONS(2007), 1, + [188204] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10420), 1, - anon_sym_LBRACE, - [188522] = 2, - ACTIONS(2007), 1, + anon_sym_esac, + [188211] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10422), 1, - sym__backtick_close, - [188529] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10424), 1, anon_sym_LBRACE, - [188536] = 2, - ACTIONS(2007), 1, + [188218] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10426), 1, + ACTIONS(10424), 1, sym_heredoc_start, - [188543] = 2, - ACTIONS(2007), 1, + [188225] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10428), 1, + ACTIONS(10426), 1, anon_sym_LBRACE, - [188550] = 2, - ACTIONS(2007), 1, + [188232] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10174), 1, - sym__heredoc_start_dash, - [188557] = 2, - ACTIONS(2007), 1, + ACTIONS(10428), 1, + sym_heredoc_start, + [188239] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10430), 1, anon_sym_LBRACE, - [188564] = 2, - ACTIONS(2007), 1, + [188246] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10426), 1, + ACTIONS(10428), 1, sym__heredoc_start_dash, - [188571] = 2, - ACTIONS(2007), 1, + [188253] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10432), 1, anon_sym_LBRACE, - [188578] = 2, - ACTIONS(2007), 1, + [188260] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10434), 1, - anon_sym_esac, - [188585] = 2, - ACTIONS(2007), 1, + anon_sym_LBRACE, + [188267] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10436), 1, anon_sym_LBRACE, - [188592] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10076), 1, - sym__backtick_close, - [188599] = 2, - ACTIONS(2007), 1, + [188274] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10438), 1, anon_sym_LBRACE, - [188606] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10052), 1, - sym__backtick_close, - [188613] = 2, - ACTIONS(2007), 1, + [188281] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10440), 1, anon_sym_LBRACE, - [188620] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10422), 1, - anon_sym_RPAREN, - [188627] = 2, - ACTIONS(2007), 1, + [188288] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10442), 1, anon_sym_LBRACE, - [188634] = 2, - ACTIONS(2007), 1, + [188295] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10444), 1, anon_sym_LBRACE, - [188641] = 2, - ACTIONS(2007), 1, + [188302] = 2, + ACTIONS(1167), 1, + sym_comment, + ACTIONS(10424), 1, + sym__heredoc_start_dash, + [188309] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10446), 1, anon_sym_LBRACE, - [188648] = 2, - ACTIONS(2007), 1, + [188316] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10448), 1, anon_sym_LBRACE, - [188655] = 2, - ACTIONS(2007), 1, + [188323] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10450), 1, anon_sym_LBRACE, - [188662] = 2, - ACTIONS(2007), 1, + [188330] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10452), 1, anon_sym_LBRACE, - [188669] = 2, - ACTIONS(2007), 1, + [188337] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10454), 1, anon_sym_LBRACE, - [188676] = 2, - ACTIONS(2007), 1, + [188344] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10456), 1, anon_sym_LBRACE, - [188683] = 2, - ACTIONS(2007), 1, + [188351] = 2, + ACTIONS(1167), 1, sym_comment, ACTIONS(10458), 1, - anon_sym_LBRACE, - [188690] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10460), 1, - anon_sym_LBRACE, - [188697] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10462), 1, - anon_sym_LBRACE, - [188704] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10464), 1, - anon_sym_LBRACE, - [188711] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10466), 1, - anon_sym_LBRACE, - [188718] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10468), 1, - anon_sym_LBRACE, - [188725] = 2, - ACTIONS(2007), 1, + anon_sym_done, + [188358] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10470), 1, + ACTIONS(9984), 1, sym_heredoc_start, - [188732] = 2, - ACTIONS(2007), 1, + [188365] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10470), 1, - sym__heredoc_start_dash, - [188739] = 2, - ACTIONS(2007), 1, + ACTIONS(10460), 1, + anon_sym_fi, + [188372] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10048), 1, + ACTIONS(10088), 1, sym__backtick_close, - [188746] = 2, - ACTIONS(2007), 1, + [188379] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10472), 1, - anon_sym_RPAREN, - [188753] = 2, - ACTIONS(2007), 1, + ACTIONS(10462), 1, + anon_sym_fi, + [188386] = 2, + ACTIONS(1167), 1, sym_comment, - ACTIONS(10474), 1, + ACTIONS(10464), 1, anon_sym_esac, - [188760] = 2, - ACTIONS(2007), 1, - sym_comment, - ACTIONS(10476), 1, - anon_sym_done, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(306)] = 0, - [SMALL_STATE(307)] = 79, - [SMALL_STATE(308)] = 158, - [SMALL_STATE(309)] = 237, - [SMALL_STATE(310)] = 312, - [SMALL_STATE(311)] = 391, - [SMALL_STATE(312)] = 470, - [SMALL_STATE(313)] = 549, - [SMALL_STATE(314)] = 651, - [SMALL_STATE(315)] = 725, - [SMALL_STATE(316)] = 798, - [SMALL_STATE(317)] = 875, - [SMALL_STATE(318)] = 952, - [SMALL_STATE(319)] = 1029, - [SMALL_STATE(320)] = 1106, - [SMALL_STATE(321)] = 1183, - [SMALL_STATE(322)] = 1260, - [SMALL_STATE(323)] = 1360, - [SMALL_STATE(324)] = 1460, - [SMALL_STATE(325)] = 1534, - [SMALL_STATE(326)] = 1608, - [SMALL_STATE(327)] = 1680, - [SMALL_STATE(328)] = 1780, - [SMALL_STATE(329)] = 1880, - [SMALL_STATE(330)] = 1980, - [SMALL_STATE(331)] = 2080, - [SMALL_STATE(332)] = 2180, - [SMALL_STATE(333)] = 2280, - [SMALL_STATE(334)] = 2380, - [SMALL_STATE(335)] = 2480, - [SMALL_STATE(336)] = 2580, - [SMALL_STATE(337)] = 2680, - [SMALL_STATE(338)] = 2780, - [SMALL_STATE(339)] = 2880, - [SMALL_STATE(340)] = 2980, - [SMALL_STATE(341)] = 3080, - [SMALL_STATE(342)] = 3154, - [SMALL_STATE(343)] = 3254, - [SMALL_STATE(344)] = 3354, - [SMALL_STATE(345)] = 3454, - [SMALL_STATE(346)] = 3554, - [SMALL_STATE(347)] = 3654, - [SMALL_STATE(348)] = 3754, - [SMALL_STATE(349)] = 3854, - [SMALL_STATE(350)] = 3954, - [SMALL_STATE(351)] = 4054, - [SMALL_STATE(352)] = 4154, - [SMALL_STATE(353)] = 4254, - [SMALL_STATE(354)] = 4354, - [SMALL_STATE(355)] = 4454, - [SMALL_STATE(356)] = 4554, - [SMALL_STATE(357)] = 4628, - [SMALL_STATE(358)] = 4728, - [SMALL_STATE(359)] = 4828, - [SMALL_STATE(360)] = 4928, - [SMALL_STATE(361)] = 5028, - [SMALL_STATE(362)] = 5128, - [SMALL_STATE(363)] = 5228, - [SMALL_STATE(364)] = 5328, - [SMALL_STATE(365)] = 5402, - [SMALL_STATE(366)] = 5502, - [SMALL_STATE(367)] = 5602, - [SMALL_STATE(368)] = 5702, - [SMALL_STATE(369)] = 5802, - [SMALL_STATE(370)] = 5902, - [SMALL_STATE(371)] = 6002, - [SMALL_STATE(372)] = 6102, - [SMALL_STATE(373)] = 6202, - [SMALL_STATE(374)] = 6302, - [SMALL_STATE(375)] = 6402, - [SMALL_STATE(376)] = 6502, - [SMALL_STATE(377)] = 6602, - [SMALL_STATE(378)] = 6702, - [SMALL_STATE(379)] = 6802, - [SMALL_STATE(380)] = 6902, - [SMALL_STATE(381)] = 7002, - [SMALL_STATE(382)] = 7102, - [SMALL_STATE(383)] = 7202, - [SMALL_STATE(384)] = 7302, - [SMALL_STATE(385)] = 7402, - [SMALL_STATE(386)] = 7502, - [SMALL_STATE(387)] = 7602, - [SMALL_STATE(388)] = 7702, - [SMALL_STATE(389)] = 7802, - [SMALL_STATE(390)] = 7902, - [SMALL_STATE(391)] = 8002, - [SMALL_STATE(392)] = 8102, - [SMALL_STATE(393)] = 8202, - [SMALL_STATE(394)] = 8302, - [SMALL_STATE(395)] = 8402, - [SMALL_STATE(396)] = 8502, - [SMALL_STATE(397)] = 8602, - [SMALL_STATE(398)] = 8702, - [SMALL_STATE(399)] = 8802, - [SMALL_STATE(400)] = 8902, - [SMALL_STATE(401)] = 9002, - [SMALL_STATE(402)] = 9102, - [SMALL_STATE(403)] = 9202, - [SMALL_STATE(404)] = 9302, - [SMALL_STATE(405)] = 9402, - [SMALL_STATE(406)] = 9502, - [SMALL_STATE(407)] = 9602, - [SMALL_STATE(408)] = 9702, - [SMALL_STATE(409)] = 9802, - [SMALL_STATE(410)] = 9902, - [SMALL_STATE(411)] = 10002, - [SMALL_STATE(412)] = 10102, - [SMALL_STATE(413)] = 10202, - [SMALL_STATE(414)] = 10302, - [SMALL_STATE(415)] = 10402, - [SMALL_STATE(416)] = 10502, - [SMALL_STATE(417)] = 10602, - [SMALL_STATE(418)] = 10702, - [SMALL_STATE(419)] = 10802, - [SMALL_STATE(420)] = 10902, - [SMALL_STATE(421)] = 11002, - [SMALL_STATE(422)] = 11102, - [SMALL_STATE(423)] = 11202, - [SMALL_STATE(424)] = 11302, - [SMALL_STATE(425)] = 11402, - [SMALL_STATE(426)] = 11502, - [SMALL_STATE(427)] = 11602, - [SMALL_STATE(428)] = 11702, - [SMALL_STATE(429)] = 11802, - [SMALL_STATE(430)] = 11902, - [SMALL_STATE(431)] = 12002, - [SMALL_STATE(432)] = 12102, - [SMALL_STATE(433)] = 12202, - [SMALL_STATE(434)] = 12302, - [SMALL_STATE(435)] = 12402, - [SMALL_STATE(436)] = 12502, - [SMALL_STATE(437)] = 12602, - [SMALL_STATE(438)] = 12702, - [SMALL_STATE(439)] = 12802, - [SMALL_STATE(440)] = 12902, - [SMALL_STATE(441)] = 13002, - [SMALL_STATE(442)] = 13102, - [SMALL_STATE(443)] = 13202, - [SMALL_STATE(444)] = 13302, - [SMALL_STATE(445)] = 13402, - [SMALL_STATE(446)] = 13502, - [SMALL_STATE(447)] = 13602, - [SMALL_STATE(448)] = 13702, - [SMALL_STATE(449)] = 13802, - [SMALL_STATE(450)] = 13902, - [SMALL_STATE(451)] = 14002, - [SMALL_STATE(452)] = 14102, - [SMALL_STATE(453)] = 14202, - [SMALL_STATE(454)] = 14302, - [SMALL_STATE(455)] = 14402, - [SMALL_STATE(456)] = 14502, - [SMALL_STATE(457)] = 14602, - [SMALL_STATE(458)] = 14702, - [SMALL_STATE(459)] = 14802, - [SMALL_STATE(460)] = 14902, - [SMALL_STATE(461)] = 15002, - [SMALL_STATE(462)] = 15102, - [SMALL_STATE(463)] = 15202, - [SMALL_STATE(464)] = 15302, - [SMALL_STATE(465)] = 15402, - [SMALL_STATE(466)] = 15502, - [SMALL_STATE(467)] = 15602, - [SMALL_STATE(468)] = 15702, - [SMALL_STATE(469)] = 15802, - [SMALL_STATE(470)] = 15902, - [SMALL_STATE(471)] = 16002, - [SMALL_STATE(472)] = 16102, - [SMALL_STATE(473)] = 16202, - [SMALL_STATE(474)] = 16302, - [SMALL_STATE(475)] = 16402, - [SMALL_STATE(476)] = 16502, - [SMALL_STATE(477)] = 16602, - [SMALL_STATE(478)] = 16702, - [SMALL_STATE(479)] = 16802, - [SMALL_STATE(480)] = 16902, - [SMALL_STATE(481)] = 17002, - [SMALL_STATE(482)] = 17102, - [SMALL_STATE(483)] = 17202, - [SMALL_STATE(484)] = 17302, - [SMALL_STATE(485)] = 17402, - [SMALL_STATE(486)] = 17502, - [SMALL_STATE(487)] = 17602, - [SMALL_STATE(488)] = 17702, - [SMALL_STATE(489)] = 17802, - [SMALL_STATE(490)] = 17902, - [SMALL_STATE(491)] = 18002, - [SMALL_STATE(492)] = 18102, - [SMALL_STATE(493)] = 18202, - [SMALL_STATE(494)] = 18302, - [SMALL_STATE(495)] = 18402, - [SMALL_STATE(496)] = 18502, - [SMALL_STATE(497)] = 18602, - [SMALL_STATE(498)] = 18702, - [SMALL_STATE(499)] = 18802, - [SMALL_STATE(500)] = 18902, - [SMALL_STATE(501)] = 19002, - [SMALL_STATE(502)] = 19102, - [SMALL_STATE(503)] = 19202, - [SMALL_STATE(504)] = 19302, - [SMALL_STATE(505)] = 19402, - [SMALL_STATE(506)] = 19502, - [SMALL_STATE(507)] = 19602, - [SMALL_STATE(508)] = 19702, - [SMALL_STATE(509)] = 19802, - [SMALL_STATE(510)] = 19902, - [SMALL_STATE(511)] = 20002, - [SMALL_STATE(512)] = 20102, - [SMALL_STATE(513)] = 20202, - [SMALL_STATE(514)] = 20302, - [SMALL_STATE(515)] = 20402, - [SMALL_STATE(516)] = 20502, - [SMALL_STATE(517)] = 20602, - [SMALL_STATE(518)] = 20702, - [SMALL_STATE(519)] = 20802, - [SMALL_STATE(520)] = 20902, - [SMALL_STATE(521)] = 21002, - [SMALL_STATE(522)] = 21102, - [SMALL_STATE(523)] = 21202, - [SMALL_STATE(524)] = 21302, - [SMALL_STATE(525)] = 21402, - [SMALL_STATE(526)] = 21502, - [SMALL_STATE(527)] = 21602, - [SMALL_STATE(528)] = 21702, - [SMALL_STATE(529)] = 21802, - [SMALL_STATE(530)] = 21902, - [SMALL_STATE(531)] = 22002, - [SMALL_STATE(532)] = 22102, - [SMALL_STATE(533)] = 22202, - [SMALL_STATE(534)] = 22302, - [SMALL_STATE(535)] = 22402, - [SMALL_STATE(536)] = 22502, - [SMALL_STATE(537)] = 22602, - [SMALL_STATE(538)] = 22702, - [SMALL_STATE(539)] = 22802, - [SMALL_STATE(540)] = 22902, - [SMALL_STATE(541)] = 23002, - [SMALL_STATE(542)] = 23102, - [SMALL_STATE(543)] = 23202, - [SMALL_STATE(544)] = 23302, - [SMALL_STATE(545)] = 23402, - [SMALL_STATE(546)] = 23502, - [SMALL_STATE(547)] = 23602, - [SMALL_STATE(548)] = 23702, - [SMALL_STATE(549)] = 23802, - [SMALL_STATE(550)] = 23902, - [SMALL_STATE(551)] = 24002, - [SMALL_STATE(552)] = 24102, - [SMALL_STATE(553)] = 24202, - [SMALL_STATE(554)] = 24302, - [SMALL_STATE(555)] = 24402, - [SMALL_STATE(556)] = 24502, - [SMALL_STATE(557)] = 24602, - [SMALL_STATE(558)] = 24702, - [SMALL_STATE(559)] = 24802, - [SMALL_STATE(560)] = 24902, - [SMALL_STATE(561)] = 25002, - [SMALL_STATE(562)] = 25102, - [SMALL_STATE(563)] = 25202, - [SMALL_STATE(564)] = 25302, - [SMALL_STATE(565)] = 25402, - [SMALL_STATE(566)] = 25502, - [SMALL_STATE(567)] = 25602, - [SMALL_STATE(568)] = 25702, - [SMALL_STATE(569)] = 25802, - [SMALL_STATE(570)] = 25902, - [SMALL_STATE(571)] = 26002, - [SMALL_STATE(572)] = 26102, - [SMALL_STATE(573)] = 26202, - [SMALL_STATE(574)] = 26302, - [SMALL_STATE(575)] = 26374, - [SMALL_STATE(576)] = 26474, - [SMALL_STATE(577)] = 26574, - [SMALL_STATE(578)] = 26674, - [SMALL_STATE(579)] = 26748, - [SMALL_STATE(580)] = 26848, - [SMALL_STATE(581)] = 26948, - [SMALL_STATE(582)] = 27048, - [SMALL_STATE(583)] = 27148, - [SMALL_STATE(584)] = 27248, - [SMALL_STATE(585)] = 27348, - [SMALL_STATE(586)] = 27448, - [SMALL_STATE(587)] = 27548, - [SMALL_STATE(588)] = 27648, - [SMALL_STATE(589)] = 27748, - [SMALL_STATE(590)] = 27848, - [SMALL_STATE(591)] = 27948, - [SMALL_STATE(592)] = 28048, - [SMALL_STATE(593)] = 28148, - [SMALL_STATE(594)] = 28248, - [SMALL_STATE(595)] = 28348, - [SMALL_STATE(596)] = 28471, - [SMALL_STATE(597)] = 28594, - [SMALL_STATE(598)] = 28665, - [SMALL_STATE(599)] = 28788, - [SMALL_STATE(600)] = 28911, - [SMALL_STATE(601)] = 29034, - [SMALL_STATE(602)] = 29106, - [SMALL_STATE(603)] = 29178, - [SMALL_STATE(604)] = 29248, - [SMALL_STATE(605)] = 29320, - [SMALL_STATE(606)] = 29442, - [SMALL_STATE(607)] = 29514, - [SMALL_STATE(608)] = 29636, - [SMALL_STATE(609)] = 29708, - [SMALL_STATE(610)] = 29780, - [SMALL_STATE(611)] = 29850, - [SMALL_STATE(612)] = 29922, - [SMALL_STATE(613)] = 30040, - [SMALL_STATE(614)] = 30112, - [SMALL_STATE(615)] = 30230, - [SMALL_STATE(616)] = 30302, - [SMALL_STATE(617)] = 30372, - [SMALL_STATE(618)] = 30444, - [SMALL_STATE(619)] = 30516, - [SMALL_STATE(620)] = 30588, - [SMALL_STATE(621)] = 30660, - [SMALL_STATE(622)] = 30732, - [SMALL_STATE(623)] = 30804, - [SMALL_STATE(624)] = 30876, - [SMALL_STATE(625)] = 30998, - [SMALL_STATE(626)] = 31120, - [SMALL_STATE(627)] = 31192, - [SMALL_STATE(628)] = 31264, - [SMALL_STATE(629)] = 31336, - [SMALL_STATE(630)] = 31408, - [SMALL_STATE(631)] = 31480, - [SMALL_STATE(632)] = 31552, - [SMALL_STATE(633)] = 31674, - [SMALL_STATE(634)] = 31746, - [SMALL_STATE(635)] = 31868, - [SMALL_STATE(636)] = 31938, - [SMALL_STATE(637)] = 32060, - [SMALL_STATE(638)] = 32182, - [SMALL_STATE(639)] = 32304, - [SMALL_STATE(640)] = 32376, - [SMALL_STATE(641)] = 32448, - [SMALL_STATE(642)] = 32520, - [SMALL_STATE(643)] = 32592, - [SMALL_STATE(644)] = 32714, - [SMALL_STATE(645)] = 32786, - [SMALL_STATE(646)] = 32908, - [SMALL_STATE(647)] = 33030, - [SMALL_STATE(648)] = 33102, - [SMALL_STATE(649)] = 33174, - [SMALL_STATE(650)] = 33244, - [SMALL_STATE(651)] = 33366, - [SMALL_STATE(652)] = 33488, - [SMALL_STATE(653)] = 33610, - [SMALL_STATE(654)] = 33728, - [SMALL_STATE(655)] = 33845, - [SMALL_STATE(656)] = 33914, - [SMALL_STATE(657)] = 34031, - [SMALL_STATE(658)] = 34100, - [SMALL_STATE(659)] = 34217, - [SMALL_STATE(660)] = 34334, - [SMALL_STATE(661)] = 34403, - [SMALL_STATE(662)] = 34520, - [SMALL_STATE(663)] = 34637, - [SMALL_STATE(664)] = 34754, - [SMALL_STATE(665)] = 34871, - [SMALL_STATE(666)] = 34940, - [SMALL_STATE(667)] = 35057, - [SMALL_STATE(668)] = 35126, - [SMALL_STATE(669)] = 35195, - [SMALL_STATE(670)] = 35262, - [SMALL_STATE(671)] = 35382, - [SMALL_STATE(672)] = 35502, - [SMALL_STATE(673)] = 35622, - [SMALL_STATE(674)] = 35742, - [SMALL_STATE(675)] = 35862, - [SMALL_STATE(676)] = 35980, - [SMALL_STATE(677)] = 36098, - [SMALL_STATE(678)] = 36216, - [SMALL_STATE(679)] = 36336, - [SMALL_STATE(680)] = 36456, - [SMALL_STATE(681)] = 36576, - [SMALL_STATE(682)] = 36696, - [SMALL_STATE(683)] = 36816, - [SMALL_STATE(684)] = 36936, - [SMALL_STATE(685)] = 37056, - [SMALL_STATE(686)] = 37176, - [SMALL_STATE(687)] = 37296, - [SMALL_STATE(688)] = 37400, - [SMALL_STATE(689)] = 37504, - [SMALL_STATE(690)] = 37624, - [SMALL_STATE(691)] = 37744, - [SMALL_STATE(692)] = 37864, - [SMALL_STATE(693)] = 37984, - [SMALL_STATE(694)] = 38104, - [SMALL_STATE(695)] = 38224, - [SMALL_STATE(696)] = 38344, - [SMALL_STATE(697)] = 38464, - [SMALL_STATE(698)] = 38584, - [SMALL_STATE(699)] = 38704, - [SMALL_STATE(700)] = 38824, - [SMALL_STATE(701)] = 38935, - [SMALL_STATE(702)] = 39048, - [SMALL_STATE(703)] = 39165, - [SMALL_STATE(704)] = 39282, - [SMALL_STATE(705)] = 39393, - [SMALL_STATE(706)] = 39510, - [SMALL_STATE(707)] = 39627, - [SMALL_STATE(708)] = 39740, - [SMALL_STATE(709)] = 39853, - [SMALL_STATE(710)] = 39964, - [SMALL_STATE(711)] = 40077, - [SMALL_STATE(712)] = 40194, - [SMALL_STATE(713)] = 40305, - [SMALL_STATE(714)] = 40420, - [SMALL_STATE(715)] = 40533, - [SMALL_STATE(716)] = 40636, - [SMALL_STATE(717)] = 40747, - [SMALL_STATE(718)] = 40858, - [SMALL_STATE(719)] = 40971, - [SMALL_STATE(720)] = 41082, - [SMALL_STATE(721)] = 41197, - [SMALL_STATE(722)] = 41310, - [SMALL_STATE(723)] = 41421, - [SMALL_STATE(724)] = 41534, - [SMALL_STATE(725)] = 41645, - [SMALL_STATE(726)] = 41756, - [SMALL_STATE(727)] = 41869, - [SMALL_STATE(728)] = 41984, - [SMALL_STATE(729)] = 42095, - [SMALL_STATE(730)] = 42208, - [SMALL_STATE(731)] = 42319, - [SMALL_STATE(732)] = 42432, - [SMALL_STATE(733)] = 42545, - [SMALL_STATE(734)] = 42656, - [SMALL_STATE(735)] = 42773, - [SMALL_STATE(736)] = 42886, - [SMALL_STATE(737)] = 42997, - [SMALL_STATE(738)] = 43100, - [SMALL_STATE(739)] = 43213, - [SMALL_STATE(740)] = 43324, - [SMALL_STATE(741)] = 43439, - [SMALL_STATE(742)] = 43552, - [SMALL_STATE(743)] = 43665, - [SMALL_STATE(744)] = 43776, - [SMALL_STATE(745)] = 43891, - [SMALL_STATE(746)] = 44004, - [SMALL_STATE(747)] = 44115, - [SMALL_STATE(748)] = 44228, - [SMALL_STATE(749)] = 44341, - [SMALL_STATE(750)] = 44454, - [SMALL_STATE(751)] = 44565, - [SMALL_STATE(752)] = 44678, - [SMALL_STATE(753)] = 44793, - [SMALL_STATE(754)] = 44906, - [SMALL_STATE(755)] = 45017, - [SMALL_STATE(756)] = 45130, - [SMALL_STATE(757)] = 45241, - [SMALL_STATE(758)] = 45352, - [SMALL_STATE(759)] = 45465, - [SMALL_STATE(760)] = 45576, - [SMALL_STATE(761)] = 45689, - [SMALL_STATE(762)] = 45800, - [SMALL_STATE(763)] = 45913, - [SMALL_STATE(764)] = 46028, - [SMALL_STATE(765)] = 46139, - [SMALL_STATE(766)] = 46254, - [SMALL_STATE(767)] = 46367, - [SMALL_STATE(768)] = 46478, - [SMALL_STATE(769)] = 46591, - [SMALL_STATE(770)] = 46702, - [SMALL_STATE(771)] = 46815, - [SMALL_STATE(772)] = 46926, - [SMALL_STATE(773)] = 47039, - [SMALL_STATE(774)] = 47142, - [SMALL_STATE(775)] = 47253, - [SMALL_STATE(776)] = 47366, - [SMALL_STATE(777)] = 47477, - [SMALL_STATE(778)] = 47580, - [SMALL_STATE(779)] = 47691, - [SMALL_STATE(780)] = 47794, - [SMALL_STATE(781)] = 47907, - [SMALL_STATE(782)] = 48020, - [SMALL_STATE(783)] = 48135, - [SMALL_STATE(784)] = 48246, - [SMALL_STATE(785)] = 48359, - [SMALL_STATE(786)] = 48474, - [SMALL_STATE(787)] = 48585, - [SMALL_STATE(788)] = 48696, - [SMALL_STATE(789)] = 48809, - [SMALL_STATE(790)] = 48924, - [SMALL_STATE(791)] = 49035, - [SMALL_STATE(792)] = 49152, - [SMALL_STATE(793)] = 49269, - [SMALL_STATE(794)] = 49372, - [SMALL_STATE(795)] = 49487, - [SMALL_STATE(796)] = 49604, - [SMALL_STATE(797)] = 49719, - [SMALL_STATE(798)] = 49832, - [SMALL_STATE(799)] = 49943, - [SMALL_STATE(800)] = 50058, - [SMALL_STATE(801)] = 50173, - [SMALL_STATE(802)] = 50284, - [SMALL_STATE(803)] = 50385, - [SMALL_STATE(804)] = 50486, - [SMALL_STATE(805)] = 50587, - [SMALL_STATE(806)] = 50688, - [SMALL_STATE(807)] = 50803, - [SMALL_STATE(808)] = 50918, - [SMALL_STATE(809)] = 51019, - [SMALL_STATE(810)] = 51134, - [SMALL_STATE(811)] = 51249, - [SMALL_STATE(812)] = 51364, - [SMALL_STATE(813)] = 51479, - [SMALL_STATE(814)] = 51594, - [SMALL_STATE(815)] = 51695, - [SMALL_STATE(816)] = 51796, - [SMALL_STATE(817)] = 51911, - [SMALL_STATE(818)] = 52026, - [SMALL_STATE(819)] = 52141, - [SMALL_STATE(820)] = 52256, - [SMALL_STATE(821)] = 52357, - [SMALL_STATE(822)] = 52458, - [SMALL_STATE(823)] = 52573, - [SMALL_STATE(824)] = 52688, - [SMALL_STATE(825)] = 52803, - [SMALL_STATE(826)] = 52918, - [SMALL_STATE(827)] = 53019, - [SMALL_STATE(828)] = 53121, - [SMALL_STATE(829)] = 53223, - [SMALL_STATE(830)] = 53325, - [SMALL_STATE(831)] = 53427, - [SMALL_STATE(832)] = 53529, - [SMALL_STATE(833)] = 53631, - [SMALL_STATE(834)] = 53733, - [SMALL_STATE(835)] = 53835, - [SMALL_STATE(836)] = 53937, - [SMALL_STATE(837)] = 54039, - [SMALL_STATE(838)] = 54141, - [SMALL_STATE(839)] = 54243, - [SMALL_STATE(840)] = 54345, - [SMALL_STATE(841)] = 54447, - [SMALL_STATE(842)] = 54549, - [SMALL_STATE(843)] = 54651, - [SMALL_STATE(844)] = 54753, - [SMALL_STATE(845)] = 54855, - [SMALL_STATE(846)] = 54957, - [SMALL_STATE(847)] = 55059, - [SMALL_STATE(848)] = 55161, - [SMALL_STATE(849)] = 55263, - [SMALL_STATE(850)] = 55365, - [SMALL_STATE(851)] = 55467, - [SMALL_STATE(852)] = 55569, - [SMALL_STATE(853)] = 55671, - [SMALL_STATE(854)] = 55773, - [SMALL_STATE(855)] = 55875, - [SMALL_STATE(856)] = 55977, - [SMALL_STATE(857)] = 56079, - [SMALL_STATE(858)] = 56181, - [SMALL_STATE(859)] = 56283, - [SMALL_STATE(860)] = 56385, - [SMALL_STATE(861)] = 56487, - [SMALL_STATE(862)] = 56589, - [SMALL_STATE(863)] = 56691, - [SMALL_STATE(864)] = 56793, - [SMALL_STATE(865)] = 56895, - [SMALL_STATE(866)] = 56997, - [SMALL_STATE(867)] = 57099, - [SMALL_STATE(868)] = 57201, - [SMALL_STATE(869)] = 57303, - [SMALL_STATE(870)] = 57405, - [SMALL_STATE(871)] = 57507, - [SMALL_STATE(872)] = 57609, - [SMALL_STATE(873)] = 57711, - [SMALL_STATE(874)] = 57813, - [SMALL_STATE(875)] = 57915, - [SMALL_STATE(876)] = 58017, - [SMALL_STATE(877)] = 58119, - [SMALL_STATE(878)] = 58221, - [SMALL_STATE(879)] = 58323, - [SMALL_STATE(880)] = 58425, - [SMALL_STATE(881)] = 58527, - [SMALL_STATE(882)] = 58629, - [SMALL_STATE(883)] = 58731, - [SMALL_STATE(884)] = 58833, - [SMALL_STATE(885)] = 58935, - [SMALL_STATE(886)] = 59037, - [SMALL_STATE(887)] = 59139, - [SMALL_STATE(888)] = 59241, - [SMALL_STATE(889)] = 59343, - [SMALL_STATE(890)] = 59445, - [SMALL_STATE(891)] = 59547, - [SMALL_STATE(892)] = 59649, - [SMALL_STATE(893)] = 59751, - [SMALL_STATE(894)] = 59853, - [SMALL_STATE(895)] = 59955, - [SMALL_STATE(896)] = 60057, - [SMALL_STATE(897)] = 60159, - [SMALL_STATE(898)] = 60261, - [SMALL_STATE(899)] = 60363, - [SMALL_STATE(900)] = 60462, - [SMALL_STATE(901)] = 60561, - [SMALL_STATE(902)] = 60660, - [SMALL_STATE(903)] = 60759, - [SMALL_STATE(904)] = 60858, - [SMALL_STATE(905)] = 60957, - [SMALL_STATE(906)] = 61056, - [SMALL_STATE(907)] = 61155, - [SMALL_STATE(908)] = 61254, - [SMALL_STATE(909)] = 61353, - [SMALL_STATE(910)] = 61452, - [SMALL_STATE(911)] = 61511, - [SMALL_STATE(912)] = 61610, - [SMALL_STATE(913)] = 61709, - [SMALL_STATE(914)] = 61808, - [SMALL_STATE(915)] = 61907, - [SMALL_STATE(916)] = 62006, - [SMALL_STATE(917)] = 62105, - [SMALL_STATE(918)] = 62204, - [SMALL_STATE(919)] = 62263, - [SMALL_STATE(920)] = 62362, - [SMALL_STATE(921)] = 62461, - [SMALL_STATE(922)] = 62560, - [SMALL_STATE(923)] = 62659, - [SMALL_STATE(924)] = 62758, - [SMALL_STATE(925)] = 62857, - [SMALL_STATE(926)] = 62916, - [SMALL_STATE(927)] = 63015, - [SMALL_STATE(928)] = 63074, - [SMALL_STATE(929)] = 63173, - [SMALL_STATE(930)] = 63272, - [SMALL_STATE(931)] = 63331, - [SMALL_STATE(932)] = 63430, - [SMALL_STATE(933)] = 63529, - [SMALL_STATE(934)] = 63628, - [SMALL_STATE(935)] = 63727, - [SMALL_STATE(936)] = 63826, - [SMALL_STATE(937)] = 63925, - [SMALL_STATE(938)] = 64024, - [SMALL_STATE(939)] = 64123, - [SMALL_STATE(940)] = 64222, - [SMALL_STATE(941)] = 64321, - [SMALL_STATE(942)] = 64420, - [SMALL_STATE(943)] = 64519, - [SMALL_STATE(944)] = 64618, - [SMALL_STATE(945)] = 64717, - [SMALL_STATE(946)] = 64816, - [SMALL_STATE(947)] = 64915, - [SMALL_STATE(948)] = 64974, - [SMALL_STATE(949)] = 65073, - [SMALL_STATE(950)] = 65172, - [SMALL_STATE(951)] = 65271, - [SMALL_STATE(952)] = 65370, - [SMALL_STATE(953)] = 65469, - [SMALL_STATE(954)] = 65568, - [SMALL_STATE(955)] = 65667, - [SMALL_STATE(956)] = 65726, - [SMALL_STATE(957)] = 65825, - [SMALL_STATE(958)] = 65924, - [SMALL_STATE(959)] = 65983, - [SMALL_STATE(960)] = 66082, - [SMALL_STATE(961)] = 66181, - [SMALL_STATE(962)] = 66280, - [SMALL_STATE(963)] = 66379, - [SMALL_STATE(964)] = 66478, - [SMALL_STATE(965)] = 66577, - [SMALL_STATE(966)] = 66676, - [SMALL_STATE(967)] = 66775, - [SMALL_STATE(968)] = 66874, - [SMALL_STATE(969)] = 66973, - [SMALL_STATE(970)] = 67032, - [SMALL_STATE(971)] = 67131, - [SMALL_STATE(972)] = 67230, - [SMALL_STATE(973)] = 67329, - [SMALL_STATE(974)] = 67428, - [SMALL_STATE(975)] = 67527, - [SMALL_STATE(976)] = 67626, - [SMALL_STATE(977)] = 67725, - [SMALL_STATE(978)] = 67824, - [SMALL_STATE(979)] = 67923, - [SMALL_STATE(980)] = 68022, - [SMALL_STATE(981)] = 68121, - [SMALL_STATE(982)] = 68220, - [SMALL_STATE(983)] = 68319, - [SMALL_STATE(984)] = 68418, - [SMALL_STATE(985)] = 68517, - [SMALL_STATE(986)] = 68616, - [SMALL_STATE(987)] = 68715, - [SMALL_STATE(988)] = 68814, - [SMALL_STATE(989)] = 68913, - [SMALL_STATE(990)] = 68972, - [SMALL_STATE(991)] = 69071, - [SMALL_STATE(992)] = 69170, - [SMALL_STATE(993)] = 69269, - [SMALL_STATE(994)] = 69368, - [SMALL_STATE(995)] = 69467, - [SMALL_STATE(996)] = 69566, - [SMALL_STATE(997)] = 69665, - [SMALL_STATE(998)] = 69764, - [SMALL_STATE(999)] = 69863, - [SMALL_STATE(1000)] = 69962, - [SMALL_STATE(1001)] = 70061, - [SMALL_STATE(1002)] = 70160, - [SMALL_STATE(1003)] = 70259, - [SMALL_STATE(1004)] = 70358, - [SMALL_STATE(1005)] = 70457, - [SMALL_STATE(1006)] = 70556, - [SMALL_STATE(1007)] = 70655, - [SMALL_STATE(1008)] = 70754, - [SMALL_STATE(1009)] = 70853, - [SMALL_STATE(1010)] = 70952, - [SMALL_STATE(1011)] = 71051, - [SMALL_STATE(1012)] = 71150, - [SMALL_STATE(1013)] = 71249, - [SMALL_STATE(1014)] = 71348, - [SMALL_STATE(1015)] = 71447, - [SMALL_STATE(1016)] = 71546, - [SMALL_STATE(1017)] = 71645, - [SMALL_STATE(1018)] = 71744, - [SMALL_STATE(1019)] = 71843, - [SMALL_STATE(1020)] = 71942, - [SMALL_STATE(1021)] = 72041, - [SMALL_STATE(1022)] = 72140, - [SMALL_STATE(1023)] = 72199, - [SMALL_STATE(1024)] = 72298, - [SMALL_STATE(1025)] = 72397, - [SMALL_STATE(1026)] = 72496, - [SMALL_STATE(1027)] = 72555, - [SMALL_STATE(1028)] = 72654, - [SMALL_STATE(1029)] = 72753, - [SMALL_STATE(1030)] = 72852, - [SMALL_STATE(1031)] = 72951, - [SMALL_STATE(1032)] = 73050, - [SMALL_STATE(1033)] = 73149, - [SMALL_STATE(1034)] = 73208, - [SMALL_STATE(1035)] = 73307, - [SMALL_STATE(1036)] = 73406, - [SMALL_STATE(1037)] = 73505, - [SMALL_STATE(1038)] = 73604, - [SMALL_STATE(1039)] = 73703, - [SMALL_STATE(1040)] = 73802, - [SMALL_STATE(1041)] = 73901, - [SMALL_STATE(1042)] = 74000, - [SMALL_STATE(1043)] = 74099, - [SMALL_STATE(1044)] = 74198, - [SMALL_STATE(1045)] = 74297, - [SMALL_STATE(1046)] = 74396, - [SMALL_STATE(1047)] = 74495, - [SMALL_STATE(1048)] = 74594, - [SMALL_STATE(1049)] = 74693, - [SMALL_STATE(1050)] = 74792, - [SMALL_STATE(1051)] = 74891, - [SMALL_STATE(1052)] = 74990, - [SMALL_STATE(1053)] = 75089, - [SMALL_STATE(1054)] = 75148, - [SMALL_STATE(1055)] = 75247, - [SMALL_STATE(1056)] = 75346, - [SMALL_STATE(1057)] = 75445, - [SMALL_STATE(1058)] = 75544, - [SMALL_STATE(1059)] = 75643, - [SMALL_STATE(1060)] = 75742, - [SMALL_STATE(1061)] = 75841, - [SMALL_STATE(1062)] = 75940, - [SMALL_STATE(1063)] = 76039, - [SMALL_STATE(1064)] = 76098, - [SMALL_STATE(1065)] = 76197, - [SMALL_STATE(1066)] = 76296, - [SMALL_STATE(1067)] = 76395, - [SMALL_STATE(1068)] = 76494, - [SMALL_STATE(1069)] = 76593, - [SMALL_STATE(1070)] = 76692, - [SMALL_STATE(1071)] = 76791, - [SMALL_STATE(1072)] = 76890, - [SMALL_STATE(1073)] = 76989, - [SMALL_STATE(1074)] = 77088, - [SMALL_STATE(1075)] = 77187, - [SMALL_STATE(1076)] = 77286, - [SMALL_STATE(1077)] = 77345, - [SMALL_STATE(1078)] = 77444, - [SMALL_STATE(1079)] = 77543, - [SMALL_STATE(1080)] = 77642, - [SMALL_STATE(1081)] = 77741, - [SMALL_STATE(1082)] = 77800, - [SMALL_STATE(1083)] = 77899, - [SMALL_STATE(1084)] = 77998, - [SMALL_STATE(1085)] = 78097, - [SMALL_STATE(1086)] = 78196, - [SMALL_STATE(1087)] = 78295, - [SMALL_STATE(1088)] = 78394, - [SMALL_STATE(1089)] = 78493, - [SMALL_STATE(1090)] = 78592, - [SMALL_STATE(1091)] = 78691, - [SMALL_STATE(1092)] = 78790, - [SMALL_STATE(1093)] = 78889, - [SMALL_STATE(1094)] = 78988, - [SMALL_STATE(1095)] = 79087, - [SMALL_STATE(1096)] = 79186, - [SMALL_STATE(1097)] = 79285, - [SMALL_STATE(1098)] = 79384, - [SMALL_STATE(1099)] = 79483, - [SMALL_STATE(1100)] = 79582, - [SMALL_STATE(1101)] = 79681, - [SMALL_STATE(1102)] = 79780, - [SMALL_STATE(1103)] = 79879, - [SMALL_STATE(1104)] = 79978, - [SMALL_STATE(1105)] = 80077, - [SMALL_STATE(1106)] = 80176, - [SMALL_STATE(1107)] = 80235, - [SMALL_STATE(1108)] = 80334, - [SMALL_STATE(1109)] = 80433, - [SMALL_STATE(1110)] = 80492, - [SMALL_STATE(1111)] = 80591, - [SMALL_STATE(1112)] = 80690, - [SMALL_STATE(1113)] = 80789, - [SMALL_STATE(1114)] = 80888, - [SMALL_STATE(1115)] = 80987, - [SMALL_STATE(1116)] = 81046, - [SMALL_STATE(1117)] = 81145, - [SMALL_STATE(1118)] = 81244, - [SMALL_STATE(1119)] = 81343, - [SMALL_STATE(1120)] = 81442, - [SMALL_STATE(1121)] = 81541, - [SMALL_STATE(1122)] = 81640, - [SMALL_STATE(1123)] = 81739, - [SMALL_STATE(1124)] = 81838, - [SMALL_STATE(1125)] = 81937, - [SMALL_STATE(1126)] = 82036, - [SMALL_STATE(1127)] = 82135, - [SMALL_STATE(1128)] = 82234, - [SMALL_STATE(1129)] = 82333, - [SMALL_STATE(1130)] = 82432, - [SMALL_STATE(1131)] = 82531, - [SMALL_STATE(1132)] = 82630, - [SMALL_STATE(1133)] = 82729, - [SMALL_STATE(1134)] = 82828, - [SMALL_STATE(1135)] = 82927, - [SMALL_STATE(1136)] = 83026, - [SMALL_STATE(1137)] = 83083, - [SMALL_STATE(1138)] = 83140, - [SMALL_STATE(1139)] = 83197, - [SMALL_STATE(1140)] = 83254, - [SMALL_STATE(1141)] = 83311, - [SMALL_STATE(1142)] = 83368, - [SMALL_STATE(1143)] = 83425, - [SMALL_STATE(1144)] = 83482, - [SMALL_STATE(1145)] = 83539, - [SMALL_STATE(1146)] = 83596, - [SMALL_STATE(1147)] = 83653, - [SMALL_STATE(1148)] = 83710, - [SMALL_STATE(1149)] = 83767, - [SMALL_STATE(1150)] = 83824, - [SMALL_STATE(1151)] = 83881, - [SMALL_STATE(1152)] = 83938, - [SMALL_STATE(1153)] = 83995, - [SMALL_STATE(1154)] = 84052, - [SMALL_STATE(1155)] = 84109, - [SMALL_STATE(1156)] = 84166, - [SMALL_STATE(1157)] = 84271, - [SMALL_STATE(1158)] = 84376, - [SMALL_STATE(1159)] = 84481, - [SMALL_STATE(1160)] = 84586, - [SMALL_STATE(1161)] = 84691, - [SMALL_STATE(1162)] = 84796, - [SMALL_STATE(1163)] = 84901, - [SMALL_STATE(1164)] = 85006, - [SMALL_STATE(1165)] = 85111, - [SMALL_STATE(1166)] = 85167, - [SMALL_STATE(1167)] = 85223, - [SMALL_STATE(1168)] = 85279, - [SMALL_STATE(1169)] = 85335, - [SMALL_STATE(1170)] = 85391, - [SMALL_STATE(1171)] = 85446, - [SMALL_STATE(1172)] = 85501, - [SMALL_STATE(1173)] = 85556, - [SMALL_STATE(1174)] = 85607, - [SMALL_STATE(1175)] = 85658, - [SMALL_STATE(1176)] = 85711, - [SMALL_STATE(1177)] = 85764, - [SMALL_STATE(1178)] = 85819, - [SMALL_STATE(1179)] = 85878, - [SMALL_STATE(1180)] = 85933, - [SMALL_STATE(1181)] = 85988, - [SMALL_STATE(1182)] = 86083, - [SMALL_STATE(1183)] = 86134, - [SMALL_STATE(1184)] = 86185, - [SMALL_STATE(1185)] = 86236, - [SMALL_STATE(1186)] = 86287, - [SMALL_STATE(1187)] = 86342, - [SMALL_STATE(1188)] = 86393, - [SMALL_STATE(1189)] = 86444, - [SMALL_STATE(1190)] = 86499, - [SMALL_STATE(1191)] = 86554, - [SMALL_STATE(1192)] = 86649, - [SMALL_STATE(1193)] = 86744, - [SMALL_STATE(1194)] = 86799, - [SMALL_STATE(1195)] = 86854, - [SMALL_STATE(1196)] = 86909, - [SMALL_STATE(1197)] = 87004, - [SMALL_STATE(1198)] = 87099, - [SMALL_STATE(1199)] = 87150, - [SMALL_STATE(1200)] = 87201, - [SMALL_STATE(1201)] = 87252, - [SMALL_STATE(1202)] = 87305, - [SMALL_STATE(1203)] = 87360, - [SMALL_STATE(1204)] = 87415, - [SMALL_STATE(1205)] = 87466, - [SMALL_STATE(1206)] = 87557, - [SMALL_STATE(1207)] = 87608, - [SMALL_STATE(1208)] = 87659, - [SMALL_STATE(1209)] = 87714, - [SMALL_STATE(1210)] = 87769, - [SMALL_STATE(1211)] = 87820, - [SMALL_STATE(1212)] = 87875, - [SMALL_STATE(1213)] = 87930, - [SMALL_STATE(1214)] = 87981, - [SMALL_STATE(1215)] = 88032, - [SMALL_STATE(1216)] = 88087, - [SMALL_STATE(1217)] = 88138, - [SMALL_STATE(1218)] = 88189, - [SMALL_STATE(1219)] = 88280, - [SMALL_STATE(1220)] = 88331, - [SMALL_STATE(1221)] = 88382, - [SMALL_STATE(1222)] = 88433, - [SMALL_STATE(1223)] = 88483, - [SMALL_STATE(1224)] = 88541, - [SMALL_STATE(1225)] = 88593, - [SMALL_STATE(1226)] = 88643, - [SMALL_STATE(1227)] = 88695, - [SMALL_STATE(1228)] = 88749, - [SMALL_STATE(1229)] = 88799, - [SMALL_STATE(1230)] = 88849, - [SMALL_STATE(1231)] = 88899, - [SMALL_STATE(1232)] = 88949, - [SMALL_STATE(1233)] = 89001, - [SMALL_STATE(1234)] = 89051, - [SMALL_STATE(1235)] = 89105, - [SMALL_STATE(1236)] = 89155, - [SMALL_STATE(1237)] = 89205, - [SMALL_STATE(1238)] = 89263, - [SMALL_STATE(1239)] = 89313, - [SMALL_STATE(1240)] = 89363, - [SMALL_STATE(1241)] = 89413, - [SMALL_STATE(1242)] = 89463, - [SMALL_STATE(1243)] = 89517, - [SMALL_STATE(1244)] = 89567, - [SMALL_STATE(1245)] = 89617, - [SMALL_STATE(1246)] = 89667, - [SMALL_STATE(1247)] = 89721, - [SMALL_STATE(1248)] = 89771, - [SMALL_STATE(1249)] = 89821, - [SMALL_STATE(1250)] = 89873, - [SMALL_STATE(1251)] = 89923, - [SMALL_STATE(1252)] = 89973, - [SMALL_STATE(1253)] = 90023, - [SMALL_STATE(1254)] = 90073, - [SMALL_STATE(1255)] = 90123, - [SMALL_STATE(1256)] = 90173, - [SMALL_STATE(1257)] = 90223, - [SMALL_STATE(1258)] = 90273, - [SMALL_STATE(1259)] = 90323, - [SMALL_STATE(1260)] = 90373, - [SMALL_STATE(1261)] = 90423, - [SMALL_STATE(1262)] = 90473, - [SMALL_STATE(1263)] = 90523, - [SMALL_STATE(1264)] = 90573, - [SMALL_STATE(1265)] = 90625, - [SMALL_STATE(1266)] = 90675, - [SMALL_STATE(1267)] = 90725, - [SMALL_STATE(1268)] = 90815, - [SMALL_STATE(1269)] = 90865, - [SMALL_STATE(1270)] = 90915, - [SMALL_STATE(1271)] = 90965, - [SMALL_STATE(1272)] = 91015, - [SMALL_STATE(1273)] = 91107, - [SMALL_STATE(1274)] = 91157, - [SMALL_STATE(1275)] = 91207, - [SMALL_STATE(1276)] = 91257, - [SMALL_STATE(1277)] = 91307, - [SMALL_STATE(1278)] = 91357, - [SMALL_STATE(1279)] = 91407, - [SMALL_STATE(1280)] = 91459, - [SMALL_STATE(1281)] = 91551, - [SMALL_STATE(1282)] = 91601, - [SMALL_STATE(1283)] = 91655, - [SMALL_STATE(1284)] = 91705, - [SMALL_STATE(1285)] = 91755, - [SMALL_STATE(1286)] = 91805, - [SMALL_STATE(1287)] = 91895, - [SMALL_STATE(1288)] = 91987, - [SMALL_STATE(1289)] = 92037, - [SMALL_STATE(1290)] = 92129, - [SMALL_STATE(1291)] = 92183, - [SMALL_STATE(1292)] = 92233, - [SMALL_STATE(1293)] = 92283, - [SMALL_STATE(1294)] = 92333, - [SMALL_STATE(1295)] = 92383, - [SMALL_STATE(1296)] = 92433, - [SMALL_STATE(1297)] = 92483, - [SMALL_STATE(1298)] = 92573, - [SMALL_STATE(1299)] = 92623, - [SMALL_STATE(1300)] = 92673, - [SMALL_STATE(1301)] = 92723, - [SMALL_STATE(1302)] = 92773, - [SMALL_STATE(1303)] = 92823, - [SMALL_STATE(1304)] = 92873, - [SMALL_STATE(1305)] = 92923, - [SMALL_STATE(1306)] = 92973, - [SMALL_STATE(1307)] = 93023, - [SMALL_STATE(1308)] = 93073, - [SMALL_STATE(1309)] = 93123, - [SMALL_STATE(1310)] = 93173, - [SMALL_STATE(1311)] = 93223, - [SMALL_STATE(1312)] = 93275, - [SMALL_STATE(1313)] = 93325, - [SMALL_STATE(1314)] = 93375, - [SMALL_STATE(1315)] = 93425, - [SMALL_STATE(1316)] = 93475, - [SMALL_STATE(1317)] = 93525, - [SMALL_STATE(1318)] = 93575, - [SMALL_STATE(1319)] = 93625, - [SMALL_STATE(1320)] = 93679, - [SMALL_STATE(1321)] = 93729, - [SMALL_STATE(1322)] = 93779, - [SMALL_STATE(1323)] = 93833, - [SMALL_STATE(1324)] = 93883, - [SMALL_STATE(1325)] = 93933, - [SMALL_STATE(1326)] = 93983, - [SMALL_STATE(1327)] = 94033, - [SMALL_STATE(1328)] = 94123, - [SMALL_STATE(1329)] = 94173, - [SMALL_STATE(1330)] = 94231, - [SMALL_STATE(1331)] = 94281, - [SMALL_STATE(1332)] = 94331, - [SMALL_STATE(1333)] = 94385, - [SMALL_STATE(1334)] = 94435, - [SMALL_STATE(1335)] = 94485, - [SMALL_STATE(1336)] = 94535, - [SMALL_STATE(1337)] = 94585, - [SMALL_STATE(1338)] = 94675, - [SMALL_STATE(1339)] = 94765, - [SMALL_STATE(1340)] = 94815, - [SMALL_STATE(1341)] = 94865, - [SMALL_STATE(1342)] = 94917, - [SMALL_STATE(1343)] = 94971, - [SMALL_STATE(1344)] = 95021, - [SMALL_STATE(1345)] = 95071, - [SMALL_STATE(1346)] = 95121, - [SMALL_STATE(1347)] = 95175, - [SMALL_STATE(1348)] = 95227, - [SMALL_STATE(1349)] = 95277, - [SMALL_STATE(1350)] = 95327, - [SMALL_STATE(1351)] = 95377, - [SMALL_STATE(1352)] = 95427, - [SMALL_STATE(1353)] = 95477, - [SMALL_STATE(1354)] = 95529, - [SMALL_STATE(1355)] = 95581, - [SMALL_STATE(1356)] = 95633, - [SMALL_STATE(1357)] = 95687, - [SMALL_STATE(1358)] = 95736, - [SMALL_STATE(1359)] = 95789, - [SMALL_STATE(1360)] = 95842, - [SMALL_STATE(1361)] = 95891, - [SMALL_STATE(1362)] = 95944, - [SMALL_STATE(1363)] = 95993, - [SMALL_STATE(1364)] = 96046, - [SMALL_STATE(1365)] = 96095, - [SMALL_STATE(1366)] = 96144, - [SMALL_STATE(1367)] = 96193, - [SMALL_STATE(1368)] = 96242, - [SMALL_STATE(1369)] = 96291, - [SMALL_STATE(1370)] = 96342, - [SMALL_STATE(1371)] = 96395, - [SMALL_STATE(1372)] = 96448, - [SMALL_STATE(1373)] = 96499, - [SMALL_STATE(1374)] = 96548, - [SMALL_STATE(1375)] = 96601, - [SMALL_STATE(1376)] = 96650, - [SMALL_STATE(1377)] = 96699, - [SMALL_STATE(1378)] = 96752, - [SMALL_STATE(1379)] = 96801, - [SMALL_STATE(1380)] = 96850, - [SMALL_STATE(1381)] = 96899, - [SMALL_STATE(1382)] = 96948, - [SMALL_STATE(1383)] = 96997, - [SMALL_STATE(1384)] = 97046, - [SMALL_STATE(1385)] = 97099, - [SMALL_STATE(1386)] = 97148, - [SMALL_STATE(1387)] = 97197, - [SMALL_STATE(1388)] = 97246, - [SMALL_STATE(1389)] = 97303, - [SMALL_STATE(1390)] = 97352, - [SMALL_STATE(1391)] = 97405, - [SMALL_STATE(1392)] = 97454, - [SMALL_STATE(1393)] = 97507, - [SMALL_STATE(1394)] = 97558, - [SMALL_STATE(1395)] = 97609, - [SMALL_STATE(1396)] = 97660, - [SMALL_STATE(1397)] = 97713, - [SMALL_STATE(1398)] = 97766, - [SMALL_STATE(1399)] = 97815, - [SMALL_STATE(1400)] = 97866, - [SMALL_STATE(1401)] = 97915, - [SMALL_STATE(1402)] = 97966, - [SMALL_STATE(1403)] = 98015, - [SMALL_STATE(1404)] = 98068, - [SMALL_STATE(1405)] = 98117, - [SMALL_STATE(1406)] = 98166, - [SMALL_STATE(1407)] = 98219, - [SMALL_STATE(1408)] = 98268, - [SMALL_STATE(1409)] = 98317, - [SMALL_STATE(1410)] = 98366, - [SMALL_STATE(1411)] = 98415, - [SMALL_STATE(1412)] = 98464, - [SMALL_STATE(1413)] = 98513, - [SMALL_STATE(1414)] = 98566, - [SMALL_STATE(1415)] = 98615, - [SMALL_STATE(1416)] = 98668, - [SMALL_STATE(1417)] = 98717, - [SMALL_STATE(1418)] = 98766, - [SMALL_STATE(1419)] = 98819, - [SMALL_STATE(1420)] = 98868, - [SMALL_STATE(1421)] = 98917, - [SMALL_STATE(1422)] = 98966, - [SMALL_STATE(1423)] = 99015, - [SMALL_STATE(1424)] = 99064, - [SMALL_STATE(1425)] = 99113, - [SMALL_STATE(1426)] = 99162, - [SMALL_STATE(1427)] = 99211, - [SMALL_STATE(1428)] = 99260, - [SMALL_STATE(1429)] = 99311, - [SMALL_STATE(1430)] = 99360, - [SMALL_STATE(1431)] = 99413, - [SMALL_STATE(1432)] = 99462, - [SMALL_STATE(1433)] = 99511, - [SMALL_STATE(1434)] = 99560, - [SMALL_STATE(1435)] = 99609, - [SMALL_STATE(1436)] = 99658, - [SMALL_STATE(1437)] = 99709, - [SMALL_STATE(1438)] = 99758, - [SMALL_STATE(1439)] = 99807, - [SMALL_STATE(1440)] = 99856, - [SMALL_STATE(1441)] = 99909, - [SMALL_STATE(1442)] = 99958, - [SMALL_STATE(1443)] = 100007, - [SMALL_STATE(1444)] = 100056, - [SMALL_STATE(1445)] = 100109, - [SMALL_STATE(1446)] = 100162, - [SMALL_STATE(1447)] = 100211, - [SMALL_STATE(1448)] = 100260, - [SMALL_STATE(1449)] = 100309, - [SMALL_STATE(1450)] = 100358, - [SMALL_STATE(1451)] = 100407, - [SMALL_STATE(1452)] = 100456, - [SMALL_STATE(1453)] = 100505, - [SMALL_STATE(1454)] = 100554, - [SMALL_STATE(1455)] = 100603, - [SMALL_STATE(1456)] = 100652, - [SMALL_STATE(1457)] = 100701, - [SMALL_STATE(1458)] = 100750, - [SMALL_STATE(1459)] = 100799, - [SMALL_STATE(1460)] = 100848, - [SMALL_STATE(1461)] = 100897, - [SMALL_STATE(1462)] = 100946, - [SMALL_STATE(1463)] = 100999, - [SMALL_STATE(1464)] = 101048, - [SMALL_STATE(1465)] = 101097, - [SMALL_STATE(1466)] = 101146, - [SMALL_STATE(1467)] = 101195, - [SMALL_STATE(1468)] = 101244, - [SMALL_STATE(1469)] = 101293, - [SMALL_STATE(1470)] = 101342, - [SMALL_STATE(1471)] = 101391, - [SMALL_STATE(1472)] = 101440, - [SMALL_STATE(1473)] = 101489, - [SMALL_STATE(1474)] = 101538, - [SMALL_STATE(1475)] = 101591, - [SMALL_STATE(1476)] = 101640, - [SMALL_STATE(1477)] = 101689, - [SMALL_STATE(1478)] = 101738, - [SMALL_STATE(1479)] = 101787, - [SMALL_STATE(1480)] = 101836, - [SMALL_STATE(1481)] = 101885, - [SMALL_STATE(1482)] = 101934, - [SMALL_STATE(1483)] = 101983, - [SMALL_STATE(1484)] = 102032, - [SMALL_STATE(1485)] = 102081, - [SMALL_STATE(1486)] = 102130, - [SMALL_STATE(1487)] = 102179, - [SMALL_STATE(1488)] = 102228, - [SMALL_STATE(1489)] = 102277, - [SMALL_STATE(1490)] = 102326, - [SMALL_STATE(1491)] = 102375, - [SMALL_STATE(1492)] = 102424, - [SMALL_STATE(1493)] = 102473, - [SMALL_STATE(1494)] = 102522, - [SMALL_STATE(1495)] = 102575, - [SMALL_STATE(1496)] = 102624, - [SMALL_STATE(1497)] = 102673, - [SMALL_STATE(1498)] = 102722, - [SMALL_STATE(1499)] = 102771, - [SMALL_STATE(1500)] = 102819, - [SMALL_STATE(1501)] = 102867, - [SMALL_STATE(1502)] = 102915, - [SMALL_STATE(1503)] = 102963, - [SMALL_STATE(1504)] = 103011, - [SMALL_STATE(1505)] = 103059, - [SMALL_STATE(1506)] = 103107, - [SMALL_STATE(1507)] = 103155, - [SMALL_STATE(1508)] = 103203, - [SMALL_STATE(1509)] = 103251, - [SMALL_STATE(1510)] = 103299, - [SMALL_STATE(1511)] = 103347, - [SMALL_STATE(1512)] = 103395, - [SMALL_STATE(1513)] = 103445, - [SMALL_STATE(1514)] = 103495, - [SMALL_STATE(1515)] = 103543, - [SMALL_STATE(1516)] = 103591, - [SMALL_STATE(1517)] = 103647, - [SMALL_STATE(1518)] = 103695, - [SMALL_STATE(1519)] = 103743, - [SMALL_STATE(1520)] = 103791, - [SMALL_STATE(1521)] = 103847, - [SMALL_STATE(1522)] = 103895, - [SMALL_STATE(1523)] = 103943, - [SMALL_STATE(1524)] = 103991, - [SMALL_STATE(1525)] = 104039, - [SMALL_STATE(1526)] = 104091, - [SMALL_STATE(1527)] = 104139, - [SMALL_STATE(1528)] = 104187, - [SMALL_STATE(1529)] = 104235, - [SMALL_STATE(1530)] = 104283, - [SMALL_STATE(1531)] = 104331, - [SMALL_STATE(1532)] = 104379, - [SMALL_STATE(1533)] = 104427, - [SMALL_STATE(1534)] = 104479, - [SMALL_STATE(1535)] = 104527, - [SMALL_STATE(1536)] = 104575, - [SMALL_STATE(1537)] = 104631, - [SMALL_STATE(1538)] = 104679, - [SMALL_STATE(1539)] = 104727, - [SMALL_STATE(1540)] = 104815, - [SMALL_STATE(1541)] = 104863, - [SMALL_STATE(1542)] = 104911, - [SMALL_STATE(1543)] = 104959, - [SMALL_STATE(1544)] = 105007, - [SMALL_STATE(1545)] = 105055, - [SMALL_STATE(1546)] = 105103, - [SMALL_STATE(1547)] = 105151, - [SMALL_STATE(1548)] = 105199, - [SMALL_STATE(1549)] = 105247, - [SMALL_STATE(1550)] = 105303, - [SMALL_STATE(1551)] = 105351, - [SMALL_STATE(1552)] = 105399, - [SMALL_STATE(1553)] = 105447, - [SMALL_STATE(1554)] = 105495, - [SMALL_STATE(1555)] = 105543, - [SMALL_STATE(1556)] = 105591, - [SMALL_STATE(1557)] = 105639, - [SMALL_STATE(1558)] = 105687, - [SMALL_STATE(1559)] = 105735, - [SMALL_STATE(1560)] = 105783, - [SMALL_STATE(1561)] = 105831, - [SMALL_STATE(1562)] = 105879, - [SMALL_STATE(1563)] = 105927, - [SMALL_STATE(1564)] = 106015, - [SMALL_STATE(1565)] = 106063, - [SMALL_STATE(1566)] = 106111, - [SMALL_STATE(1567)] = 106159, - [SMALL_STATE(1568)] = 106207, - [SMALL_STATE(1569)] = 106255, - [SMALL_STATE(1570)] = 106303, - [SMALL_STATE(1571)] = 106359, - [SMALL_STATE(1572)] = 106447, - [SMALL_STATE(1573)] = 106495, - [SMALL_STATE(1574)] = 106543, - [SMALL_STATE(1575)] = 106591, - [SMALL_STATE(1576)] = 106639, - [SMALL_STATE(1577)] = 106727, - [SMALL_STATE(1578)] = 106775, - [SMALL_STATE(1579)] = 106823, - [SMALL_STATE(1580)] = 106911, - [SMALL_STATE(1581)] = 106961, - [SMALL_STATE(1582)] = 107009, - [SMALL_STATE(1583)] = 107059, - [SMALL_STATE(1584)] = 107107, - [SMALL_STATE(1585)] = 107155, - [SMALL_STATE(1586)] = 107203, - [SMALL_STATE(1587)] = 107259, - [SMALL_STATE(1588)] = 107309, - [SMALL_STATE(1589)] = 107357, - [SMALL_STATE(1590)] = 107405, - [SMALL_STATE(1591)] = 107493, - [SMALL_STATE(1592)] = 107549, - [SMALL_STATE(1593)] = 107601, - [SMALL_STATE(1594)] = 107649, - [SMALL_STATE(1595)] = 107697, - [SMALL_STATE(1596)] = 107745, - [SMALL_STATE(1597)] = 107793, - [SMALL_STATE(1598)] = 107845, - [SMALL_STATE(1599)] = 107893, - [SMALL_STATE(1600)] = 107943, - [SMALL_STATE(1601)] = 107991, - [SMALL_STATE(1602)] = 108041, - [SMALL_STATE(1603)] = 108089, - [SMALL_STATE(1604)] = 108137, - [SMALL_STATE(1605)] = 108185, - [SMALL_STATE(1606)] = 108233, - [SMALL_STATE(1607)] = 108281, - [SMALL_STATE(1608)] = 108333, - [SMALL_STATE(1609)] = 108383, - [SMALL_STATE(1610)] = 108433, - [SMALL_STATE(1611)] = 108481, - [SMALL_STATE(1612)] = 108529, - [SMALL_STATE(1613)] = 108577, - [SMALL_STATE(1614)] = 108625, - [SMALL_STATE(1615)] = 108673, - [SMALL_STATE(1616)] = 108721, - [SMALL_STATE(1617)] = 108769, - [SMALL_STATE(1618)] = 108817, - [SMALL_STATE(1619)] = 108865, - [SMALL_STATE(1620)] = 108917, - [SMALL_STATE(1621)] = 108969, - [SMALL_STATE(1622)] = 109017, - [SMALL_STATE(1623)] = 109065, - [SMALL_STATE(1624)] = 109117, - [SMALL_STATE(1625)] = 109169, - [SMALL_STATE(1626)] = 109217, - [SMALL_STATE(1627)] = 109265, - [SMALL_STATE(1628)] = 109313, - [SMALL_STATE(1629)] = 109361, - [SMALL_STATE(1630)] = 109449, - [SMALL_STATE(1631)] = 109501, - [SMALL_STATE(1632)] = 109553, - [SMALL_STATE(1633)] = 109601, - [SMALL_STATE(1634)] = 109653, - [SMALL_STATE(1635)] = 109705, - [SMALL_STATE(1636)] = 109793, - [SMALL_STATE(1637)] = 109841, - [SMALL_STATE(1638)] = 109929, - [SMALL_STATE(1639)] = 109977, - [SMALL_STATE(1640)] = 110029, - [SMALL_STATE(1641)] = 110077, - [SMALL_STATE(1642)] = 110129, - [SMALL_STATE(1643)] = 110217, - [SMALL_STATE(1644)] = 110267, - [SMALL_STATE(1645)] = 110317, - [SMALL_STATE(1646)] = 110365, - [SMALL_STATE(1647)] = 110415, - [SMALL_STATE(1648)] = 110465, - [SMALL_STATE(1649)] = 110515, - [SMALL_STATE(1650)] = 110563, - [SMALL_STATE(1651)] = 110611, - [SMALL_STATE(1652)] = 110659, - [SMALL_STATE(1653)] = 110707, - [SMALL_STATE(1654)] = 110763, - [SMALL_STATE(1655)] = 110813, - [SMALL_STATE(1656)] = 110861, - [SMALL_STATE(1657)] = 110909, - [SMALL_STATE(1658)] = 110957, - [SMALL_STATE(1659)] = 111005, - [SMALL_STATE(1660)] = 111053, - [SMALL_STATE(1661)] = 111101, - [SMALL_STATE(1662)] = 111149, - [SMALL_STATE(1663)] = 111197, - [SMALL_STATE(1664)] = 111245, - [SMALL_STATE(1665)] = 111293, - [SMALL_STATE(1666)] = 111341, - [SMALL_STATE(1667)] = 111393, - [SMALL_STATE(1668)] = 111441, - [SMALL_STATE(1669)] = 111489, - [SMALL_STATE(1670)] = 111537, - [SMALL_STATE(1671)] = 111589, - [SMALL_STATE(1672)] = 111637, - [SMALL_STATE(1673)] = 111685, - [SMALL_STATE(1674)] = 111733, - [SMALL_STATE(1675)] = 111781, - [SMALL_STATE(1676)] = 111829, - [SMALL_STATE(1677)] = 111877, - [SMALL_STATE(1678)] = 111925, - [SMALL_STATE(1679)] = 111973, - [SMALL_STATE(1680)] = 112021, - [SMALL_STATE(1681)] = 112069, - [SMALL_STATE(1682)] = 112117, - [SMALL_STATE(1683)] = 112165, - [SMALL_STATE(1684)] = 112213, - [SMALL_STATE(1685)] = 112261, - [SMALL_STATE(1686)] = 112309, - [SMALL_STATE(1687)] = 112361, - [SMALL_STATE(1688)] = 112413, - [SMALL_STATE(1689)] = 112461, - [SMALL_STATE(1690)] = 112509, - [SMALL_STATE(1691)] = 112557, - [SMALL_STATE(1692)] = 112609, - [SMALL_STATE(1693)] = 112657, - [SMALL_STATE(1694)] = 112705, - [SMALL_STATE(1695)] = 112753, - [SMALL_STATE(1696)] = 112800, - [SMALL_STATE(1697)] = 112849, - [SMALL_STATE(1698)] = 112936, - [SMALL_STATE(1699)] = 112983, - [SMALL_STATE(1700)] = 113030, - [SMALL_STATE(1701)] = 113077, - [SMALL_STATE(1702)] = 113124, - [SMALL_STATE(1703)] = 113171, - [SMALL_STATE(1704)] = 113218, - [SMALL_STATE(1705)] = 113265, - [SMALL_STATE(1706)] = 113312, - [SMALL_STATE(1707)] = 113359, - [SMALL_STATE(1708)] = 113406, - [SMALL_STATE(1709)] = 113453, - [SMALL_STATE(1710)] = 113500, - [SMALL_STATE(1711)] = 113547, - [SMALL_STATE(1712)] = 113634, - [SMALL_STATE(1713)] = 113721, - [SMALL_STATE(1714)] = 113768, - [SMALL_STATE(1715)] = 113815, - [SMALL_STATE(1716)] = 113862, - [SMALL_STATE(1717)] = 113909, - [SMALL_STATE(1718)] = 113956, - [SMALL_STATE(1719)] = 114003, - [SMALL_STATE(1720)] = 114050, - [SMALL_STATE(1721)] = 114097, - [SMALL_STATE(1722)] = 114144, - [SMALL_STATE(1723)] = 114191, - [SMALL_STATE(1724)] = 114238, - [SMALL_STATE(1725)] = 114285, - [SMALL_STATE(1726)] = 114332, - [SMALL_STATE(1727)] = 114379, - [SMALL_STATE(1728)] = 114426, - [SMALL_STATE(1729)] = 114513, - [SMALL_STATE(1730)] = 114562, - [SMALL_STATE(1731)] = 114609, - [SMALL_STATE(1732)] = 114656, - [SMALL_STATE(1733)] = 114703, - [SMALL_STATE(1734)] = 114754, - [SMALL_STATE(1735)] = 114801, - [SMALL_STATE(1736)] = 114850, - [SMALL_STATE(1737)] = 114897, - [SMALL_STATE(1738)] = 114948, - [SMALL_STATE(1739)] = 114995, - [SMALL_STATE(1740)] = 115042, - [SMALL_STATE(1741)] = 115089, - [SMALL_STATE(1742)] = 115136, - [SMALL_STATE(1743)] = 115183, - [SMALL_STATE(1744)] = 115230, - [SMALL_STATE(1745)] = 115317, - [SMALL_STATE(1746)] = 115364, - [SMALL_STATE(1747)] = 115451, - [SMALL_STATE(1748)] = 115500, - [SMALL_STATE(1749)] = 115547, - [SMALL_STATE(1750)] = 115594, - [SMALL_STATE(1751)] = 115641, - [SMALL_STATE(1752)] = 115690, - [SMALL_STATE(1753)] = 115737, - [SMALL_STATE(1754)] = 115786, - [SMALL_STATE(1755)] = 115833, - [SMALL_STATE(1756)] = 115880, - [SMALL_STATE(1757)] = 115929, - [SMALL_STATE(1758)] = 115976, - [SMALL_STATE(1759)] = 116023, - [SMALL_STATE(1760)] = 116072, - [SMALL_STATE(1761)] = 116119, - [SMALL_STATE(1762)] = 116168, - [SMALL_STATE(1763)] = 116217, - [SMALL_STATE(1764)] = 116264, - [SMALL_STATE(1765)] = 116311, - [SMALL_STATE(1766)] = 116358, - [SMALL_STATE(1767)] = 116405, - [SMALL_STATE(1768)] = 116452, - [SMALL_STATE(1769)] = 116499, - [SMALL_STATE(1770)] = 116586, - [SMALL_STATE(1771)] = 116633, - [SMALL_STATE(1772)] = 116680, - [SMALL_STATE(1773)] = 116727, - [SMALL_STATE(1774)] = 116774, - [SMALL_STATE(1775)] = 116823, - [SMALL_STATE(1776)] = 116870, - [SMALL_STATE(1777)] = 116917, - [SMALL_STATE(1778)] = 116964, - [SMALL_STATE(1779)] = 117011, - [SMALL_STATE(1780)] = 117058, - [SMALL_STATE(1781)] = 117105, - [SMALL_STATE(1782)] = 117152, - [SMALL_STATE(1783)] = 117199, - [SMALL_STATE(1784)] = 117246, - [SMALL_STATE(1785)] = 117293, - [SMALL_STATE(1786)] = 117340, - [SMALL_STATE(1787)] = 117387, - [SMALL_STATE(1788)] = 117434, - [SMALL_STATE(1789)] = 117481, - [SMALL_STATE(1790)] = 117528, - [SMALL_STATE(1791)] = 117575, - [SMALL_STATE(1792)] = 117622, - [SMALL_STATE(1793)] = 117709, - [SMALL_STATE(1794)] = 117756, - [SMALL_STATE(1795)] = 117803, - [SMALL_STATE(1796)] = 117850, - [SMALL_STATE(1797)] = 117897, - [SMALL_STATE(1798)] = 117944, - [SMALL_STATE(1799)] = 117991, - [SMALL_STATE(1800)] = 118038, - [SMALL_STATE(1801)] = 118085, - [SMALL_STATE(1802)] = 118132, - [SMALL_STATE(1803)] = 118179, - [SMALL_STATE(1804)] = 118226, - [SMALL_STATE(1805)] = 118273, - [SMALL_STATE(1806)] = 118320, - [SMALL_STATE(1807)] = 118367, - [SMALL_STATE(1808)] = 118414, - [SMALL_STATE(1809)] = 118461, - [SMALL_STATE(1810)] = 118508, - [SMALL_STATE(1811)] = 118555, - [SMALL_STATE(1812)] = 118602, - [SMALL_STATE(1813)] = 118649, - [SMALL_STATE(1814)] = 118696, - [SMALL_STATE(1815)] = 118743, - [SMALL_STATE(1816)] = 118790, - [SMALL_STATE(1817)] = 118837, - [SMALL_STATE(1818)] = 118884, - [SMALL_STATE(1819)] = 118931, - [SMALL_STATE(1820)] = 118978, - [SMALL_STATE(1821)] = 119025, - [SMALL_STATE(1822)] = 119072, - [SMALL_STATE(1823)] = 119119, - [SMALL_STATE(1824)] = 119166, - [SMALL_STATE(1825)] = 119213, - [SMALL_STATE(1826)] = 119260, - [SMALL_STATE(1827)] = 119307, - [SMALL_STATE(1828)] = 119354, - [SMALL_STATE(1829)] = 119401, - [SMALL_STATE(1830)] = 119448, - [SMALL_STATE(1831)] = 119495, - [SMALL_STATE(1832)] = 119542, - [SMALL_STATE(1833)] = 119589, - [SMALL_STATE(1834)] = 119636, - [SMALL_STATE(1835)] = 119683, - [SMALL_STATE(1836)] = 119730, - [SMALL_STATE(1837)] = 119777, - [SMALL_STATE(1838)] = 119824, - [SMALL_STATE(1839)] = 119871, - [SMALL_STATE(1840)] = 119918, - [SMALL_STATE(1841)] = 119965, - [SMALL_STATE(1842)] = 120012, - [SMALL_STATE(1843)] = 120059, - [SMALL_STATE(1844)] = 120106, - [SMALL_STATE(1845)] = 120153, - [SMALL_STATE(1846)] = 120200, - [SMALL_STATE(1847)] = 120247, - [SMALL_STATE(1848)] = 120294, - [SMALL_STATE(1849)] = 120341, - [SMALL_STATE(1850)] = 120388, - [SMALL_STATE(1851)] = 120435, - [SMALL_STATE(1852)] = 120522, - [SMALL_STATE(1853)] = 120569, - [SMALL_STATE(1854)] = 120616, - [SMALL_STATE(1855)] = 120663, - [SMALL_STATE(1856)] = 120710, - [SMALL_STATE(1857)] = 120757, - [SMALL_STATE(1858)] = 120804, - [SMALL_STATE(1859)] = 120851, - [SMALL_STATE(1860)] = 120898, - [SMALL_STATE(1861)] = 120945, - [SMALL_STATE(1862)] = 120994, - [SMALL_STATE(1863)] = 121043, - [SMALL_STATE(1864)] = 121090, - [SMALL_STATE(1865)] = 121137, - [SMALL_STATE(1866)] = 121184, - [SMALL_STATE(1867)] = 121231, - [SMALL_STATE(1868)] = 121278, - [SMALL_STATE(1869)] = 121325, - [SMALL_STATE(1870)] = 121372, - [SMALL_STATE(1871)] = 121419, - [SMALL_STATE(1872)] = 121468, - [SMALL_STATE(1873)] = 121515, - [SMALL_STATE(1874)] = 121562, - [SMALL_STATE(1875)] = 121609, - [SMALL_STATE(1876)] = 121656, - [SMALL_STATE(1877)] = 121703, - [SMALL_STATE(1878)] = 121750, - [SMALL_STATE(1879)] = 121799, - [SMALL_STATE(1880)] = 121846, - [SMALL_STATE(1881)] = 121893, - [SMALL_STATE(1882)] = 121939, - [SMALL_STATE(1883)] = 121985, - [SMALL_STATE(1884)] = 122031, - [SMALL_STATE(1885)] = 122077, - [SMALL_STATE(1886)] = 122123, - [SMALL_STATE(1887)] = 122169, - [SMALL_STATE(1888)] = 122215, - [SMALL_STATE(1889)] = 122261, - [SMALL_STATE(1890)] = 122307, - [SMALL_STATE(1891)] = 122353, - [SMALL_STATE(1892)] = 122399, - [SMALL_STATE(1893)] = 122445, - [SMALL_STATE(1894)] = 122499, - [SMALL_STATE(1895)] = 122545, - [SMALL_STATE(1896)] = 122591, - [SMALL_STATE(1897)] = 122637, - [SMALL_STATE(1898)] = 122683, - [SMALL_STATE(1899)] = 122729, - [SMALL_STATE(1900)] = 122777, - [SMALL_STATE(1901)] = 122823, - [SMALL_STATE(1902)] = 122869, - [SMALL_STATE(1903)] = 122915, - [SMALL_STATE(1904)] = 122969, - [SMALL_STATE(1905)] = 123015, - [SMALL_STATE(1906)] = 123061, - [SMALL_STATE(1907)] = 123107, - [SMALL_STATE(1908)] = 123153, - [SMALL_STATE(1909)] = 123199, - [SMALL_STATE(1910)] = 123245, - [SMALL_STATE(1911)] = 123291, - [SMALL_STATE(1912)] = 123337, - [SMALL_STATE(1913)] = 123383, - [SMALL_STATE(1914)] = 123429, - [SMALL_STATE(1915)] = 123475, - [SMALL_STATE(1916)] = 123521, - [SMALL_STATE(1917)] = 123567, - [SMALL_STATE(1918)] = 123613, - [SMALL_STATE(1919)] = 123659, - [SMALL_STATE(1920)] = 123705, - [SMALL_STATE(1921)] = 123751, - [SMALL_STATE(1922)] = 123797, - [SMALL_STATE(1923)] = 123843, - [SMALL_STATE(1924)] = 123889, - [SMALL_STATE(1925)] = 123935, - [SMALL_STATE(1926)] = 123981, - [SMALL_STATE(1927)] = 124029, - [SMALL_STATE(1928)] = 124075, - [SMALL_STATE(1929)] = 124121, - [SMALL_STATE(1930)] = 124167, - [SMALL_STATE(1931)] = 124213, - [SMALL_STATE(1932)] = 124259, - [SMALL_STATE(1933)] = 124313, - [SMALL_STATE(1934)] = 124359, - [SMALL_STATE(1935)] = 124405, - [SMALL_STATE(1936)] = 124451, - [SMALL_STATE(1937)] = 124497, - [SMALL_STATE(1938)] = 124543, - [SMALL_STATE(1939)] = 124597, - [SMALL_STATE(1940)] = 124643, - [SMALL_STATE(1941)] = 124689, - [SMALL_STATE(1942)] = 124735, - [SMALL_STATE(1943)] = 124789, - [SMALL_STATE(1944)] = 124835, - [SMALL_STATE(1945)] = 124881, - [SMALL_STATE(1946)] = 124927, - [SMALL_STATE(1947)] = 124973, - [SMALL_STATE(1948)] = 125019, - [SMALL_STATE(1949)] = 125065, - [SMALL_STATE(1950)] = 125111, - [SMALL_STATE(1951)] = 125157, - [SMALL_STATE(1952)] = 125203, - [SMALL_STATE(1953)] = 125249, - [SMALL_STATE(1954)] = 125295, - [SMALL_STATE(1955)] = 125341, - [SMALL_STATE(1956)] = 125387, - [SMALL_STATE(1957)] = 125433, - [SMALL_STATE(1958)] = 125479, - [SMALL_STATE(1959)] = 125525, - [SMALL_STATE(1960)] = 125571, - [SMALL_STATE(1961)] = 125617, - [SMALL_STATE(1962)] = 125663, - [SMALL_STATE(1963)] = 125709, - [SMALL_STATE(1964)] = 125755, - [SMALL_STATE(1965)] = 125801, - [SMALL_STATE(1966)] = 125894, - [SMALL_STATE(1967)] = 125987, - [SMALL_STATE(1968)] = 126080, - [SMALL_STATE(1969)] = 126173, - [SMALL_STATE(1970)] = 126266, - [SMALL_STATE(1971)] = 126311, - [SMALL_STATE(1972)] = 126404, - [SMALL_STATE(1973)] = 126497, - [SMALL_STATE(1974)] = 126590, - [SMALL_STATE(1975)] = 126683, - [SMALL_STATE(1976)] = 126776, - [SMALL_STATE(1977)] = 126869, - [SMALL_STATE(1978)] = 126962, - [SMALL_STATE(1979)] = 127055, - [SMALL_STATE(1980)] = 127148, - [SMALL_STATE(1981)] = 127241, - [SMALL_STATE(1982)] = 127334, - [SMALL_STATE(1983)] = 127421, - [SMALL_STATE(1984)] = 127508, - [SMALL_STATE(1985)] = 127595, - [SMALL_STATE(1986)] = 127682, - [SMALL_STATE(1987)] = 127769, - [SMALL_STATE(1988)] = 127856, - [SMALL_STATE(1989)] = 127943, - [SMALL_STATE(1990)] = 128030, - [SMALL_STATE(1991)] = 128117, - [SMALL_STATE(1992)] = 128204, - [SMALL_STATE(1993)] = 128291, - [SMALL_STATE(1994)] = 128378, - [SMALL_STATE(1995)] = 128458, - [SMALL_STATE(1996)] = 128538, - [SMALL_STATE(1997)] = 128618, - [SMALL_STATE(1998)] = 128702, - [SMALL_STATE(1999)] = 128782, - [SMALL_STATE(2000)] = 128840, - [SMALL_STATE(2001)] = 128917, - [SMALL_STATE(2002)] = 128973, - [SMALL_STATE(2003)] = 129051, - [SMALL_STATE(2004)] = 129107, - [SMALL_STATE(2005)] = 129185, - [SMALL_STATE(2006)] = 129241, - [SMALL_STATE(2007)] = 129319, - [SMALL_STATE(2008)] = 129397, - [SMALL_STATE(2009)] = 129475, - [SMALL_STATE(2010)] = 129553, - [SMALL_STATE(2011)] = 129631, - [SMALL_STATE(2012)] = 129709, - [SMALL_STATE(2013)] = 129787, - [SMALL_STATE(2014)] = 129865, - [SMALL_STATE(2015)] = 129943, - [SMALL_STATE(2016)] = 130021, - [SMALL_STATE(2017)] = 130099, - [SMALL_STATE(2018)] = 130177, - [SMALL_STATE(2019)] = 130255, - [SMALL_STATE(2020)] = 130333, - [SMALL_STATE(2021)] = 130411, - [SMALL_STATE(2022)] = 130489, - [SMALL_STATE(2023)] = 130567, - [SMALL_STATE(2024)] = 130645, - [SMALL_STATE(2025)] = 130723, - [SMALL_STATE(2026)] = 130801, - [SMALL_STATE(2027)] = 130879, - [SMALL_STATE(2028)] = 130957, - [SMALL_STATE(2029)] = 131035, - [SMALL_STATE(2030)] = 131113, - [SMALL_STATE(2031)] = 131191, - [SMALL_STATE(2032)] = 131244, - [SMALL_STATE(2033)] = 131297, - [SMALL_STATE(2034)] = 131350, - [SMALL_STATE(2035)] = 131403, - [SMALL_STATE(2036)] = 131456, - [SMALL_STATE(2037)] = 131499, - [SMALL_STATE(2038)] = 131552, - [SMALL_STATE(2039)] = 131605, - [SMALL_STATE(2040)] = 131658, - [SMALL_STATE(2041)] = 131701, - [SMALL_STATE(2042)] = 131754, - [SMALL_STATE(2043)] = 131797, - [SMALL_STATE(2044)] = 131850, - [SMALL_STATE(2045)] = 131903, - [SMALL_STATE(2046)] = 131956, - [SMALL_STATE(2047)] = 132009, - [SMALL_STATE(2048)] = 132062, - [SMALL_STATE(2049)] = 132115, - [SMALL_STATE(2050)] = 132158, - [SMALL_STATE(2051)] = 132211, - [SMALL_STATE(2052)] = 132264, - [SMALL_STATE(2053)] = 132317, - [SMALL_STATE(2054)] = 132370, - [SMALL_STATE(2055)] = 132423, - [SMALL_STATE(2056)] = 132476, - [SMALL_STATE(2057)] = 132529, - [SMALL_STATE(2058)] = 132582, - [SMALL_STATE(2059)] = 132635, - [SMALL_STATE(2060)] = 132688, - [SMALL_STATE(2061)] = 132741, - [SMALL_STATE(2062)] = 132794, - [SMALL_STATE(2063)] = 132847, - [SMALL_STATE(2064)] = 132900, - [SMALL_STATE(2065)] = 132943, - [SMALL_STATE(2066)] = 132996, - [SMALL_STATE(2067)] = 133049, - [SMALL_STATE(2068)] = 133102, - [SMALL_STATE(2069)] = 133155, - [SMALL_STATE(2070)] = 133208, - [SMALL_STATE(2071)] = 133261, - [SMALL_STATE(2072)] = 133314, - [SMALL_STATE(2073)] = 133367, - [SMALL_STATE(2074)] = 133420, - [SMALL_STATE(2075)] = 133473, - [SMALL_STATE(2076)] = 133526, - [SMALL_STATE(2077)] = 133579, - [SMALL_STATE(2078)] = 133632, - [SMALL_STATE(2079)] = 133685, - [SMALL_STATE(2080)] = 133738, - [SMALL_STATE(2081)] = 133791, - [SMALL_STATE(2082)] = 133844, - [SMALL_STATE(2083)] = 133897, - [SMALL_STATE(2084)] = 133950, - [SMALL_STATE(2085)] = 134003, - [SMALL_STATE(2086)] = 134056, - [SMALL_STATE(2087)] = 134109, - [SMALL_STATE(2088)] = 134162, - [SMALL_STATE(2089)] = 134215, - [SMALL_STATE(2090)] = 134268, - [SMALL_STATE(2091)] = 134311, - [SMALL_STATE(2092)] = 134364, - [SMALL_STATE(2093)] = 134417, - [SMALL_STATE(2094)] = 134460, - [SMALL_STATE(2095)] = 134513, - [SMALL_STATE(2096)] = 134566, - [SMALL_STATE(2097)] = 134619, - [SMALL_STATE(2098)] = 134672, - [SMALL_STATE(2099)] = 134725, - [SMALL_STATE(2100)] = 134778, - [SMALL_STATE(2101)] = 134831, - [SMALL_STATE(2102)] = 134884, - [SMALL_STATE(2103)] = 134937, - [SMALL_STATE(2104)] = 134990, - [SMALL_STATE(2105)] = 135043, - [SMALL_STATE(2106)] = 135096, - [SMALL_STATE(2107)] = 135139, - [SMALL_STATE(2108)] = 135192, - [SMALL_STATE(2109)] = 135235, - [SMALL_STATE(2110)] = 135273, - [SMALL_STATE(2111)] = 135315, - [SMALL_STATE(2112)] = 135353, - [SMALL_STATE(2113)] = 135395, - [SMALL_STATE(2114)] = 135433, - [SMALL_STATE(2115)] = 135471, - [SMALL_STATE(2116)] = 135509, - [SMALL_STATE(2117)] = 135547, - [SMALL_STATE(2118)] = 135585, - [SMALL_STATE(2119)] = 135623, - [SMALL_STATE(2120)] = 135661, - [SMALL_STATE(2121)] = 135699, - [SMALL_STATE(2122)] = 135737, - [SMALL_STATE(2123)] = 135779, - [SMALL_STATE(2124)] = 135817, - [SMALL_STATE(2125)] = 135855, - [SMALL_STATE(2126)] = 135927, - [SMALL_STATE(2127)] = 135965, - [SMALL_STATE(2128)] = 136003, - [SMALL_STATE(2129)] = 136041, - [SMALL_STATE(2130)] = 136079, - [SMALL_STATE(2131)] = 136117, - [SMALL_STATE(2132)] = 136155, - [SMALL_STATE(2133)] = 136193, - [SMALL_STATE(2134)] = 136235, - [SMALL_STATE(2135)] = 136275, - [SMALL_STATE(2136)] = 136347, - [SMALL_STATE(2137)] = 136421, - [SMALL_STATE(2138)] = 136495, - [SMALL_STATE(2139)] = 136535, - [SMALL_STATE(2140)] = 136573, - [SMALL_STATE(2141)] = 136645, - [SMALL_STATE(2142)] = 136717, - [SMALL_STATE(2143)] = 136755, - [SMALL_STATE(2144)] = 136792, - [SMALL_STATE(2145)] = 136863, - [SMALL_STATE(2146)] = 136934, - [SMALL_STATE(2147)] = 137005, - [SMALL_STATE(2148)] = 137042, - [SMALL_STATE(2149)] = 137081, - [SMALL_STATE(2150)] = 137152, - [SMALL_STATE(2151)] = 137223, - [SMALL_STATE(2152)] = 137294, - [SMALL_STATE(2153)] = 137365, - [SMALL_STATE(2154)] = 137402, - [SMALL_STATE(2155)] = 137439, - [SMALL_STATE(2156)] = 137476, - [SMALL_STATE(2157)] = 137513, - [SMALL_STATE(2158)] = 137550, - [SMALL_STATE(2159)] = 137587, - [SMALL_STATE(2160)] = 137624, - [SMALL_STATE(2161)] = 137695, - [SMALL_STATE(2162)] = 137766, - [SMALL_STATE(2163)] = 137805, - [SMALL_STATE(2164)] = 137842, - [SMALL_STATE(2165)] = 137913, - [SMALL_STATE(2166)] = 137984, - [SMALL_STATE(2167)] = 138021, - [SMALL_STATE(2168)] = 138058, - [SMALL_STATE(2169)] = 138095, - [SMALL_STATE(2170)] = 138132, - [SMALL_STATE(2171)] = 138203, - [SMALL_STATE(2172)] = 138274, - [SMALL_STATE(2173)] = 138345, - [SMALL_STATE(2174)] = 138382, - [SMALL_STATE(2175)] = 138419, - [SMALL_STATE(2176)] = 138456, - [SMALL_STATE(2177)] = 138493, - [SMALL_STATE(2178)] = 138564, - [SMALL_STATE(2179)] = 138601, - [SMALL_STATE(2180)] = 138672, - [SMALL_STATE(2181)] = 138743, - [SMALL_STATE(2182)] = 138814, - [SMALL_STATE(2183)] = 138885, - [SMALL_STATE(2184)] = 138956, - [SMALL_STATE(2185)] = 139027, - [SMALL_STATE(2186)] = 139098, - [SMALL_STATE(2187)] = 139169, - [SMALL_STATE(2188)] = 139206, - [SMALL_STATE(2189)] = 139277, - [SMALL_STATE(2190)] = 139314, - [SMALL_STATE(2191)] = 139385, - [SMALL_STATE(2192)] = 139456, - [SMALL_STATE(2193)] = 139527, - [SMALL_STATE(2194)] = 139566, - [SMALL_STATE(2195)] = 139637, - [SMALL_STATE(2196)] = 139708, - [SMALL_STATE(2197)] = 139779, - [SMALL_STATE(2198)] = 139816, - [SMALL_STATE(2199)] = 139887, - [SMALL_STATE(2200)] = 139958, - [SMALL_STATE(2201)] = 140029, - [SMALL_STATE(2202)] = 140100, - [SMALL_STATE(2203)] = 140137, - [SMALL_STATE(2204)] = 140208, - [SMALL_STATE(2205)] = 140279, - [SMALL_STATE(2206)] = 140350, - [SMALL_STATE(2207)] = 140421, - [SMALL_STATE(2208)] = 140492, - [SMALL_STATE(2209)] = 140563, - [SMALL_STATE(2210)] = 140634, - [SMALL_STATE(2211)] = 140705, - [SMALL_STATE(2212)] = 140776, - [SMALL_STATE(2213)] = 140847, - [SMALL_STATE(2214)] = 140918, - [SMALL_STATE(2215)] = 140989, - [SMALL_STATE(2216)] = 141060, - [SMALL_STATE(2217)] = 141131, - [SMALL_STATE(2218)] = 141202, - [SMALL_STATE(2219)] = 141272, - [SMALL_STATE(2220)] = 141342, - [SMALL_STATE(2221)] = 141378, - [SMALL_STATE(2222)] = 141446, - [SMALL_STATE(2223)] = 141516, - [SMALL_STATE(2224)] = 141586, - [SMALL_STATE(2225)] = 141622, - [SMALL_STATE(2226)] = 141692, - [SMALL_STATE(2227)] = 141762, - [SMALL_STATE(2228)] = 141798, - [SMALL_STATE(2229)] = 141868, - [SMALL_STATE(2230)] = 141938, - [SMALL_STATE(2231)] = 142008, - [SMALL_STATE(2232)] = 142078, - [SMALL_STATE(2233)] = 142146, - [SMALL_STATE(2234)] = 142216, - [SMALL_STATE(2235)] = 142286, - [SMALL_STATE(2236)] = 142356, - [SMALL_STATE(2237)] = 142426, - [SMALL_STATE(2238)] = 142496, - [SMALL_STATE(2239)] = 142566, - [SMALL_STATE(2240)] = 142636, - [SMALL_STATE(2241)] = 142706, - [SMALL_STATE(2242)] = 142776, - [SMALL_STATE(2243)] = 142812, - [SMALL_STATE(2244)] = 142882, - [SMALL_STATE(2245)] = 142952, - [SMALL_STATE(2246)] = 143022, - [SMALL_STATE(2247)] = 143092, - [SMALL_STATE(2248)] = 143162, - [SMALL_STATE(2249)] = 143232, - [SMALL_STATE(2250)] = 143302, - [SMALL_STATE(2251)] = 143372, - [SMALL_STATE(2252)] = 143442, - [SMALL_STATE(2253)] = 143512, - [SMALL_STATE(2254)] = 143548, - [SMALL_STATE(2255)] = 143618, - [SMALL_STATE(2256)] = 143688, - [SMALL_STATE(2257)] = 143756, - [SMALL_STATE(2258)] = 143826, - [SMALL_STATE(2259)] = 143896, - [SMALL_STATE(2260)] = 143966, - [SMALL_STATE(2261)] = 144036, - [SMALL_STATE(2262)] = 144106, - [SMALL_STATE(2263)] = 144176, - [SMALL_STATE(2264)] = 144246, - [SMALL_STATE(2265)] = 144316, - [SMALL_STATE(2266)] = 144386, - [SMALL_STATE(2267)] = 144438, - [SMALL_STATE(2268)] = 144508, - [SMALL_STATE(2269)] = 144578, - [SMALL_STATE(2270)] = 144630, - [SMALL_STATE(2271)] = 144700, - [SMALL_STATE(2272)] = 144770, - [SMALL_STATE(2273)] = 144840, - [SMALL_STATE(2274)] = 144910, - [SMALL_STATE(2275)] = 144980, - [SMALL_STATE(2276)] = 145050, - [SMALL_STATE(2277)] = 145120, - [SMALL_STATE(2278)] = 145190, - [SMALL_STATE(2279)] = 145260, - [SMALL_STATE(2280)] = 145330, - [SMALL_STATE(2281)] = 145400, - [SMALL_STATE(2282)] = 145470, - [SMALL_STATE(2283)] = 145522, - [SMALL_STATE(2284)] = 145558, - [SMALL_STATE(2285)] = 145628, - [SMALL_STATE(2286)] = 145698, - [SMALL_STATE(2287)] = 145734, - [SMALL_STATE(2288)] = 145804, - [SMALL_STATE(2289)] = 145874, - [SMALL_STATE(2290)] = 145910, - [SMALL_STATE(2291)] = 145980, - [SMALL_STATE(2292)] = 146050, - [SMALL_STATE(2293)] = 146086, - [SMALL_STATE(2294)] = 146122, - [SMALL_STATE(2295)] = 146192, - [SMALL_STATE(2296)] = 146262, - [SMALL_STATE(2297)] = 146332, - [SMALL_STATE(2298)] = 146402, - [SMALL_STATE(2299)] = 146467, - [SMALL_STATE(2300)] = 146516, - [SMALL_STATE(2301)] = 146565, - [SMALL_STATE(2302)] = 146614, - [SMALL_STATE(2303)] = 146663, - [SMALL_STATE(2304)] = 146728, - [SMALL_STATE(2305)] = 146777, - [SMALL_STATE(2306)] = 146842, - [SMALL_STATE(2307)] = 146891, - [SMALL_STATE(2308)] = 146956, - [SMALL_STATE(2309)] = 147005, - [SMALL_STATE(2310)] = 147070, - [SMALL_STATE(2311)] = 147119, - [SMALL_STATE(2312)] = 147168, - [SMALL_STATE(2313)] = 147233, - [SMALL_STATE(2314)] = 147272, - [SMALL_STATE(2315)] = 147321, - [SMALL_STATE(2316)] = 147370, - [SMALL_STATE(2317)] = 147419, - [SMALL_STATE(2318)] = 147484, - [SMALL_STATE(2319)] = 147533, - [SMALL_STATE(2320)] = 147582, - [SMALL_STATE(2321)] = 147647, - [SMALL_STATE(2322)] = 147696, - [SMALL_STATE(2323)] = 147745, - [SMALL_STATE(2324)] = 147794, - [SMALL_STATE(2325)] = 147843, - [SMALL_STATE(2326)] = 147908, - [SMALL_STATE(2327)] = 147957, - [SMALL_STATE(2328)] = 148006, - [SMALL_STATE(2329)] = 148055, - [SMALL_STATE(2330)] = 148104, - [SMALL_STATE(2331)] = 148143, - [SMALL_STATE(2332)] = 148192, - [SMALL_STATE(2333)] = 148241, - [SMALL_STATE(2334)] = 148290, - [SMALL_STATE(2335)] = 148339, - [SMALL_STATE(2336)] = 148388, - [SMALL_STATE(2337)] = 148437, - [SMALL_STATE(2338)] = 148486, - [SMALL_STATE(2339)] = 148535, - [SMALL_STATE(2340)] = 148600, - [SMALL_STATE(2341)] = 148649, - [SMALL_STATE(2342)] = 148698, - [SMALL_STATE(2343)] = 148747, - [SMALL_STATE(2344)] = 148796, - [SMALL_STATE(2345)] = 148845, - [SMALL_STATE(2346)] = 148910, - [SMALL_STATE(2347)] = 148949, - [SMALL_STATE(2348)] = 148998, - [SMALL_STATE(2349)] = 149063, - [SMALL_STATE(2350)] = 149112, - [SMALL_STATE(2351)] = 149161, - [SMALL_STATE(2352)] = 149210, - [SMALL_STATE(2353)] = 149259, - [SMALL_STATE(2354)] = 149308, - [SMALL_STATE(2355)] = 149357, - [SMALL_STATE(2356)] = 149406, - [SMALL_STATE(2357)] = 149455, - [SMALL_STATE(2358)] = 149504, - [SMALL_STATE(2359)] = 149569, - [SMALL_STATE(2360)] = 149618, - [SMALL_STATE(2361)] = 149667, - [SMALL_STATE(2362)] = 149706, - [SMALL_STATE(2363)] = 149755, - [SMALL_STATE(2364)] = 149804, - [SMALL_STATE(2365)] = 149853, - [SMALL_STATE(2366)] = 149902, - [SMALL_STATE(2367)] = 149967, - [SMALL_STATE(2368)] = 150016, - [SMALL_STATE(2369)] = 150081, - [SMALL_STATE(2370)] = 150146, - [SMALL_STATE(2371)] = 150211, - [SMALL_STATE(2372)] = 150260, - [SMALL_STATE(2373)] = 150309, - [SMALL_STATE(2374)] = 150374, - [SMALL_STATE(2375)] = 150423, - [SMALL_STATE(2376)] = 150488, - [SMALL_STATE(2377)] = 150537, - [SMALL_STATE(2378)] = 150602, - [SMALL_STATE(2379)] = 150667, - [SMALL_STATE(2380)] = 150716, - [SMALL_STATE(2381)] = 150765, - [SMALL_STATE(2382)] = 150830, - [SMALL_STATE(2383)] = 150879, - [SMALL_STATE(2384)] = 150944, - [SMALL_STATE(2385)] = 150993, - [SMALL_STATE(2386)] = 151058, - [SMALL_STATE(2387)] = 151107, - [SMALL_STATE(2388)] = 151172, - [SMALL_STATE(2389)] = 151237, - [SMALL_STATE(2390)] = 151276, - [SMALL_STATE(2391)] = 151325, - [SMALL_STATE(2392)] = 151374, - [SMALL_STATE(2393)] = 151439, - [SMALL_STATE(2394)] = 151488, - [SMALL_STATE(2395)] = 151537, - [SMALL_STATE(2396)] = 151586, - [SMALL_STATE(2397)] = 151635, - [SMALL_STATE(2398)] = 151684, - [SMALL_STATE(2399)] = 151749, - [SMALL_STATE(2400)] = 151814, - [SMALL_STATE(2401)] = 151879, - [SMALL_STATE(2402)] = 151918, - [SMALL_STATE(2403)] = 151983, - [SMALL_STATE(2404)] = 152032, - [SMALL_STATE(2405)] = 152070, - [SMALL_STATE(2406)] = 152104, - [SMALL_STATE(2407)] = 152142, - [SMALL_STATE(2408)] = 152176, - [SMALL_STATE(2409)] = 152210, - [SMALL_STATE(2410)] = 152244, - [SMALL_STATE(2411)] = 152278, - [SMALL_STATE(2412)] = 152312, - [SMALL_STATE(2413)] = 152346, - [SMALL_STATE(2414)] = 152380, - [SMALL_STATE(2415)] = 152414, - [SMALL_STATE(2416)] = 152448, - [SMALL_STATE(2417)] = 152482, - [SMALL_STATE(2418)] = 152516, - [SMALL_STATE(2419)] = 152554, - [SMALL_STATE(2420)] = 152588, - [SMALL_STATE(2421)] = 152622, - [SMALL_STATE(2422)] = 152656, - [SMALL_STATE(2423)] = 152690, - [SMALL_STATE(2424)] = 152724, - [SMALL_STATE(2425)] = 152758, - [SMALL_STATE(2426)] = 152792, - [SMALL_STATE(2427)] = 152830, - [SMALL_STATE(2428)] = 152864, - [SMALL_STATE(2429)] = 152898, - [SMALL_STATE(2430)] = 152932, - [SMALL_STATE(2431)] = 152968, - [SMALL_STATE(2432)] = 153001, - [SMALL_STATE(2433)] = 153034, - [SMALL_STATE(2434)] = 153067, - [SMALL_STATE(2435)] = 153100, - [SMALL_STATE(2436)] = 153133, - [SMALL_STATE(2437)] = 153166, - [SMALL_STATE(2438)] = 153199, - [SMALL_STATE(2439)] = 153232, - [SMALL_STATE(2440)] = 153265, - [SMALL_STATE(2441)] = 153298, - [SMALL_STATE(2442)] = 153331, - [SMALL_STATE(2443)] = 153366, - [SMALL_STATE(2444)] = 153399, - [SMALL_STATE(2445)] = 153432, - [SMALL_STATE(2446)] = 153467, - [SMALL_STATE(2447)] = 153500, - [SMALL_STATE(2448)] = 153533, - [SMALL_STATE(2449)] = 153582, - [SMALL_STATE(2450)] = 153615, - [SMALL_STATE(2451)] = 153648, - [SMALL_STATE(2452)] = 153681, - [SMALL_STATE(2453)] = 153714, - [SMALL_STATE(2454)] = 153763, - [SMALL_STATE(2455)] = 153812, - [SMALL_STATE(2456)] = 153845, - [SMALL_STATE(2457)] = 153894, - [SMALL_STATE(2458)] = 153929, - [SMALL_STATE(2459)] = 153962, - [SMALL_STATE(2460)] = 154011, - [SMALL_STATE(2461)] = 154044, - [SMALL_STATE(2462)] = 154093, - [SMALL_STATE(2463)] = 154129, - [SMALL_STATE(2464)] = 154175, - [SMALL_STATE(2465)] = 154221, - [SMALL_STATE(2466)] = 154267, - [SMALL_STATE(2467)] = 154313, - [SMALL_STATE(2468)] = 154359, - [SMALL_STATE(2469)] = 154405, - [SMALL_STATE(2470)] = 154451, - [SMALL_STATE(2471)] = 154511, - [SMALL_STATE(2472)] = 154557, - [SMALL_STATE(2473)] = 154603, - [SMALL_STATE(2474)] = 154649, - [SMALL_STATE(2475)] = 154695, - [SMALL_STATE(2476)] = 154755, - [SMALL_STATE(2477)] = 154801, - [SMALL_STATE(2478)] = 154847, - [SMALL_STATE(2479)] = 154893, - [SMALL_STATE(2480)] = 154939, - [SMALL_STATE(2481)] = 154999, - [SMALL_STATE(2482)] = 155045, - [SMALL_STATE(2483)] = 155091, - [SMALL_STATE(2484)] = 155137, - [SMALL_STATE(2485)] = 155173, - [SMALL_STATE(2486)] = 155219, - [SMALL_STATE(2487)] = 155279, - [SMALL_STATE(2488)] = 155325, - [SMALL_STATE(2489)] = 155371, - [SMALL_STATE(2490)] = 155417, - [SMALL_STATE(2491)] = 155463, - [SMALL_STATE(2492)] = 155509, - [SMALL_STATE(2493)] = 155569, - [SMALL_STATE(2494)] = 155629, - [SMALL_STATE(2495)] = 155675, - [SMALL_STATE(2496)] = 155735, - [SMALL_STATE(2497)] = 155781, - [SMALL_STATE(2498)] = 155827, - [SMALL_STATE(2499)] = 155887, - [SMALL_STATE(2500)] = 155933, - [SMALL_STATE(2501)] = 155979, - [SMALL_STATE(2502)] = 156025, - [SMALL_STATE(2503)] = 156071, - [SMALL_STATE(2504)] = 156117, - [SMALL_STATE(2505)] = 156177, - [SMALL_STATE(2506)] = 156223, - [SMALL_STATE(2507)] = 156269, - [SMALL_STATE(2508)] = 156315, - [SMALL_STATE(2509)] = 156361, - [SMALL_STATE(2510)] = 156407, - [SMALL_STATE(2511)] = 156467, - [SMALL_STATE(2512)] = 156513, - [SMALL_STATE(2513)] = 156559, - [SMALL_STATE(2514)] = 156605, - [SMALL_STATE(2515)] = 156651, - [SMALL_STATE(2516)] = 156697, - [SMALL_STATE(2517)] = 156757, - [SMALL_STATE(2518)] = 156803, - [SMALL_STATE(2519)] = 156849, - [SMALL_STATE(2520)] = 156895, - [SMALL_STATE(2521)] = 156941, - [SMALL_STATE(2522)] = 157001, - [SMALL_STATE(2523)] = 157061, - [SMALL_STATE(2524)] = 157107, - [SMALL_STATE(2525)] = 157153, - [SMALL_STATE(2526)] = 157199, - [SMALL_STATE(2527)] = 157235, - [SMALL_STATE(2528)] = 157281, - [SMALL_STATE(2529)] = 157341, - [SMALL_STATE(2530)] = 157387, - [SMALL_STATE(2531)] = 157433, - [SMALL_STATE(2532)] = 157469, - [SMALL_STATE(2533)] = 157515, - [SMALL_STATE(2534)] = 157561, - [SMALL_STATE(2535)] = 157593, - [SMALL_STATE(2536)] = 157639, - [SMALL_STATE(2537)] = 157685, - [SMALL_STATE(2538)] = 157731, - [SMALL_STATE(2539)] = 157777, - [SMALL_STATE(2540)] = 157823, - [SMALL_STATE(2541)] = 157869, - [SMALL_STATE(2542)] = 157901, - [SMALL_STATE(2543)] = 157947, - [SMALL_STATE(2544)] = 157993, - [SMALL_STATE(2545)] = 158039, - [SMALL_STATE(2546)] = 158085, - [SMALL_STATE(2547)] = 158131, - [SMALL_STATE(2548)] = 158177, - [SMALL_STATE(2549)] = 158223, - [SMALL_STATE(2550)] = 158283, - [SMALL_STATE(2551)] = 158329, - [SMALL_STATE(2552)] = 158375, - [SMALL_STATE(2553)] = 158421, - [SMALL_STATE(2554)] = 158467, - [SMALL_STATE(2555)] = 158513, - [SMALL_STATE(2556)] = 158559, - [SMALL_STATE(2557)] = 158591, - [SMALL_STATE(2558)] = 158637, - [SMALL_STATE(2559)] = 158683, - [SMALL_STATE(2560)] = 158729, - [SMALL_STATE(2561)] = 158775, - [SMALL_STATE(2562)] = 158807, - [SMALL_STATE(2563)] = 158853, - [SMALL_STATE(2564)] = 158899, - [SMALL_STATE(2565)] = 158945, - [SMALL_STATE(2566)] = 158991, - [SMALL_STATE(2567)] = 159037, - [SMALL_STATE(2568)] = 159083, - [SMALL_STATE(2569)] = 159129, - [SMALL_STATE(2570)] = 159175, - [SMALL_STATE(2571)] = 159221, - [SMALL_STATE(2572)] = 159267, - [SMALL_STATE(2573)] = 159313, - [SMALL_STATE(2574)] = 159373, - [SMALL_STATE(2575)] = 159419, - [SMALL_STATE(2576)] = 159465, - [SMALL_STATE(2577)] = 159501, - [SMALL_STATE(2578)] = 159533, - [SMALL_STATE(2579)] = 159565, - [SMALL_STATE(2580)] = 159611, - [SMALL_STATE(2581)] = 159647, - [SMALL_STATE(2582)] = 159679, - [SMALL_STATE(2583)] = 159725, - [SMALL_STATE(2584)] = 159785, - [SMALL_STATE(2585)] = 159817, - [SMALL_STATE(2586)] = 159863, - [SMALL_STATE(2587)] = 159909, - [SMALL_STATE(2588)] = 159955, - [SMALL_STATE(2589)] = 160001, - [SMALL_STATE(2590)] = 160047, - [SMALL_STATE(2591)] = 160093, - [SMALL_STATE(2592)] = 160139, - [SMALL_STATE(2593)] = 160185, - [SMALL_STATE(2594)] = 160231, - [SMALL_STATE(2595)] = 160277, - [SMALL_STATE(2596)] = 160323, - [SMALL_STATE(2597)] = 160369, - [SMALL_STATE(2598)] = 160415, - [SMALL_STATE(2599)] = 160461, - [SMALL_STATE(2600)] = 160507, - [SMALL_STATE(2601)] = 160553, - [SMALL_STATE(2602)] = 160599, - [SMALL_STATE(2603)] = 160659, - [SMALL_STATE(2604)] = 160719, - [SMALL_STATE(2605)] = 160765, - [SMALL_STATE(2606)] = 160811, - [SMALL_STATE(2607)] = 160857, - [SMALL_STATE(2608)] = 160903, - [SMALL_STATE(2609)] = 160935, - [SMALL_STATE(2610)] = 160981, - [SMALL_STATE(2611)] = 161027, - [SMALL_STATE(2612)] = 161073, - [SMALL_STATE(2613)] = 161119, - [SMALL_STATE(2614)] = 161155, - [SMALL_STATE(2615)] = 161201, - [SMALL_STATE(2616)] = 161247, - [SMALL_STATE(2617)] = 161283, - [SMALL_STATE(2618)] = 161329, - [SMALL_STATE(2619)] = 161375, - [SMALL_STATE(2620)] = 161421, - [SMALL_STATE(2621)] = 161467, - [SMALL_STATE(2622)] = 161513, - [SMALL_STATE(2623)] = 161559, - [SMALL_STATE(2624)] = 161605, - [SMALL_STATE(2625)] = 161651, - [SMALL_STATE(2626)] = 161697, - [SMALL_STATE(2627)] = 161743, - [SMALL_STATE(2628)] = 161789, - [SMALL_STATE(2629)] = 161835, - [SMALL_STATE(2630)] = 161881, - [SMALL_STATE(2631)] = 161941, - [SMALL_STATE(2632)] = 161987, - [SMALL_STATE(2633)] = 162019, - [SMALL_STATE(2634)] = 162065, - [SMALL_STATE(2635)] = 162111, - [SMALL_STATE(2636)] = 162157, - [SMALL_STATE(2637)] = 162203, - [SMALL_STATE(2638)] = 162249, - [SMALL_STATE(2639)] = 162306, - [SMALL_STATE(2640)] = 162363, - [SMALL_STATE(2641)] = 162420, - [SMALL_STATE(2642)] = 162455, - [SMALL_STATE(2643)] = 162490, - [SMALL_STATE(2644)] = 162525, - [SMALL_STATE(2645)] = 162560, - [SMALL_STATE(2646)] = 162595, - [SMALL_STATE(2647)] = 162630, - [SMALL_STATE(2648)] = 162687, - [SMALL_STATE(2649)] = 162722, - [SMALL_STATE(2650)] = 162757, - [SMALL_STATE(2651)] = 162814, - [SMALL_STATE(2652)] = 162871, - [SMALL_STATE(2653)] = 162928, - [SMALL_STATE(2654)] = 162985, - [SMALL_STATE(2655)] = 163042, - [SMALL_STATE(2656)] = 163099, - [SMALL_STATE(2657)] = 163156, - [SMALL_STATE(2658)] = 163213, - [SMALL_STATE(2659)] = 163270, - [SMALL_STATE(2660)] = 163327, - [SMALL_STATE(2661)] = 163384, - [SMALL_STATE(2662)] = 163441, - [SMALL_STATE(2663)] = 163498, - [SMALL_STATE(2664)] = 163555, - [SMALL_STATE(2665)] = 163612, - [SMALL_STATE(2666)] = 163644, - [SMALL_STATE(2667)] = 163674, - [SMALL_STATE(2668)] = 163704, - [SMALL_STATE(2669)] = 163734, - [SMALL_STATE(2670)] = 163764, - [SMALL_STATE(2671)] = 163794, - [SMALL_STATE(2672)] = 163824, - [SMALL_STATE(2673)] = 163854, - [SMALL_STATE(2674)] = 163886, - [SMALL_STATE(2675)] = 163916, - [SMALL_STATE(2676)] = 163946, - [SMALL_STATE(2677)] = 163976, - [SMALL_STATE(2678)] = 164006, - [SMALL_STATE(2679)] = 164036, - [SMALL_STATE(2680)] = 164068, - [SMALL_STATE(2681)] = 164098, - [SMALL_STATE(2682)] = 164128, - [SMALL_STATE(2683)] = 164158, - [SMALL_STATE(2684)] = 164188, - [SMALL_STATE(2685)] = 164218, - [SMALL_STATE(2686)] = 164248, - [SMALL_STATE(2687)] = 164278, - [SMALL_STATE(2688)] = 164308, - [SMALL_STATE(2689)] = 164338, - [SMALL_STATE(2690)] = 164370, - [SMALL_STATE(2691)] = 164402, - [SMALL_STATE(2692)] = 164432, - [SMALL_STATE(2693)] = 164462, - [SMALL_STATE(2694)] = 164492, - [SMALL_STATE(2695)] = 164522, - [SMALL_STATE(2696)] = 164552, - [SMALL_STATE(2697)] = 164582, - [SMALL_STATE(2698)] = 164612, - [SMALL_STATE(2699)] = 164642, - [SMALL_STATE(2700)] = 164672, - [SMALL_STATE(2701)] = 164702, - [SMALL_STATE(2702)] = 164732, - [SMALL_STATE(2703)] = 164762, - [SMALL_STATE(2704)] = 164792, - [SMALL_STATE(2705)] = 164822, - [SMALL_STATE(2706)] = 164852, - [SMALL_STATE(2707)] = 164882, - [SMALL_STATE(2708)] = 164912, - [SMALL_STATE(2709)] = 164942, - [SMALL_STATE(2710)] = 164972, - [SMALL_STATE(2711)] = 165002, - [SMALL_STATE(2712)] = 165032, - [SMALL_STATE(2713)] = 165062, - [SMALL_STATE(2714)] = 165096, - [SMALL_STATE(2715)] = 165130, - [SMALL_STATE(2716)] = 165162, - [SMALL_STATE(2717)] = 165192, - [SMALL_STATE(2718)] = 165221, - [SMALL_STATE(2719)] = 165252, - [SMALL_STATE(2720)] = 165281, - [SMALL_STATE(2721)] = 165310, - [SMALL_STATE(2722)] = 165339, - [SMALL_STATE(2723)] = 165368, - [SMALL_STATE(2724)] = 165397, - [SMALL_STATE(2725)] = 165426, - [SMALL_STATE(2726)] = 165455, - [SMALL_STATE(2727)] = 165484, - [SMALL_STATE(2728)] = 165513, - [SMALL_STATE(2729)] = 165542, - [SMALL_STATE(2730)] = 165571, - [SMALL_STATE(2731)] = 165600, - [SMALL_STATE(2732)] = 165629, - [SMALL_STATE(2733)] = 165658, - [SMALL_STATE(2734)] = 165687, - [SMALL_STATE(2735)] = 165716, - [SMALL_STATE(2736)] = 165745, - [SMALL_STATE(2737)] = 165774, - [SMALL_STATE(2738)] = 165803, - [SMALL_STATE(2739)] = 165832, - [SMALL_STATE(2740)] = 165861, - [SMALL_STATE(2741)] = 165890, - [SMALL_STATE(2742)] = 165919, - [SMALL_STATE(2743)] = 165948, - [SMALL_STATE(2744)] = 165977, - [SMALL_STATE(2745)] = 166006, - [SMALL_STATE(2746)] = 166035, - [SMALL_STATE(2747)] = 166064, - [SMALL_STATE(2748)] = 166093, - [SMALL_STATE(2749)] = 166122, - [SMALL_STATE(2750)] = 166151, - [SMALL_STATE(2751)] = 166180, - [SMALL_STATE(2752)] = 166209, - [SMALL_STATE(2753)] = 166238, - [SMALL_STATE(2754)] = 166267, - [SMALL_STATE(2755)] = 166296, - [SMALL_STATE(2756)] = 166325, - [SMALL_STATE(2757)] = 166354, - [SMALL_STATE(2758)] = 166383, - [SMALL_STATE(2759)] = 166412, - [SMALL_STATE(2760)] = 166441, - [SMALL_STATE(2761)] = 166473, - [SMALL_STATE(2762)] = 166505, - [SMALL_STATE(2763)] = 166537, - [SMALL_STATE(2764)] = 166569, - [SMALL_STATE(2765)] = 166601, - [SMALL_STATE(2766)] = 166633, - [SMALL_STATE(2767)] = 166665, - [SMALL_STATE(2768)] = 166697, - [SMALL_STATE(2769)] = 166729, - [SMALL_STATE(2770)] = 166775, - [SMALL_STATE(2771)] = 166821, - [SMALL_STATE(2772)] = 166867, - [SMALL_STATE(2773)] = 166913, - [SMALL_STATE(2774)] = 166959, - [SMALL_STATE(2775)] = 167005, - [SMALL_STATE(2776)] = 167051, - [SMALL_STATE(2777)] = 167097, - [SMALL_STATE(2778)] = 167143, - [SMALL_STATE(2779)] = 167189, - [SMALL_STATE(2780)] = 167235, - [SMALL_STATE(2781)] = 167281, - [SMALL_STATE(2782)] = 167327, - [SMALL_STATE(2783)] = 167373, - [SMALL_STATE(2784)] = 167419, - [SMALL_STATE(2785)] = 167465, - [SMALL_STATE(2786)] = 167511, - [SMALL_STATE(2787)] = 167557, - [SMALL_STATE(2788)] = 167603, - [SMALL_STATE(2789)] = 167649, - [SMALL_STATE(2790)] = 167695, - [SMALL_STATE(2791)] = 167741, - [SMALL_STATE(2792)] = 167787, - [SMALL_STATE(2793)] = 167833, - [SMALL_STATE(2794)] = 167879, - [SMALL_STATE(2795)] = 167925, - [SMALL_STATE(2796)] = 167971, - [SMALL_STATE(2797)] = 168017, - [SMALL_STATE(2798)] = 168063, - [SMALL_STATE(2799)] = 168109, - [SMALL_STATE(2800)] = 168155, - [SMALL_STATE(2801)] = 168201, - [SMALL_STATE(2802)] = 168247, - [SMALL_STATE(2803)] = 168293, - [SMALL_STATE(2804)] = 168339, - [SMALL_STATE(2805)] = 168385, - [SMALL_STATE(2806)] = 168431, - [SMALL_STATE(2807)] = 168477, - [SMALL_STATE(2808)] = 168523, - [SMALL_STATE(2809)] = 168569, - [SMALL_STATE(2810)] = 168615, - [SMALL_STATE(2811)] = 168661, - [SMALL_STATE(2812)] = 168707, - [SMALL_STATE(2813)] = 168753, - [SMALL_STATE(2814)] = 168799, - [SMALL_STATE(2815)] = 168845, - [SMALL_STATE(2816)] = 168891, - [SMALL_STATE(2817)] = 168937, - [SMALL_STATE(2818)] = 168983, - [SMALL_STATE(2819)] = 169029, - [SMALL_STATE(2820)] = 169075, - [SMALL_STATE(2821)] = 169121, - [SMALL_STATE(2822)] = 169167, - [SMALL_STATE(2823)] = 169213, - [SMALL_STATE(2824)] = 169259, - [SMALL_STATE(2825)] = 169305, - [SMALL_STATE(2826)] = 169351, - [SMALL_STATE(2827)] = 169397, - [SMALL_STATE(2828)] = 169443, - [SMALL_STATE(2829)] = 169489, - [SMALL_STATE(2830)] = 169535, - [SMALL_STATE(2831)] = 169581, - [SMALL_STATE(2832)] = 169627, - [SMALL_STATE(2833)] = 169673, - [SMALL_STATE(2834)] = 169719, - [SMALL_STATE(2835)] = 169765, - [SMALL_STATE(2836)] = 169811, - [SMALL_STATE(2837)] = 169857, - [SMALL_STATE(2838)] = 169903, - [SMALL_STATE(2839)] = 169949, - [SMALL_STATE(2840)] = 169995, - [SMALL_STATE(2841)] = 170041, - [SMALL_STATE(2842)] = 170087, - [SMALL_STATE(2843)] = 170133, - [SMALL_STATE(2844)] = 170179, - [SMALL_STATE(2845)] = 170225, - [SMALL_STATE(2846)] = 170271, - [SMALL_STATE(2847)] = 170317, - [SMALL_STATE(2848)] = 170363, - [SMALL_STATE(2849)] = 170409, - [SMALL_STATE(2850)] = 170455, - [SMALL_STATE(2851)] = 170501, - [SMALL_STATE(2852)] = 170547, - [SMALL_STATE(2853)] = 170593, - [SMALL_STATE(2854)] = 170639, - [SMALL_STATE(2855)] = 170685, - [SMALL_STATE(2856)] = 170731, - [SMALL_STATE(2857)] = 170777, - [SMALL_STATE(2858)] = 170823, - [SMALL_STATE(2859)] = 170869, - [SMALL_STATE(2860)] = 170915, - [SMALL_STATE(2861)] = 170961, - [SMALL_STATE(2862)] = 171007, - [SMALL_STATE(2863)] = 171053, - [SMALL_STATE(2864)] = 171099, - [SMALL_STATE(2865)] = 171145, - [SMALL_STATE(2866)] = 171191, - [SMALL_STATE(2867)] = 171237, - [SMALL_STATE(2868)] = 171283, - [SMALL_STATE(2869)] = 171329, - [SMALL_STATE(2870)] = 171375, - [SMALL_STATE(2871)] = 171421, - [SMALL_STATE(2872)] = 171467, - [SMALL_STATE(2873)] = 171513, - [SMALL_STATE(2874)] = 171559, - [SMALL_STATE(2875)] = 171605, - [SMALL_STATE(2876)] = 171651, - [SMALL_STATE(2877)] = 171697, - [SMALL_STATE(2878)] = 171743, - [SMALL_STATE(2879)] = 171789, - [SMALL_STATE(2880)] = 171835, - [SMALL_STATE(2881)] = 171881, - [SMALL_STATE(2882)] = 171927, - [SMALL_STATE(2883)] = 171973, - [SMALL_STATE(2884)] = 172019, - [SMALL_STATE(2885)] = 172065, - [SMALL_STATE(2886)] = 172111, - [SMALL_STATE(2887)] = 172157, - [SMALL_STATE(2888)] = 172203, - [SMALL_STATE(2889)] = 172249, - [SMALL_STATE(2890)] = 172295, - [SMALL_STATE(2891)] = 172341, - [SMALL_STATE(2892)] = 172387, - [SMALL_STATE(2893)] = 172433, - [SMALL_STATE(2894)] = 172479, - [SMALL_STATE(2895)] = 172525, - [SMALL_STATE(2896)] = 172571, - [SMALL_STATE(2897)] = 172617, - [SMALL_STATE(2898)] = 172663, - [SMALL_STATE(2899)] = 172709, - [SMALL_STATE(2900)] = 172755, - [SMALL_STATE(2901)] = 172785, - [SMALL_STATE(2902)] = 172831, - [SMALL_STATE(2903)] = 172877, - [SMALL_STATE(2904)] = 172907, - [SMALL_STATE(2905)] = 172953, - [SMALL_STATE(2906)] = 172999, - [SMALL_STATE(2907)] = 173045, - [SMALL_STATE(2908)] = 173091, - [SMALL_STATE(2909)] = 173137, - [SMALL_STATE(2910)] = 173183, - [SMALL_STATE(2911)] = 173229, - [SMALL_STATE(2912)] = 173275, - [SMALL_STATE(2913)] = 173300, - [SMALL_STATE(2914)] = 173325, - [SMALL_STATE(2915)] = 173350, - [SMALL_STATE(2916)] = 173375, - [SMALL_STATE(2917)] = 173400, - [SMALL_STATE(2918)] = 173425, - [SMALL_STATE(2919)] = 173450, - [SMALL_STATE(2920)] = 173475, - [SMALL_STATE(2921)] = 173500, - [SMALL_STATE(2922)] = 173525, - [SMALL_STATE(2923)] = 173550, - [SMALL_STATE(2924)] = 173575, - [SMALL_STATE(2925)] = 173600, - [SMALL_STATE(2926)] = 173629, - [SMALL_STATE(2927)] = 173654, - [SMALL_STATE(2928)] = 173679, - [SMALL_STATE(2929)] = 173704, - [SMALL_STATE(2930)] = 173729, - [SMALL_STATE(2931)] = 173754, - [SMALL_STATE(2932)] = 173779, - [SMALL_STATE(2933)] = 173804, - [SMALL_STATE(2934)] = 173829, - [SMALL_STATE(2935)] = 173854, - [SMALL_STATE(2936)] = 173879, - [SMALL_STATE(2937)] = 173904, - [SMALL_STATE(2938)] = 173929, - [SMALL_STATE(2939)] = 173954, - [SMALL_STATE(2940)] = 173979, - [SMALL_STATE(2941)] = 174004, - [SMALL_STATE(2942)] = 174029, - [SMALL_STATE(2943)] = 174054, - [SMALL_STATE(2944)] = 174079, - [SMALL_STATE(2945)] = 174104, - [SMALL_STATE(2946)] = 174131, - [SMALL_STATE(2947)] = 174156, - [SMALL_STATE(2948)] = 174181, - [SMALL_STATE(2949)] = 174206, - [SMALL_STATE(2950)] = 174231, - [SMALL_STATE(2951)] = 174256, - [SMALL_STATE(2952)] = 174281, - [SMALL_STATE(2953)] = 174306, - [SMALL_STATE(2954)] = 174331, - [SMALL_STATE(2955)] = 174356, - [SMALL_STATE(2956)] = 174381, - [SMALL_STATE(2957)] = 174406, - [SMALL_STATE(2958)] = 174430, - [SMALL_STATE(2959)] = 174454, - [SMALL_STATE(2960)] = 174478, - [SMALL_STATE(2961)] = 174502, - [SMALL_STATE(2962)] = 174525, - [SMALL_STATE(2963)] = 174548, - [SMALL_STATE(2964)] = 174571, - [SMALL_STATE(2965)] = 174594, - [SMALL_STATE(2966)] = 174617, - [SMALL_STATE(2967)] = 174640, - [SMALL_STATE(2968)] = 174663, - [SMALL_STATE(2969)] = 174686, - [SMALL_STATE(2970)] = 174709, - [SMALL_STATE(2971)] = 174732, - [SMALL_STATE(2972)] = 174755, - [SMALL_STATE(2973)] = 174778, - [SMALL_STATE(2974)] = 174801, - [SMALL_STATE(2975)] = 174824, - [SMALL_STATE(2976)] = 174847, - [SMALL_STATE(2977)] = 174870, - [SMALL_STATE(2978)] = 174893, - [SMALL_STATE(2979)] = 174916, - [SMALL_STATE(2980)] = 174939, - [SMALL_STATE(2981)] = 174962, - [SMALL_STATE(2982)] = 174985, - [SMALL_STATE(2983)] = 175008, - [SMALL_STATE(2984)] = 175031, - [SMALL_STATE(2985)] = 175054, - [SMALL_STATE(2986)] = 175077, - [SMALL_STATE(2987)] = 175100, - [SMALL_STATE(2988)] = 175123, - [SMALL_STATE(2989)] = 175149, - [SMALL_STATE(2990)] = 175171, - [SMALL_STATE(2991)] = 175193, - [SMALL_STATE(2992)] = 175215, - [SMALL_STATE(2993)] = 175241, - [SMALL_STATE(2994)] = 175263, - [SMALL_STATE(2995)] = 175285, - [SMALL_STATE(2996)] = 175311, - [SMALL_STATE(2997)] = 175333, - [SMALL_STATE(2998)] = 175355, - [SMALL_STATE(2999)] = 175377, - [SMALL_STATE(3000)] = 175399, - [SMALL_STATE(3001)] = 175421, - [SMALL_STATE(3002)] = 175443, - [SMALL_STATE(3003)] = 175465, - [SMALL_STATE(3004)] = 175487, - [SMALL_STATE(3005)] = 175513, - [SMALL_STATE(3006)] = 175539, - [SMALL_STATE(3007)] = 175565, - [SMALL_STATE(3008)] = 175591, - [SMALL_STATE(3009)] = 175613, - [SMALL_STATE(3010)] = 175635, - [SMALL_STATE(3011)] = 175657, - [SMALL_STATE(3012)] = 175679, - [SMALL_STATE(3013)] = 175701, - [SMALL_STATE(3014)] = 175726, - [SMALL_STATE(3015)] = 175751, - [SMALL_STATE(3016)] = 175772, - [SMALL_STATE(3017)] = 175807, - [SMALL_STATE(3018)] = 175832, - [SMALL_STATE(3019)] = 175857, - [SMALL_STATE(3020)] = 175878, - [SMALL_STATE(3021)] = 175901, - [SMALL_STATE(3022)] = 175922, - [SMALL_STATE(3023)] = 175957, - [SMALL_STATE(3024)] = 175978, - [SMALL_STATE(3025)] = 175999, - [SMALL_STATE(3026)] = 176020, - [SMALL_STATE(3027)] = 176041, - [SMALL_STATE(3028)] = 176062, - [SMALL_STATE(3029)] = 176083, - [SMALL_STATE(3030)] = 176108, - [SMALL_STATE(3031)] = 176129, - [SMALL_STATE(3032)] = 176150, - [SMALL_STATE(3033)] = 176171, - [SMALL_STATE(3034)] = 176192, - [SMALL_STATE(3035)] = 176227, - [SMALL_STATE(3036)] = 176248, - [SMALL_STATE(3037)] = 176269, - [SMALL_STATE(3038)] = 176290, - [SMALL_STATE(3039)] = 176311, - [SMALL_STATE(3040)] = 176332, - [SMALL_STATE(3041)] = 176353, - [SMALL_STATE(3042)] = 176374, - [SMALL_STATE(3043)] = 176395, - [SMALL_STATE(3044)] = 176420, - [SMALL_STATE(3045)] = 176441, - [SMALL_STATE(3046)] = 176461, - [SMALL_STATE(3047)] = 176495, - [SMALL_STATE(3048)] = 176529, - [SMALL_STATE(3049)] = 176563, - [SMALL_STATE(3050)] = 176583, - [SMALL_STATE(3051)] = 176617, - [SMALL_STATE(3052)] = 176651, - [SMALL_STATE(3053)] = 176685, - [SMALL_STATE(3054)] = 176705, - [SMALL_STATE(3055)] = 176739, - [SMALL_STATE(3056)] = 176773, - [SMALL_STATE(3057)] = 176807, - [SMALL_STATE(3058)] = 176827, - [SMALL_STATE(3059)] = 176850, - [SMALL_STATE(3060)] = 176869, - [SMALL_STATE(3061)] = 176892, - [SMALL_STATE(3062)] = 176911, - [SMALL_STATE(3063)] = 176930, - [SMALL_STATE(3064)] = 176949, - [SMALL_STATE(3065)] = 176968, - [SMALL_STATE(3066)] = 176991, - [SMALL_STATE(3067)] = 177010, - [SMALL_STATE(3068)] = 177029, - [SMALL_STATE(3069)] = 177052, - [SMALL_STATE(3070)] = 177071, - [SMALL_STATE(3071)] = 177094, - [SMALL_STATE(3072)] = 177117, - [SMALL_STATE(3073)] = 177140, - [SMALL_STATE(3074)] = 177163, - [SMALL_STATE(3075)] = 177182, - [SMALL_STATE(3076)] = 177201, - [SMALL_STATE(3077)] = 177224, - [SMALL_STATE(3078)] = 177243, - [SMALL_STATE(3079)] = 177262, - [SMALL_STATE(3080)] = 177281, - [SMALL_STATE(3081)] = 177300, - [SMALL_STATE(3082)] = 177319, - [SMALL_STATE(3083)] = 177338, - [SMALL_STATE(3084)] = 177361, - [SMALL_STATE(3085)] = 177384, - [SMALL_STATE(3086)] = 177409, - [SMALL_STATE(3087)] = 177432, - [SMALL_STATE(3088)] = 177451, - [SMALL_STATE(3089)] = 177470, - [SMALL_STATE(3090)] = 177493, - [SMALL_STATE(3091)] = 177516, - [SMALL_STATE(3092)] = 177539, - [SMALL_STATE(3093)] = 177562, - [SMALL_STATE(3094)] = 177581, - [SMALL_STATE(3095)] = 177604, - [SMALL_STATE(3096)] = 177623, - [SMALL_STATE(3097)] = 177646, - [SMALL_STATE(3098)] = 177665, - [SMALL_STATE(3099)] = 177688, - [SMALL_STATE(3100)] = 177711, - [SMALL_STATE(3101)] = 177734, - [SMALL_STATE(3102)] = 177753, - [SMALL_STATE(3103)] = 177776, - [SMALL_STATE(3104)] = 177795, - [SMALL_STATE(3105)] = 177818, - [SMALL_STATE(3106)] = 177841, - [SMALL_STATE(3107)] = 177864, - [SMALL_STATE(3108)] = 177887, - [SMALL_STATE(3109)] = 177910, - [SMALL_STATE(3110)] = 177929, - [SMALL_STATE(3111)] = 177952, - [SMALL_STATE(3112)] = 177975, - [SMALL_STATE(3113)] = 177998, - [SMALL_STATE(3114)] = 178017, - [SMALL_STATE(3115)] = 178040, - [SMALL_STATE(3116)] = 178059, - [SMALL_STATE(3117)] = 178082, - [SMALL_STATE(3118)] = 178105, - [SMALL_STATE(3119)] = 178128, - [SMALL_STATE(3120)] = 178147, - [SMALL_STATE(3121)] = 178166, - [SMALL_STATE(3122)] = 178185, - [SMALL_STATE(3123)] = 178204, - [SMALL_STATE(3124)] = 178223, - [SMALL_STATE(3125)] = 178246, - [SMALL_STATE(3126)] = 178265, - [SMALL_STATE(3127)] = 178284, - [SMALL_STATE(3128)] = 178309, - [SMALL_STATE(3129)] = 178334, - [SMALL_STATE(3130)] = 178359, - [SMALL_STATE(3131)] = 178378, - [SMALL_STATE(3132)] = 178403, - [SMALL_STATE(3133)] = 178428, - [SMALL_STATE(3134)] = 178447, - [SMALL_STATE(3135)] = 178466, - [SMALL_STATE(3136)] = 178485, - [SMALL_STATE(3137)] = 178508, - [SMALL_STATE(3138)] = 178531, - [SMALL_STATE(3139)] = 178550, - [SMALL_STATE(3140)] = 178573, - [SMALL_STATE(3141)] = 178592, - [SMALL_STATE(3142)] = 178611, - [SMALL_STATE(3143)] = 178629, - [SMALL_STATE(3144)] = 178661, - [SMALL_STATE(3145)] = 178679, - [SMALL_STATE(3146)] = 178697, - [SMALL_STATE(3147)] = 178721, - [SMALL_STATE(3148)] = 178741, - [SMALL_STATE(3149)] = 178759, - [SMALL_STATE(3150)] = 178777, - [SMALL_STATE(3151)] = 178795, - [SMALL_STATE(3152)] = 178813, - [SMALL_STATE(3153)] = 178831, - [SMALL_STATE(3154)] = 178853, - [SMALL_STATE(3155)] = 178871, - [SMALL_STATE(3156)] = 178895, - [SMALL_STATE(3157)] = 178913, - [SMALL_STATE(3158)] = 178931, - [SMALL_STATE(3159)] = 178955, - [SMALL_STATE(3160)] = 178973, - [SMALL_STATE(3161)] = 179005, - [SMALL_STATE(3162)] = 179037, - [SMALL_STATE(3163)] = 179069, - [SMALL_STATE(3164)] = 179101, - [SMALL_STATE(3165)] = 179123, - [SMALL_STATE(3166)] = 179147, - [SMALL_STATE(3167)] = 179171, - [SMALL_STATE(3168)] = 179189, - [SMALL_STATE(3169)] = 179207, - [SMALL_STATE(3170)] = 179231, - [SMALL_STATE(3171)] = 179249, - [SMALL_STATE(3172)] = 179273, - [SMALL_STATE(3173)] = 179291, - [SMALL_STATE(3174)] = 179315, - [SMALL_STATE(3175)] = 179347, - [SMALL_STATE(3176)] = 179369, - [SMALL_STATE(3177)] = 179401, - [SMALL_STATE(3178)] = 179419, - [SMALL_STATE(3179)] = 179451, - [SMALL_STATE(3180)] = 179469, - [SMALL_STATE(3181)] = 179493, - [SMALL_STATE(3182)] = 179515, - [SMALL_STATE(3183)] = 179547, - [SMALL_STATE(3184)] = 179571, - [SMALL_STATE(3185)] = 179595, - [SMALL_STATE(3186)] = 179613, - [SMALL_STATE(3187)] = 179631, - [SMALL_STATE(3188)] = 179663, - [SMALL_STATE(3189)] = 179681, - [SMALL_STATE(3190)] = 179703, - [SMALL_STATE(3191)] = 179721, - [SMALL_STATE(3192)] = 179739, - [SMALL_STATE(3193)] = 179763, - [SMALL_STATE(3194)] = 179781, - [SMALL_STATE(3195)] = 179803, - [SMALL_STATE(3196)] = 179835, - [SMALL_STATE(3197)] = 179853, - [SMALL_STATE(3198)] = 179877, - [SMALL_STATE(3199)] = 179895, - [SMALL_STATE(3200)] = 179913, - [SMALL_STATE(3201)] = 179933, - [SMALL_STATE(3202)] = 179951, - [SMALL_STATE(3203)] = 179969, - [SMALL_STATE(3204)] = 179987, - [SMALL_STATE(3205)] = 180005, - [SMALL_STATE(3206)] = 180023, - [SMALL_STATE(3207)] = 180041, - [SMALL_STATE(3208)] = 180059, - [SMALL_STATE(3209)] = 180077, - [SMALL_STATE(3210)] = 180101, - [SMALL_STATE(3211)] = 180125, - [SMALL_STATE(3212)] = 180143, - [SMALL_STATE(3213)] = 180175, - [SMALL_STATE(3214)] = 180193, - [SMALL_STATE(3215)] = 180217, - [SMALL_STATE(3216)] = 180235, - [SMALL_STATE(3217)] = 180259, - [SMALL_STATE(3218)] = 180277, - [SMALL_STATE(3219)] = 180295, - [SMALL_STATE(3220)] = 180313, - [SMALL_STATE(3221)] = 180345, - [SMALL_STATE(3222)] = 180363, - [SMALL_STATE(3223)] = 180395, - [SMALL_STATE(3224)] = 180427, - [SMALL_STATE(3225)] = 180451, - [SMALL_STATE(3226)] = 180469, - [SMALL_STATE(3227)] = 180487, - [SMALL_STATE(3228)] = 180514, - [SMALL_STATE(3229)] = 180531, - [SMALL_STATE(3230)] = 180548, - [SMALL_STATE(3231)] = 180575, - [SMALL_STATE(3232)] = 180602, - [SMALL_STATE(3233)] = 180629, - [SMALL_STATE(3234)] = 180656, - [SMALL_STATE(3235)] = 180683, - [SMALL_STATE(3236)] = 180710, - [SMALL_STATE(3237)] = 180737, - [SMALL_STATE(3238)] = 180764, - [SMALL_STATE(3239)] = 180791, - [SMALL_STATE(3240)] = 180818, - [SMALL_STATE(3241)] = 180845, - [SMALL_STATE(3242)] = 180872, - [SMALL_STATE(3243)] = 180889, - [SMALL_STATE(3244)] = 180916, - [SMALL_STATE(3245)] = 180943, - [SMALL_STATE(3246)] = 180970, - [SMALL_STATE(3247)] = 180997, - [SMALL_STATE(3248)] = 181024, - [SMALL_STATE(3249)] = 181051, - [SMALL_STATE(3250)] = 181078, - [SMALL_STATE(3251)] = 181105, - [SMALL_STATE(3252)] = 181132, - [SMALL_STATE(3253)] = 181159, - [SMALL_STATE(3254)] = 181186, - [SMALL_STATE(3255)] = 181213, - [SMALL_STATE(3256)] = 181240, - [SMALL_STATE(3257)] = 181257, - [SMALL_STATE(3258)] = 181284, - [SMALL_STATE(3259)] = 181311, - [SMALL_STATE(3260)] = 181338, - [SMALL_STATE(3261)] = 181365, - [SMALL_STATE(3262)] = 181392, - [SMALL_STATE(3263)] = 181419, - [SMALL_STATE(3264)] = 181446, - [SMALL_STATE(3265)] = 181473, - [SMALL_STATE(3266)] = 181500, - [SMALL_STATE(3267)] = 181517, - [SMALL_STATE(3268)] = 181544, - [SMALL_STATE(3269)] = 181571, - [SMALL_STATE(3270)] = 181588, - [SMALL_STATE(3271)] = 181605, - [SMALL_STATE(3272)] = 181622, - [SMALL_STATE(3273)] = 181649, - [SMALL_STATE(3274)] = 181676, - [SMALL_STATE(3275)] = 181703, - [SMALL_STATE(3276)] = 181719, - [SMALL_STATE(3277)] = 181741, - [SMALL_STATE(3278)] = 181761, - [SMALL_STATE(3279)] = 181777, - [SMALL_STATE(3280)] = 181793, - [SMALL_STATE(3281)] = 181809, - [SMALL_STATE(3282)] = 181829, - [SMALL_STATE(3283)] = 181845, - [SMALL_STATE(3284)] = 181861, - [SMALL_STATE(3285)] = 181877, - [SMALL_STATE(3286)] = 181893, - [SMALL_STATE(3287)] = 181909, - [SMALL_STATE(3288)] = 181925, - [SMALL_STATE(3289)] = 181941, - [SMALL_STATE(3290)] = 181957, - [SMALL_STATE(3291)] = 181973, - [SMALL_STATE(3292)] = 181989, - [SMALL_STATE(3293)] = 182011, - [SMALL_STATE(3294)] = 182035, - [SMALL_STATE(3295)] = 182051, - [SMALL_STATE(3296)] = 182071, - [SMALL_STATE(3297)] = 182087, - [SMALL_STATE(3298)] = 182103, - [SMALL_STATE(3299)] = 182119, - [SMALL_STATE(3300)] = 182141, - [SMALL_STATE(3301)] = 182157, - [SMALL_STATE(3302)] = 182177, - [SMALL_STATE(3303)] = 182193, - [SMALL_STATE(3304)] = 182209, - [SMALL_STATE(3305)] = 182231, - [SMALL_STATE(3306)] = 182253, - [SMALL_STATE(3307)] = 182269, - [SMALL_STATE(3308)] = 182289, - [SMALL_STATE(3309)] = 182305, - [SMALL_STATE(3310)] = 182327, - [SMALL_STATE(3311)] = 182349, - [SMALL_STATE(3312)] = 182371, - [SMALL_STATE(3313)] = 182393, - [SMALL_STATE(3314)] = 182415, - [SMALL_STATE(3315)] = 182437, - [SMALL_STATE(3316)] = 182459, - [SMALL_STATE(3317)] = 182481, - [SMALL_STATE(3318)] = 182497, - [SMALL_STATE(3319)] = 182513, - [SMALL_STATE(3320)] = 182535, - [SMALL_STATE(3321)] = 182557, - [SMALL_STATE(3322)] = 182573, - [SMALL_STATE(3323)] = 182595, - [SMALL_STATE(3324)] = 182611, - [SMALL_STATE(3325)] = 182633, - [SMALL_STATE(3326)] = 182653, - [SMALL_STATE(3327)] = 182669, - [SMALL_STATE(3328)] = 182689, - [SMALL_STATE(3329)] = 182711, - [SMALL_STATE(3330)] = 182727, - [SMALL_STATE(3331)] = 182749, - [SMALL_STATE(3332)] = 182765, - [SMALL_STATE(3333)] = 182787, - [SMALL_STATE(3334)] = 182809, - [SMALL_STATE(3335)] = 182825, - [SMALL_STATE(3336)] = 182841, - [SMALL_STATE(3337)] = 182857, - [SMALL_STATE(3338)] = 182873, - [SMALL_STATE(3339)] = 182895, - [SMALL_STATE(3340)] = 182911, - [SMALL_STATE(3341)] = 182933, - [SMALL_STATE(3342)] = 182949, - [SMALL_STATE(3343)] = 182971, - [SMALL_STATE(3344)] = 182987, - [SMALL_STATE(3345)] = 183009, - [SMALL_STATE(3346)] = 183025, - [SMALL_STATE(3347)] = 183041, - [SMALL_STATE(3348)] = 183063, - [SMALL_STATE(3349)] = 183083, - [SMALL_STATE(3350)] = 183099, - [SMALL_STATE(3351)] = 183119, - [SMALL_STATE(3352)] = 183135, - [SMALL_STATE(3353)] = 183157, - [SMALL_STATE(3354)] = 183173, - [SMALL_STATE(3355)] = 183195, - [SMALL_STATE(3356)] = 183211, - [SMALL_STATE(3357)] = 183227, - [SMALL_STATE(3358)] = 183243, - [SMALL_STATE(3359)] = 183259, - [SMALL_STATE(3360)] = 183275, - [SMALL_STATE(3361)] = 183291, - [SMALL_STATE(3362)] = 183313, - [SMALL_STATE(3363)] = 183329, - [SMALL_STATE(3364)] = 183345, - [SMALL_STATE(3365)] = 183361, - [SMALL_STATE(3366)] = 183377, - [SMALL_STATE(3367)] = 183393, - [SMALL_STATE(3368)] = 183415, - [SMALL_STATE(3369)] = 183435, - [SMALL_STATE(3370)] = 183451, - [SMALL_STATE(3371)] = 183473, - [SMALL_STATE(3372)] = 183489, - [SMALL_STATE(3373)] = 183511, - [SMALL_STATE(3374)] = 183533, - [SMALL_STATE(3375)] = 183555, - [SMALL_STATE(3376)] = 183577, - [SMALL_STATE(3377)] = 183599, - [SMALL_STATE(3378)] = 183621, - [SMALL_STATE(3379)] = 183643, - [SMALL_STATE(3380)] = 183659, - [SMALL_STATE(3381)] = 183681, - [SMALL_STATE(3382)] = 183703, - [SMALL_STATE(3383)] = 183725, - [SMALL_STATE(3384)] = 183747, - [SMALL_STATE(3385)] = 183762, - [SMALL_STATE(3386)] = 183777, - [SMALL_STATE(3387)] = 183788, - [SMALL_STATE(3388)] = 183799, - [SMALL_STATE(3389)] = 183816, - [SMALL_STATE(3390)] = 183827, - [SMALL_STATE(3391)] = 183838, - [SMALL_STATE(3392)] = 183849, - [SMALL_STATE(3393)] = 183864, - [SMALL_STATE(3394)] = 183875, - [SMALL_STATE(3395)] = 183886, - [SMALL_STATE(3396)] = 183899, - [SMALL_STATE(3397)] = 183910, - [SMALL_STATE(3398)] = 183921, - [SMALL_STATE(3399)] = 183932, - [SMALL_STATE(3400)] = 183943, - [SMALL_STATE(3401)] = 183954, - [SMALL_STATE(3402)] = 183965, - [SMALL_STATE(3403)] = 183976, - [SMALL_STATE(3404)] = 183987, - [SMALL_STATE(3405)] = 183998, - [SMALL_STATE(3406)] = 184009, - [SMALL_STATE(3407)] = 184020, - [SMALL_STATE(3408)] = 184031, - [SMALL_STATE(3409)] = 184042, - [SMALL_STATE(3410)] = 184053, - [SMALL_STATE(3411)] = 184068, - [SMALL_STATE(3412)] = 184079, - [SMALL_STATE(3413)] = 184093, - [SMALL_STATE(3414)] = 184107, - [SMALL_STATE(3415)] = 184118, - [SMALL_STATE(3416)] = 184131, - [SMALL_STATE(3417)] = 184144, - [SMALL_STATE(3418)] = 184157, - [SMALL_STATE(3419)] = 184170, - [SMALL_STATE(3420)] = 184181, - [SMALL_STATE(3421)] = 184194, - [SMALL_STATE(3422)] = 184207, - [SMALL_STATE(3423)] = 184220, - [SMALL_STATE(3424)] = 184233, - [SMALL_STATE(3425)] = 184244, - [SMALL_STATE(3426)] = 184255, - [SMALL_STATE(3427)] = 184268, - [SMALL_STATE(3428)] = 184281, - [SMALL_STATE(3429)] = 184294, - [SMALL_STATE(3430)] = 184307, - [SMALL_STATE(3431)] = 184320, - [SMALL_STATE(3432)] = 184333, - [SMALL_STATE(3433)] = 184346, - [SMALL_STATE(3434)] = 184359, - [SMALL_STATE(3435)] = 184372, - [SMALL_STATE(3436)] = 184385, - [SMALL_STATE(3437)] = 184398, - [SMALL_STATE(3438)] = 184411, - [SMALL_STATE(3439)] = 184424, - [SMALL_STATE(3440)] = 184437, - [SMALL_STATE(3441)] = 184450, - [SMALL_STATE(3442)] = 184461, - [SMALL_STATE(3443)] = 184474, - [SMALL_STATE(3444)] = 184487, - [SMALL_STATE(3445)] = 184500, - [SMALL_STATE(3446)] = 184511, - [SMALL_STATE(3447)] = 184524, - [SMALL_STATE(3448)] = 184535, - [SMALL_STATE(3449)] = 184548, - [SMALL_STATE(3450)] = 184561, - [SMALL_STATE(3451)] = 184574, - [SMALL_STATE(3452)] = 184587, - [SMALL_STATE(3453)] = 184600, - [SMALL_STATE(3454)] = 184613, - [SMALL_STATE(3455)] = 184626, - [SMALL_STATE(3456)] = 184635, - [SMALL_STATE(3457)] = 184648, - [SMALL_STATE(3458)] = 184661, - [SMALL_STATE(3459)] = 184674, - [SMALL_STATE(3460)] = 184687, - [SMALL_STATE(3461)] = 184700, - [SMALL_STATE(3462)] = 184713, - [SMALL_STATE(3463)] = 184726, - [SMALL_STATE(3464)] = 184739, - [SMALL_STATE(3465)] = 184752, - [SMALL_STATE(3466)] = 184765, - [SMALL_STATE(3467)] = 184778, - [SMALL_STATE(3468)] = 184787, - [SMALL_STATE(3469)] = 184798, - [SMALL_STATE(3470)] = 184811, - [SMALL_STATE(3471)] = 184824, - [SMALL_STATE(3472)] = 184837, - [SMALL_STATE(3473)] = 184850, - [SMALL_STATE(3474)] = 184863, - [SMALL_STATE(3475)] = 184876, - [SMALL_STATE(3476)] = 184889, - [SMALL_STATE(3477)] = 184902, - [SMALL_STATE(3478)] = 184915, - [SMALL_STATE(3479)] = 184928, - [SMALL_STATE(3480)] = 184941, - [SMALL_STATE(3481)] = 184954, - [SMALL_STATE(3482)] = 184967, - [SMALL_STATE(3483)] = 184980, - [SMALL_STATE(3484)] = 184993, - [SMALL_STATE(3485)] = 185006, - [SMALL_STATE(3486)] = 185019, - [SMALL_STATE(3487)] = 185032, - [SMALL_STATE(3488)] = 185045, - [SMALL_STATE(3489)] = 185056, - [SMALL_STATE(3490)] = 185067, - [SMALL_STATE(3491)] = 185080, - [SMALL_STATE(3492)] = 185093, - [SMALL_STATE(3493)] = 185106, - [SMALL_STATE(3494)] = 185119, - [SMALL_STATE(3495)] = 185130, - [SMALL_STATE(3496)] = 185143, - [SMALL_STATE(3497)] = 185156, - [SMALL_STATE(3498)] = 185169, - [SMALL_STATE(3499)] = 185182, - [SMALL_STATE(3500)] = 185195, - [SMALL_STATE(3501)] = 185206, - [SMALL_STATE(3502)] = 185219, - [SMALL_STATE(3503)] = 185232, - [SMALL_STATE(3504)] = 185245, - [SMALL_STATE(3505)] = 185258, - [SMALL_STATE(3506)] = 185271, - [SMALL_STATE(3507)] = 185284, - [SMALL_STATE(3508)] = 185295, - [SMALL_STATE(3509)] = 185308, - [SMALL_STATE(3510)] = 185321, - [SMALL_STATE(3511)] = 185334, - [SMALL_STATE(3512)] = 185347, - [SMALL_STATE(3513)] = 185360, - [SMALL_STATE(3514)] = 185373, - [SMALL_STATE(3515)] = 185386, - [SMALL_STATE(3516)] = 185399, - [SMALL_STATE(3517)] = 185412, - [SMALL_STATE(3518)] = 185425, - [SMALL_STATE(3519)] = 185438, - [SMALL_STATE(3520)] = 185451, - [SMALL_STATE(3521)] = 185464, - [SMALL_STATE(3522)] = 185475, - [SMALL_STATE(3523)] = 185486, - [SMALL_STATE(3524)] = 185497, - [SMALL_STATE(3525)] = 185510, - [SMALL_STATE(3526)] = 185523, - [SMALL_STATE(3527)] = 185536, - [SMALL_STATE(3528)] = 185549, - [SMALL_STATE(3529)] = 185562, - [SMALL_STATE(3530)] = 185575, - [SMALL_STATE(3531)] = 185588, - [SMALL_STATE(3532)] = 185601, - [SMALL_STATE(3533)] = 185614, - [SMALL_STATE(3534)] = 185627, - [SMALL_STATE(3535)] = 185640, - [SMALL_STATE(3536)] = 185653, - [SMALL_STATE(3537)] = 185666, - [SMALL_STATE(3538)] = 185677, - [SMALL_STATE(3539)] = 185690, - [SMALL_STATE(3540)] = 185703, + [SMALL_STATE(315)] = 0, + [SMALL_STATE(316)] = 75, + [SMALL_STATE(317)] = 150, + [SMALL_STATE(318)] = 227, + [SMALL_STATE(319)] = 302, + [SMALL_STATE(320)] = 377, + [SMALL_STATE(321)] = 457, + [SMALL_STATE(322)] = 527, + [SMALL_STATE(323)] = 607, + [SMALL_STATE(324)] = 709, + [SMALL_STATE(325)] = 789, + [SMALL_STATE(326)] = 869, + [SMALL_STATE(327)] = 949, + [SMALL_STATE(328)] = 1024, + [SMALL_STATE(329)] = 1099, + [SMALL_STATE(330)] = 1172, + [SMALL_STATE(331)] = 1245, + [SMALL_STATE(332)] = 1320, + [SMALL_STATE(333)] = 1393, + [SMALL_STATE(334)] = 1466, + [SMALL_STATE(335)] = 1541, + [SMALL_STATE(336)] = 1614, + [SMALL_STATE(337)] = 1687, + [SMALL_STATE(338)] = 1756, + [SMALL_STATE(339)] = 1831, + [SMALL_STATE(340)] = 1904, + [SMALL_STATE(341)] = 1976, + [SMALL_STATE(342)] = 2076, + [SMALL_STATE(343)] = 2200, + [SMALL_STATE(344)] = 2324, + [SMALL_STATE(345)] = 2396, + [SMALL_STATE(346)] = 2520, + [SMALL_STATE(347)] = 2644, + [SMALL_STATE(348)] = 2768, + [SMALL_STATE(349)] = 2868, + [SMALL_STATE(350)] = 2968, + [SMALL_STATE(351)] = 3068, + [SMALL_STATE(352)] = 3168, + [SMALL_STATE(353)] = 3268, + [SMALL_STATE(354)] = 3368, + [SMALL_STATE(355)] = 3468, + [SMALL_STATE(356)] = 3568, + [SMALL_STATE(357)] = 3668, + [SMALL_STATE(358)] = 3768, + [SMALL_STATE(359)] = 3868, + [SMALL_STATE(360)] = 3968, + [SMALL_STATE(361)] = 4068, + [SMALL_STATE(362)] = 4168, + [SMALL_STATE(363)] = 4268, + [SMALL_STATE(364)] = 4368, + [SMALL_STATE(365)] = 4468, + [SMALL_STATE(366)] = 4568, + [SMALL_STATE(367)] = 4668, + [SMALL_STATE(368)] = 4768, + [SMALL_STATE(369)] = 4868, + [SMALL_STATE(370)] = 4968, + [SMALL_STATE(371)] = 5068, + [SMALL_STATE(372)] = 5168, + [SMALL_STATE(373)] = 5268, + [SMALL_STATE(374)] = 5368, + [SMALL_STATE(375)] = 5468, + [SMALL_STATE(376)] = 5568, + [SMALL_STATE(377)] = 5668, + [SMALL_STATE(378)] = 5768, + [SMALL_STATE(379)] = 5868, + [SMALL_STATE(380)] = 5968, + [SMALL_STATE(381)] = 6068, + [SMALL_STATE(382)] = 6168, + [SMALL_STATE(383)] = 6268, + [SMALL_STATE(384)] = 6368, + [SMALL_STATE(385)] = 6468, + [SMALL_STATE(386)] = 6568, + [SMALL_STATE(387)] = 6668, + [SMALL_STATE(388)] = 6768, + [SMALL_STATE(389)] = 6868, + [SMALL_STATE(390)] = 6968, + [SMALL_STATE(391)] = 7068, + [SMALL_STATE(392)] = 7168, + [SMALL_STATE(393)] = 7268, + [SMALL_STATE(394)] = 7368, + [SMALL_STATE(395)] = 7468, + [SMALL_STATE(396)] = 7568, + [SMALL_STATE(397)] = 7668, + [SMALL_STATE(398)] = 7768, + [SMALL_STATE(399)] = 7868, + [SMALL_STATE(400)] = 7968, + [SMALL_STATE(401)] = 8068, + [SMALL_STATE(402)] = 8168, + [SMALL_STATE(403)] = 8268, + [SMALL_STATE(404)] = 8368, + [SMALL_STATE(405)] = 8468, + [SMALL_STATE(406)] = 8568, + [SMALL_STATE(407)] = 8668, + [SMALL_STATE(408)] = 8768, + [SMALL_STATE(409)] = 8868, + [SMALL_STATE(410)] = 8968, + [SMALL_STATE(411)] = 9068, + [SMALL_STATE(412)] = 9168, + [SMALL_STATE(413)] = 9268, + [SMALL_STATE(414)] = 9368, + [SMALL_STATE(415)] = 9468, + [SMALL_STATE(416)] = 9568, + [SMALL_STATE(417)] = 9668, + [SMALL_STATE(418)] = 9768, + [SMALL_STATE(419)] = 9868, + [SMALL_STATE(420)] = 9968, + [SMALL_STATE(421)] = 10068, + [SMALL_STATE(422)] = 10168, + [SMALL_STATE(423)] = 10268, + [SMALL_STATE(424)] = 10368, + [SMALL_STATE(425)] = 10468, + [SMALL_STATE(426)] = 10568, + [SMALL_STATE(427)] = 10668, + [SMALL_STATE(428)] = 10768, + [SMALL_STATE(429)] = 10868, + [SMALL_STATE(430)] = 10968, + [SMALL_STATE(431)] = 11068, + [SMALL_STATE(432)] = 11168, + [SMALL_STATE(433)] = 11268, + [SMALL_STATE(434)] = 11368, + [SMALL_STATE(435)] = 11468, + [SMALL_STATE(436)] = 11568, + [SMALL_STATE(437)] = 11668, + [SMALL_STATE(438)] = 11768, + [SMALL_STATE(439)] = 11868, + [SMALL_STATE(440)] = 11968, + [SMALL_STATE(441)] = 12068, + [SMALL_STATE(442)] = 12168, + [SMALL_STATE(443)] = 12268, + [SMALL_STATE(444)] = 12368, + [SMALL_STATE(445)] = 12468, + [SMALL_STATE(446)] = 12568, + [SMALL_STATE(447)] = 12668, + [SMALL_STATE(448)] = 12768, + [SMALL_STATE(449)] = 12868, + [SMALL_STATE(450)] = 12968, + [SMALL_STATE(451)] = 13068, + [SMALL_STATE(452)] = 13168, + [SMALL_STATE(453)] = 13268, + [SMALL_STATE(454)] = 13368, + [SMALL_STATE(455)] = 13468, + [SMALL_STATE(456)] = 13568, + [SMALL_STATE(457)] = 13668, + [SMALL_STATE(458)] = 13768, + [SMALL_STATE(459)] = 13868, + [SMALL_STATE(460)] = 13968, + [SMALL_STATE(461)] = 14068, + [SMALL_STATE(462)] = 14168, + [SMALL_STATE(463)] = 14268, + [SMALL_STATE(464)] = 14368, + [SMALL_STATE(465)] = 14468, + [SMALL_STATE(466)] = 14568, + [SMALL_STATE(467)] = 14668, + [SMALL_STATE(468)] = 14768, + [SMALL_STATE(469)] = 14868, + [SMALL_STATE(470)] = 14968, + [SMALL_STATE(471)] = 15068, + [SMALL_STATE(472)] = 15168, + [SMALL_STATE(473)] = 15268, + [SMALL_STATE(474)] = 15368, + [SMALL_STATE(475)] = 15468, + [SMALL_STATE(476)] = 15568, + [SMALL_STATE(477)] = 15668, + [SMALL_STATE(478)] = 15768, + [SMALL_STATE(479)] = 15868, + [SMALL_STATE(480)] = 15968, + [SMALL_STATE(481)] = 16068, + [SMALL_STATE(482)] = 16168, + [SMALL_STATE(483)] = 16268, + [SMALL_STATE(484)] = 16368, + [SMALL_STATE(485)] = 16468, + [SMALL_STATE(486)] = 16568, + [SMALL_STATE(487)] = 16668, + [SMALL_STATE(488)] = 16768, + [SMALL_STATE(489)] = 16868, + [SMALL_STATE(490)] = 16968, + [SMALL_STATE(491)] = 17068, + [SMALL_STATE(492)] = 17168, + [SMALL_STATE(493)] = 17268, + [SMALL_STATE(494)] = 17340, + [SMALL_STATE(495)] = 17440, + [SMALL_STATE(496)] = 17540, + [SMALL_STATE(497)] = 17640, + [SMALL_STATE(498)] = 17740, + [SMALL_STATE(499)] = 17840, + [SMALL_STATE(500)] = 17940, + [SMALL_STATE(501)] = 18040, + [SMALL_STATE(502)] = 18140, + [SMALL_STATE(503)] = 18240, + [SMALL_STATE(504)] = 18340, + [SMALL_STATE(505)] = 18440, + [SMALL_STATE(506)] = 18540, + [SMALL_STATE(507)] = 18640, + [SMALL_STATE(508)] = 18740, + [SMALL_STATE(509)] = 18840, + [SMALL_STATE(510)] = 18940, + [SMALL_STATE(511)] = 19040, + [SMALL_STATE(512)] = 19140, + [SMALL_STATE(513)] = 19240, + [SMALL_STATE(514)] = 19340, + [SMALL_STATE(515)] = 19440, + [SMALL_STATE(516)] = 19540, + [SMALL_STATE(517)] = 19640, + [SMALL_STATE(518)] = 19740, + [SMALL_STATE(519)] = 19840, + [SMALL_STATE(520)] = 19940, + [SMALL_STATE(521)] = 20040, + [SMALL_STATE(522)] = 20140, + [SMALL_STATE(523)] = 20240, + [SMALL_STATE(524)] = 20340, + [SMALL_STATE(525)] = 20440, + [SMALL_STATE(526)] = 20540, + [SMALL_STATE(527)] = 20640, + [SMALL_STATE(528)] = 20740, + [SMALL_STATE(529)] = 20840, + [SMALL_STATE(530)] = 20940, + [SMALL_STATE(531)] = 21040, + [SMALL_STATE(532)] = 21140, + [SMALL_STATE(533)] = 21240, + [SMALL_STATE(534)] = 21340, + [SMALL_STATE(535)] = 21440, + [SMALL_STATE(536)] = 21540, + [SMALL_STATE(537)] = 21640, + [SMALL_STATE(538)] = 21740, + [SMALL_STATE(539)] = 21840, + [SMALL_STATE(540)] = 21940, + [SMALL_STATE(541)] = 22040, + [SMALL_STATE(542)] = 22140, + [SMALL_STATE(543)] = 22240, + [SMALL_STATE(544)] = 22340, + [SMALL_STATE(545)] = 22440, + [SMALL_STATE(546)] = 22540, + [SMALL_STATE(547)] = 22640, + [SMALL_STATE(548)] = 22740, + [SMALL_STATE(549)] = 22840, + [SMALL_STATE(550)] = 22940, + [SMALL_STATE(551)] = 23040, + [SMALL_STATE(552)] = 23140, + [SMALL_STATE(553)] = 23212, + [SMALL_STATE(554)] = 23312, + [SMALL_STATE(555)] = 23412, + [SMALL_STATE(556)] = 23512, + [SMALL_STATE(557)] = 23612, + [SMALL_STATE(558)] = 23712, + [SMALL_STATE(559)] = 23812, + [SMALL_STATE(560)] = 23912, + [SMALL_STATE(561)] = 24012, + [SMALL_STATE(562)] = 24112, + [SMALL_STATE(563)] = 24212, + [SMALL_STATE(564)] = 24312, + [SMALL_STATE(565)] = 24412, + [SMALL_STATE(566)] = 24512, + [SMALL_STATE(567)] = 24612, + [SMALL_STATE(568)] = 24712, + [SMALL_STATE(569)] = 24812, + [SMALL_STATE(570)] = 24912, + [SMALL_STATE(571)] = 25012, + [SMALL_STATE(572)] = 25112, + [SMALL_STATE(573)] = 25212, + [SMALL_STATE(574)] = 25312, + [SMALL_STATE(575)] = 25412, + [SMALL_STATE(576)] = 25512, + [SMALL_STATE(577)] = 25612, + [SMALL_STATE(578)] = 25712, + [SMALL_STATE(579)] = 25812, + [SMALL_STATE(580)] = 25912, + [SMALL_STATE(581)] = 26012, + [SMALL_STATE(582)] = 26112, + [SMALL_STATE(583)] = 26212, + [SMALL_STATE(584)] = 26312, + [SMALL_STATE(585)] = 26412, + [SMALL_STATE(586)] = 26512, + [SMALL_STATE(587)] = 26612, + [SMALL_STATE(588)] = 26712, + [SMALL_STATE(589)] = 26812, + [SMALL_STATE(590)] = 26912, + [SMALL_STATE(591)] = 27012, + [SMALL_STATE(592)] = 27112, + [SMALL_STATE(593)] = 27212, + [SMALL_STATE(594)] = 27312, + [SMALL_STATE(595)] = 27412, + [SMALL_STATE(596)] = 27512, + [SMALL_STATE(597)] = 27612, + [SMALL_STATE(598)] = 27712, + [SMALL_STATE(599)] = 27812, + [SMALL_STATE(600)] = 27912, + [SMALL_STATE(601)] = 28012, + [SMALL_STATE(602)] = 28112, + [SMALL_STATE(603)] = 28212, + [SMALL_STATE(604)] = 28312, + [SMALL_STATE(605)] = 28412, + [SMALL_STATE(606)] = 28512, + [SMALL_STATE(607)] = 28612, + [SMALL_STATE(608)] = 28712, + [SMALL_STATE(609)] = 28812, + [SMALL_STATE(610)] = 28912, + [SMALL_STATE(611)] = 29012, + [SMALL_STATE(612)] = 29112, + [SMALL_STATE(613)] = 29212, + [SMALL_STATE(614)] = 29312, + [SMALL_STATE(615)] = 29412, + [SMALL_STATE(616)] = 29512, + [SMALL_STATE(617)] = 29612, + [SMALL_STATE(618)] = 29712, + [SMALL_STATE(619)] = 29835, + [SMALL_STATE(620)] = 29958, + [SMALL_STATE(621)] = 30081, + [SMALL_STATE(622)] = 30204, + [SMALL_STATE(623)] = 30327, + [SMALL_STATE(624)] = 30450, + [SMALL_STATE(625)] = 30573, + [SMALL_STATE(626)] = 30696, + [SMALL_STATE(627)] = 30819, + [SMALL_STATE(628)] = 30890, + [SMALL_STATE(629)] = 31013, + [SMALL_STATE(630)] = 31136, + [SMALL_STATE(631)] = 31203, + [SMALL_STATE(632)] = 31270, + [SMALL_STATE(633)] = 31337, + [SMALL_STATE(634)] = 31456, + [SMALL_STATE(635)] = 31523, + [SMALL_STATE(636)] = 31590, + [SMALL_STATE(637)] = 31709, + [SMALL_STATE(638)] = 31832, + [SMALL_STATE(639)] = 31903, + [SMALL_STATE(640)] = 32026, + [SMALL_STATE(641)] = 32145, + [SMALL_STATE(642)] = 32268, + [SMALL_STATE(643)] = 32339, + [SMALL_STATE(644)] = 32462, + [SMALL_STATE(645)] = 32532, + [SMALL_STATE(646)] = 32650, + [SMALL_STATE(647)] = 32720, + [SMALL_STATE(648)] = 32790, + [SMALL_STATE(649)] = 32860, + [SMALL_STATE(650)] = 32930, + [SMALL_STATE(651)] = 33000, + [SMALL_STATE(652)] = 33070, + [SMALL_STATE(653)] = 33140, + [SMALL_STATE(654)] = 33210, + [SMALL_STATE(655)] = 33328, + [SMALL_STATE(656)] = 33398, + [SMALL_STATE(657)] = 33468, + [SMALL_STATE(658)] = 33538, + [SMALL_STATE(659)] = 33606, + [SMALL_STATE(660)] = 33676, + [SMALL_STATE(661)] = 33746, + [SMALL_STATE(662)] = 33814, + [SMALL_STATE(663)] = 33932, + [SMALL_STATE(664)] = 34002, + [SMALL_STATE(665)] = 34120, + [SMALL_STATE(666)] = 34188, + [SMALL_STATE(667)] = 34258, + [SMALL_STATE(668)] = 34328, + [SMALL_STATE(669)] = 34398, + [SMALL_STATE(670)] = 34516, + [SMALL_STATE(671)] = 34634, + [SMALL_STATE(672)] = 34704, + [SMALL_STATE(673)] = 34822, + [SMALL_STATE(674)] = 34940, + [SMALL_STATE(675)] = 35010, + [SMALL_STATE(676)] = 35128, + [SMALL_STATE(677)] = 35247, + [SMALL_STATE(678)] = 35368, + [SMALL_STATE(679)] = 35489, + [SMALL_STATE(680)] = 35594, + [SMALL_STATE(681)] = 35699, + [SMALL_STATE(682)] = 35818, + [SMALL_STATE(683)] = 35939, + [SMALL_STATE(684)] = 36060, + [SMALL_STATE(685)] = 36181, + [SMALL_STATE(686)] = 36302, + [SMALL_STATE(687)] = 36421, + [SMALL_STATE(688)] = 36542, + [SMALL_STATE(689)] = 36663, + [SMALL_STATE(690)] = 36784, + [SMALL_STATE(691)] = 36905, + [SMALL_STATE(692)] = 37026, + [SMALL_STATE(693)] = 37147, + [SMALL_STATE(694)] = 37268, + [SMALL_STATE(695)] = 37389, + [SMALL_STATE(696)] = 37510, + [SMALL_STATE(697)] = 37631, + [SMALL_STATE(698)] = 37752, + [SMALL_STATE(699)] = 37873, + [SMALL_STATE(700)] = 37994, + [SMALL_STATE(701)] = 38115, + [SMALL_STATE(702)] = 38236, + [SMALL_STATE(703)] = 38357, + [SMALL_STATE(704)] = 38478, + [SMALL_STATE(705)] = 38599, + [SMALL_STATE(706)] = 38720, + [SMALL_STATE(707)] = 38836, + [SMALL_STATE(708)] = 38940, + [SMALL_STATE(709)] = 39044, + [SMALL_STATE(710)] = 39162, + [SMALL_STATE(711)] = 39228, + [SMALL_STATE(712)] = 39332, + [SMALL_STATE(713)] = 39398, + [SMALL_STATE(714)] = 39516, + [SMALL_STATE(715)] = 39634, + [SMALL_STATE(716)] = 39752, + [SMALL_STATE(717)] = 39870, + [SMALL_STATE(718)] = 39936, + [SMALL_STATE(719)] = 40040, + [SMALL_STATE(720)] = 40158, + [SMALL_STATE(721)] = 40224, + [SMALL_STATE(722)] = 40342, + [SMALL_STATE(723)] = 40458, + [SMALL_STATE(724)] = 40574, + [SMALL_STATE(725)] = 40640, + [SMALL_STATE(726)] = 40756, + [SMALL_STATE(727)] = 40874, + [SMALL_STATE(728)] = 40990, + [SMALL_STATE(729)] = 41106, + [SMALL_STATE(730)] = 41172, + [SMALL_STATE(731)] = 41238, + [SMALL_STATE(732)] = 41354, + [SMALL_STATE(733)] = 41470, + [SMALL_STATE(734)] = 41586, + [SMALL_STATE(735)] = 41702, + [SMALL_STATE(736)] = 41768, + [SMALL_STATE(737)] = 41834, + [SMALL_STATE(738)] = 41950, + [SMALL_STATE(739)] = 42016, + [SMALL_STATE(740)] = 42120, + [SMALL_STATE(741)] = 42186, + [SMALL_STATE(742)] = 42252, + [SMALL_STATE(743)] = 42368, + [SMALL_STATE(744)] = 42472, + [SMALL_STATE(745)] = 42588, + [SMALL_STATE(746)] = 42654, + [SMALL_STATE(747)] = 42770, + [SMALL_STATE(748)] = 42836, + [SMALL_STATE(749)] = 42952, + [SMALL_STATE(750)] = 43018, + [SMALL_STATE(751)] = 43136, + [SMALL_STATE(752)] = 43247, + [SMALL_STATE(753)] = 43358, + [SMALL_STATE(754)] = 43471, + [SMALL_STATE(755)] = 43582, + [SMALL_STATE(756)] = 43695, + [SMALL_STATE(757)] = 43806, + [SMALL_STATE(758)] = 43917, + [SMALL_STATE(759)] = 43980, + [SMALL_STATE(760)] = 44093, + [SMALL_STATE(761)] = 44206, + [SMALL_STATE(762)] = 44319, + [SMALL_STATE(763)] = 44430, + [SMALL_STATE(764)] = 44541, + [SMALL_STATE(765)] = 44652, + [SMALL_STATE(766)] = 44765, + [SMALL_STATE(767)] = 44878, + [SMALL_STATE(768)] = 44989, + [SMALL_STATE(769)] = 45102, + [SMALL_STATE(770)] = 45213, + [SMALL_STATE(771)] = 45324, + [SMALL_STATE(772)] = 45437, + [SMALL_STATE(773)] = 45548, + [SMALL_STATE(774)] = 45661, + [SMALL_STATE(775)] = 45774, + [SMALL_STATE(776)] = 45885, + [SMALL_STATE(777)] = 45996, + [SMALL_STATE(778)] = 46109, + [SMALL_STATE(779)] = 46220, + [SMALL_STATE(780)] = 46333, + [SMALL_STATE(781)] = 46444, + [SMALL_STATE(782)] = 46557, + [SMALL_STATE(783)] = 46670, + [SMALL_STATE(784)] = 46783, + [SMALL_STATE(785)] = 46896, + [SMALL_STATE(786)] = 47007, + [SMALL_STATE(787)] = 47118, + [SMALL_STATE(788)] = 47229, + [SMALL_STATE(789)] = 47342, + [SMALL_STATE(790)] = 47453, + [SMALL_STATE(791)] = 47566, + [SMALL_STATE(792)] = 47677, + [SMALL_STATE(793)] = 47790, + [SMALL_STATE(794)] = 47903, + [SMALL_STATE(795)] = 48016, + [SMALL_STATE(796)] = 48127, + [SMALL_STATE(797)] = 48240, + [SMALL_STATE(798)] = 48351, + [SMALL_STATE(799)] = 48464, + [SMALL_STATE(800)] = 48575, + [SMALL_STATE(801)] = 48688, + [SMALL_STATE(802)] = 48799, + [SMALL_STATE(803)] = 48910, + [SMALL_STATE(804)] = 49021, + [SMALL_STATE(805)] = 49134, + [SMALL_STATE(806)] = 49245, + [SMALL_STATE(807)] = 49356, + [SMALL_STATE(808)] = 49467, + [SMALL_STATE(809)] = 49580, + [SMALL_STATE(810)] = 49693, + [SMALL_STATE(811)] = 49804, + [SMALL_STATE(812)] = 49917, + [SMALL_STATE(813)] = 50030, + [SMALL_STATE(814)] = 50141, + [SMALL_STATE(815)] = 50254, + [SMALL_STATE(816)] = 50365, + [SMALL_STATE(817)] = 50476, + [SMALL_STATE(818)] = 50589, + [SMALL_STATE(819)] = 50702, + [SMALL_STATE(820)] = 50815, + [SMALL_STATE(821)] = 50926, + [SMALL_STATE(822)] = 51037, + [SMALL_STATE(823)] = 51150, + [SMALL_STATE(824)] = 51263, + [SMALL_STATE(825)] = 51376, + [SMALL_STATE(826)] = 51487, + [SMALL_STATE(827)] = 51603, + [SMALL_STATE(828)] = 51705, + [SMALL_STATE(829)] = 51821, + [SMALL_STATE(830)] = 51937, + [SMALL_STATE(831)] = 52039, + [SMALL_STATE(832)] = 52155, + [SMALL_STATE(833)] = 52271, + [SMALL_STATE(834)] = 52373, + [SMALL_STATE(835)] = 52489, + [SMALL_STATE(836)] = 52605, + [SMALL_STATE(837)] = 52721, + [SMALL_STATE(838)] = 52823, + [SMALL_STATE(839)] = 52939, + [SMALL_STATE(840)] = 53055, + [SMALL_STATE(841)] = 53171, + [SMALL_STATE(842)] = 53287, + [SMALL_STATE(843)] = 53389, + [SMALL_STATE(844)] = 53491, + [SMALL_STATE(845)] = 53593, + [SMALL_STATE(846)] = 53695, + [SMALL_STATE(847)] = 53811, + [SMALL_STATE(848)] = 53927, + [SMALL_STATE(849)] = 54043, + [SMALL_STATE(850)] = 54145, + [SMALL_STATE(851)] = 54247, + [SMALL_STATE(852)] = 54349, + [SMALL_STATE(853)] = 54451, + [SMALL_STATE(854)] = 54553, + [SMALL_STATE(855)] = 54655, + [SMALL_STATE(856)] = 54757, + [SMALL_STATE(857)] = 54859, + [SMALL_STATE(858)] = 54961, + [SMALL_STATE(859)] = 55063, + [SMALL_STATE(860)] = 55165, + [SMALL_STATE(861)] = 55267, + [SMALL_STATE(862)] = 55369, + [SMALL_STATE(863)] = 55471, + [SMALL_STATE(864)] = 55573, + [SMALL_STATE(865)] = 55675, + [SMALL_STATE(866)] = 55777, + [SMALL_STATE(867)] = 55879, + [SMALL_STATE(868)] = 55981, + [SMALL_STATE(869)] = 56083, + [SMALL_STATE(870)] = 56185, + [SMALL_STATE(871)] = 56287, + [SMALL_STATE(872)] = 56389, + [SMALL_STATE(873)] = 56491, + [SMALL_STATE(874)] = 56593, + [SMALL_STATE(875)] = 56695, + [SMALL_STATE(876)] = 56797, + [SMALL_STATE(877)] = 56899, + [SMALL_STATE(878)] = 57001, + [SMALL_STATE(879)] = 57103, + [SMALL_STATE(880)] = 57205, + [SMALL_STATE(881)] = 57307, + [SMALL_STATE(882)] = 57409, + [SMALL_STATE(883)] = 57511, + [SMALL_STATE(884)] = 57613, + [SMALL_STATE(885)] = 57715, + [SMALL_STATE(886)] = 57817, + [SMALL_STATE(887)] = 57919, + [SMALL_STATE(888)] = 58021, + [SMALL_STATE(889)] = 58123, + [SMALL_STATE(890)] = 58225, + [SMALL_STATE(891)] = 58327, + [SMALL_STATE(892)] = 58429, + [SMALL_STATE(893)] = 58531, + [SMALL_STATE(894)] = 58633, + [SMALL_STATE(895)] = 58735, + [SMALL_STATE(896)] = 58837, + [SMALL_STATE(897)] = 58939, + [SMALL_STATE(898)] = 59041, + [SMALL_STATE(899)] = 59143, + [SMALL_STATE(900)] = 59245, + [SMALL_STATE(901)] = 59347, + [SMALL_STATE(902)] = 59449, + [SMALL_STATE(903)] = 59551, + [SMALL_STATE(904)] = 59653, + [SMALL_STATE(905)] = 59755, + [SMALL_STATE(906)] = 59857, + [SMALL_STATE(907)] = 59959, + [SMALL_STATE(908)] = 60061, + [SMALL_STATE(909)] = 60163, + [SMALL_STATE(910)] = 60265, + [SMALL_STATE(911)] = 60367, + [SMALL_STATE(912)] = 60469, + [SMALL_STATE(913)] = 60571, + [SMALL_STATE(914)] = 60673, + [SMALL_STATE(915)] = 60775, + [SMALL_STATE(916)] = 60877, + [SMALL_STATE(917)] = 60979, + [SMALL_STATE(918)] = 61081, + [SMALL_STATE(919)] = 61183, + [SMALL_STATE(920)] = 61285, + [SMALL_STATE(921)] = 61387, + [SMALL_STATE(922)] = 61489, + [SMALL_STATE(923)] = 61591, + [SMALL_STATE(924)] = 61693, + [SMALL_STATE(925)] = 61795, + [SMALL_STATE(926)] = 61854, + [SMALL_STATE(927)] = 61953, + [SMALL_STATE(928)] = 62012, + [SMALL_STATE(929)] = 62111, + [SMALL_STATE(930)] = 62210, + [SMALL_STATE(931)] = 62309, + [SMALL_STATE(932)] = 62408, + [SMALL_STATE(933)] = 62507, + [SMALL_STATE(934)] = 62606, + [SMALL_STATE(935)] = 62705, + [SMALL_STATE(936)] = 62804, + [SMALL_STATE(937)] = 62903, + [SMALL_STATE(938)] = 63002, + [SMALL_STATE(939)] = 63101, + [SMALL_STATE(940)] = 63200, + [SMALL_STATE(941)] = 63299, + [SMALL_STATE(942)] = 63398, + [SMALL_STATE(943)] = 63497, + [SMALL_STATE(944)] = 63596, + [SMALL_STATE(945)] = 63695, + [SMALL_STATE(946)] = 63794, + [SMALL_STATE(947)] = 63893, + [SMALL_STATE(948)] = 63992, + [SMALL_STATE(949)] = 64091, + [SMALL_STATE(950)] = 64190, + [SMALL_STATE(951)] = 64289, + [SMALL_STATE(952)] = 64388, + [SMALL_STATE(953)] = 64487, + [SMALL_STATE(954)] = 64586, + [SMALL_STATE(955)] = 64685, + [SMALL_STATE(956)] = 64744, + [SMALL_STATE(957)] = 64843, + [SMALL_STATE(958)] = 64942, + [SMALL_STATE(959)] = 65041, + [SMALL_STATE(960)] = 65140, + [SMALL_STATE(961)] = 65239, + [SMALL_STATE(962)] = 65338, + [SMALL_STATE(963)] = 65437, + [SMALL_STATE(964)] = 65536, + [SMALL_STATE(965)] = 65635, + [SMALL_STATE(966)] = 65734, + [SMALL_STATE(967)] = 65833, + [SMALL_STATE(968)] = 65932, + [SMALL_STATE(969)] = 65991, + [SMALL_STATE(970)] = 66090, + [SMALL_STATE(971)] = 66189, + [SMALL_STATE(972)] = 66288, + [SMALL_STATE(973)] = 66387, + [SMALL_STATE(974)] = 66486, + [SMALL_STATE(975)] = 66585, + [SMALL_STATE(976)] = 66684, + [SMALL_STATE(977)] = 66783, + [SMALL_STATE(978)] = 66882, + [SMALL_STATE(979)] = 66981, + [SMALL_STATE(980)] = 67080, + [SMALL_STATE(981)] = 67179, + [SMALL_STATE(982)] = 67278, + [SMALL_STATE(983)] = 67377, + [SMALL_STATE(984)] = 67476, + [SMALL_STATE(985)] = 67575, + [SMALL_STATE(986)] = 67674, + [SMALL_STATE(987)] = 67773, + [SMALL_STATE(988)] = 67872, + [SMALL_STATE(989)] = 67971, + [SMALL_STATE(990)] = 68070, + [SMALL_STATE(991)] = 68169, + [SMALL_STATE(992)] = 68268, + [SMALL_STATE(993)] = 68367, + [SMALL_STATE(994)] = 68466, + [SMALL_STATE(995)] = 68565, + [SMALL_STATE(996)] = 68664, + [SMALL_STATE(997)] = 68763, + [SMALL_STATE(998)] = 68862, + [SMALL_STATE(999)] = 68961, + [SMALL_STATE(1000)] = 69060, + [SMALL_STATE(1001)] = 69159, + [SMALL_STATE(1002)] = 69258, + [SMALL_STATE(1003)] = 69357, + [SMALL_STATE(1004)] = 69416, + [SMALL_STATE(1005)] = 69515, + [SMALL_STATE(1006)] = 69614, + [SMALL_STATE(1007)] = 69713, + [SMALL_STATE(1008)] = 69812, + [SMALL_STATE(1009)] = 69911, + [SMALL_STATE(1010)] = 70010, + [SMALL_STATE(1011)] = 70109, + [SMALL_STATE(1012)] = 70208, + [SMALL_STATE(1013)] = 70307, + [SMALL_STATE(1014)] = 70406, + [SMALL_STATE(1015)] = 70505, + [SMALL_STATE(1016)] = 70604, + [SMALL_STATE(1017)] = 70703, + [SMALL_STATE(1018)] = 70802, + [SMALL_STATE(1019)] = 70901, + [SMALL_STATE(1020)] = 71000, + [SMALL_STATE(1021)] = 71099, + [SMALL_STATE(1022)] = 71198, + [SMALL_STATE(1023)] = 71297, + [SMALL_STATE(1024)] = 71396, + [SMALL_STATE(1025)] = 71495, + [SMALL_STATE(1026)] = 71594, + [SMALL_STATE(1027)] = 71693, + [SMALL_STATE(1028)] = 71792, + [SMALL_STATE(1029)] = 71891, + [SMALL_STATE(1030)] = 71990, + [SMALL_STATE(1031)] = 72089, + [SMALL_STATE(1032)] = 72188, + [SMALL_STATE(1033)] = 72287, + [SMALL_STATE(1034)] = 72386, + [SMALL_STATE(1035)] = 72485, + [SMALL_STATE(1036)] = 72584, + [SMALL_STATE(1037)] = 72683, + [SMALL_STATE(1038)] = 72782, + [SMALL_STATE(1039)] = 72881, + [SMALL_STATE(1040)] = 72980, + [SMALL_STATE(1041)] = 73079, + [SMALL_STATE(1042)] = 73178, + [SMALL_STATE(1043)] = 73277, + [SMALL_STATE(1044)] = 73376, + [SMALL_STATE(1045)] = 73475, + [SMALL_STATE(1046)] = 73574, + [SMALL_STATE(1047)] = 73673, + [SMALL_STATE(1048)] = 73772, + [SMALL_STATE(1049)] = 73831, + [SMALL_STATE(1050)] = 73930, + [SMALL_STATE(1051)] = 74029, + [SMALL_STATE(1052)] = 74128, + [SMALL_STATE(1053)] = 74227, + [SMALL_STATE(1054)] = 74326, + [SMALL_STATE(1055)] = 74425, + [SMALL_STATE(1056)] = 74524, + [SMALL_STATE(1057)] = 74623, + [SMALL_STATE(1058)] = 74722, + [SMALL_STATE(1059)] = 74781, + [SMALL_STATE(1060)] = 74840, + [SMALL_STATE(1061)] = 74939, + [SMALL_STATE(1062)] = 74998, + [SMALL_STATE(1063)] = 75097, + [SMALL_STATE(1064)] = 75196, + [SMALL_STATE(1065)] = 75295, + [SMALL_STATE(1066)] = 75394, + [SMALL_STATE(1067)] = 75493, + [SMALL_STATE(1068)] = 75592, + [SMALL_STATE(1069)] = 75691, + [SMALL_STATE(1070)] = 75790, + [SMALL_STATE(1071)] = 75889, + [SMALL_STATE(1072)] = 75988, + [SMALL_STATE(1073)] = 76087, + [SMALL_STATE(1074)] = 76186, + [SMALL_STATE(1075)] = 76285, + [SMALL_STATE(1076)] = 76384, + [SMALL_STATE(1077)] = 76483, + [SMALL_STATE(1078)] = 76582, + [SMALL_STATE(1079)] = 76681, + [SMALL_STATE(1080)] = 76780, + [SMALL_STATE(1081)] = 76879, + [SMALL_STATE(1082)] = 76978, + [SMALL_STATE(1083)] = 77037, + [SMALL_STATE(1084)] = 77096, + [SMALL_STATE(1085)] = 77195, + [SMALL_STATE(1086)] = 77294, + [SMALL_STATE(1087)] = 77393, + [SMALL_STATE(1088)] = 77492, + [SMALL_STATE(1089)] = 77591, + [SMALL_STATE(1090)] = 77690, + [SMALL_STATE(1091)] = 77789, + [SMALL_STATE(1092)] = 77888, + [SMALL_STATE(1093)] = 77987, + [SMALL_STATE(1094)] = 78086, + [SMALL_STATE(1095)] = 78185, + [SMALL_STATE(1096)] = 78284, + [SMALL_STATE(1097)] = 78383, + [SMALL_STATE(1098)] = 78482, + [SMALL_STATE(1099)] = 78581, + [SMALL_STATE(1100)] = 78680, + [SMALL_STATE(1101)] = 78779, + [SMALL_STATE(1102)] = 78878, + [SMALL_STATE(1103)] = 78977, + [SMALL_STATE(1104)] = 79076, + [SMALL_STATE(1105)] = 79175, + [SMALL_STATE(1106)] = 79274, + [SMALL_STATE(1107)] = 79373, + [SMALL_STATE(1108)] = 79432, + [SMALL_STATE(1109)] = 79531, + [SMALL_STATE(1110)] = 79590, + [SMALL_STATE(1111)] = 79689, + [SMALL_STATE(1112)] = 79748, + [SMALL_STATE(1113)] = 79847, + [SMALL_STATE(1114)] = 79946, + [SMALL_STATE(1115)] = 80045, + [SMALL_STATE(1116)] = 80144, + [SMALL_STATE(1117)] = 80203, + [SMALL_STATE(1118)] = 80302, + [SMALL_STATE(1119)] = 80401, + [SMALL_STATE(1120)] = 80500, + [SMALL_STATE(1121)] = 80599, + [SMALL_STATE(1122)] = 80698, + [SMALL_STATE(1123)] = 80797, + [SMALL_STATE(1124)] = 80896, + [SMALL_STATE(1125)] = 80995, + [SMALL_STATE(1126)] = 81094, + [SMALL_STATE(1127)] = 81193, + [SMALL_STATE(1128)] = 81252, + [SMALL_STATE(1129)] = 81351, + [SMALL_STATE(1130)] = 81410, + [SMALL_STATE(1131)] = 81509, + [SMALL_STATE(1132)] = 81568, + [SMALL_STATE(1133)] = 81667, + [SMALL_STATE(1134)] = 81766, + [SMALL_STATE(1135)] = 81865, + [SMALL_STATE(1136)] = 81964, + [SMALL_STATE(1137)] = 82063, + [SMALL_STATE(1138)] = 82162, + [SMALL_STATE(1139)] = 82261, + [SMALL_STATE(1140)] = 82360, + [SMALL_STATE(1141)] = 82459, + [SMALL_STATE(1142)] = 82558, + [SMALL_STATE(1143)] = 82657, + [SMALL_STATE(1144)] = 82756, + [SMALL_STATE(1145)] = 82855, + [SMALL_STATE(1146)] = 82954, + [SMALL_STATE(1147)] = 83053, + [SMALL_STATE(1148)] = 83152, + [SMALL_STATE(1149)] = 83251, + [SMALL_STATE(1150)] = 83350, + [SMALL_STATE(1151)] = 83449, + [SMALL_STATE(1152)] = 83548, + [SMALL_STATE(1153)] = 83607, + [SMALL_STATE(1154)] = 83706, + [SMALL_STATE(1155)] = 83805, + [SMALL_STATE(1156)] = 83904, + [SMALL_STATE(1157)] = 84003, + [SMALL_STATE(1158)] = 84102, + [SMALL_STATE(1159)] = 84201, + [SMALL_STATE(1160)] = 84300, + [SMALL_STATE(1161)] = 84399, + [SMALL_STATE(1162)] = 84498, + [SMALL_STATE(1163)] = 84597, + [SMALL_STATE(1164)] = 84696, + [SMALL_STATE(1165)] = 84755, + [SMALL_STATE(1166)] = 84854, + [SMALL_STATE(1167)] = 84953, + [SMALL_STATE(1168)] = 85052, + [SMALL_STATE(1169)] = 85109, + [SMALL_STATE(1170)] = 85166, + [SMALL_STATE(1171)] = 85223, + [SMALL_STATE(1172)] = 85280, + [SMALL_STATE(1173)] = 85337, + [SMALL_STATE(1174)] = 85394, + [SMALL_STATE(1175)] = 85451, + [SMALL_STATE(1176)] = 85508, + [SMALL_STATE(1177)] = 85565, + [SMALL_STATE(1178)] = 85622, + [SMALL_STATE(1179)] = 85679, + [SMALL_STATE(1180)] = 85736, + [SMALL_STATE(1181)] = 85793, + [SMALL_STATE(1182)] = 85850, + [SMALL_STATE(1183)] = 85907, + [SMALL_STATE(1184)] = 85964, + [SMALL_STATE(1185)] = 86021, + [SMALL_STATE(1186)] = 86078, + [SMALL_STATE(1187)] = 86135, + [SMALL_STATE(1188)] = 86192, + [SMALL_STATE(1189)] = 86297, + [SMALL_STATE(1190)] = 86402, + [SMALL_STATE(1191)] = 86507, + [SMALL_STATE(1192)] = 86612, + [SMALL_STATE(1193)] = 86717, + [SMALL_STATE(1194)] = 86822, + [SMALL_STATE(1195)] = 86927, + [SMALL_STATE(1196)] = 87032, + [SMALL_STATE(1197)] = 87137, + [SMALL_STATE(1198)] = 87194, + [SMALL_STATE(1199)] = 87287, + [SMALL_STATE(1200)] = 87380, + [SMALL_STATE(1201)] = 87437, + [SMALL_STATE(1202)] = 87494, + [SMALL_STATE(1203)] = 87550, + [SMALL_STATE(1204)] = 87610, + [SMALL_STATE(1205)] = 87666, + [SMALL_STATE(1206)] = 87758, + [SMALL_STATE(1207)] = 87814, + [SMALL_STATE(1208)] = 87870, + [SMALL_STATE(1209)] = 87962, + [SMALL_STATE(1210)] = 88016, + [SMALL_STATE(1211)] = 88068, + [SMALL_STATE(1212)] = 88120, + [SMALL_STATE(1213)] = 88172, + [SMALL_STATE(1214)] = 88224, + [SMALL_STATE(1215)] = 88280, + [SMALL_STATE(1216)] = 88336, + [SMALL_STATE(1217)] = 88388, + [SMALL_STATE(1218)] = 88440, + [SMALL_STATE(1219)] = 88496, + [SMALL_STATE(1220)] = 88552, + [SMALL_STATE(1221)] = 88604, + [SMALL_STATE(1222)] = 88656, + [SMALL_STATE(1223)] = 88712, + [SMALL_STATE(1224)] = 88764, + [SMALL_STATE(1225)] = 88816, + [SMALL_STATE(1226)] = 88868, + [SMALL_STATE(1227)] = 88920, + [SMALL_STATE(1228)] = 88972, + [SMALL_STATE(1229)] = 89024, + [SMALL_STATE(1230)] = 89076, + [SMALL_STATE(1231)] = 89128, + [SMALL_STATE(1232)] = 89180, + [SMALL_STATE(1233)] = 89232, + [SMALL_STATE(1234)] = 89284, + [SMALL_STATE(1235)] = 89336, + [SMALL_STATE(1236)] = 89388, + [SMALL_STATE(1237)] = 89444, + [SMALL_STATE(1238)] = 89500, + [SMALL_STATE(1239)] = 89552, + [SMALL_STATE(1240)] = 89603, + [SMALL_STATE(1241)] = 89654, + [SMALL_STATE(1242)] = 89705, + [SMALL_STATE(1243)] = 89756, + [SMALL_STATE(1244)] = 89807, + [SMALL_STATE(1245)] = 89858, + [SMALL_STATE(1246)] = 89909, + [SMALL_STATE(1247)] = 89964, + [SMALL_STATE(1248)] = 90015, + [SMALL_STATE(1249)] = 90066, + [SMALL_STATE(1250)] = 90117, + [SMALL_STATE(1251)] = 90168, + [SMALL_STATE(1252)] = 90223, + [SMALL_STATE(1253)] = 90274, + [SMALL_STATE(1254)] = 90325, + [SMALL_STATE(1255)] = 90376, + [SMALL_STATE(1256)] = 90427, + [SMALL_STATE(1257)] = 90522, + [SMALL_STATE(1258)] = 90573, + [SMALL_STATE(1259)] = 90624, + [SMALL_STATE(1260)] = 90683, + [SMALL_STATE(1261)] = 90734, + [SMALL_STATE(1262)] = 90787, + [SMALL_STATE(1263)] = 90838, + [SMALL_STATE(1264)] = 90891, + [SMALL_STATE(1265)] = 90942, + [SMALL_STATE(1266)] = 90993, + [SMALL_STATE(1267)] = 91044, + [SMALL_STATE(1268)] = 91095, + [SMALL_STATE(1269)] = 91146, + [SMALL_STATE(1270)] = 91197, + [SMALL_STATE(1271)] = 91248, + [SMALL_STATE(1272)] = 91339, + [SMALL_STATE(1273)] = 91430, + [SMALL_STATE(1274)] = 91483, + [SMALL_STATE(1275)] = 91534, + [SMALL_STATE(1276)] = 91585, + [SMALL_STATE(1277)] = 91636, + [SMALL_STATE(1278)] = 91691, + [SMALL_STATE(1279)] = 91742, + [SMALL_STATE(1280)] = 91797, + [SMALL_STATE(1281)] = 91848, + [SMALL_STATE(1282)] = 91899, + [SMALL_STATE(1283)] = 91950, + [SMALL_STATE(1284)] = 92001, + [SMALL_STATE(1285)] = 92052, + [SMALL_STATE(1286)] = 92143, + [SMALL_STATE(1287)] = 92234, + [SMALL_STATE(1288)] = 92285, + [SMALL_STATE(1289)] = 92336, + [SMALL_STATE(1290)] = 92387, + [SMALL_STATE(1291)] = 92438, + [SMALL_STATE(1292)] = 92489, + [SMALL_STATE(1293)] = 92540, + [SMALL_STATE(1294)] = 92591, + [SMALL_STATE(1295)] = 92642, + [SMALL_STATE(1296)] = 92693, + [SMALL_STATE(1297)] = 92748, + [SMALL_STATE(1298)] = 92799, + [SMALL_STATE(1299)] = 92850, + [SMALL_STATE(1300)] = 92901, + [SMALL_STATE(1301)] = 92952, + [SMALL_STATE(1302)] = 93003, + [SMALL_STATE(1303)] = 93054, + [SMALL_STATE(1304)] = 93105, + [SMALL_STATE(1305)] = 93156, + [SMALL_STATE(1306)] = 93207, + [SMALL_STATE(1307)] = 93258, + [SMALL_STATE(1308)] = 93309, + [SMALL_STATE(1309)] = 93360, + [SMALL_STATE(1310)] = 93411, + [SMALL_STATE(1311)] = 93462, + [SMALL_STATE(1312)] = 93513, + [SMALL_STATE(1313)] = 93564, + [SMALL_STATE(1314)] = 93615, + [SMALL_STATE(1315)] = 93666, + [SMALL_STATE(1316)] = 93717, + [SMALL_STATE(1317)] = 93768, + [SMALL_STATE(1318)] = 93819, + [SMALL_STATE(1319)] = 93870, + [SMALL_STATE(1320)] = 93921, + [SMALL_STATE(1321)] = 93972, + [SMALL_STATE(1322)] = 94023, + [SMALL_STATE(1323)] = 94074, + [SMALL_STATE(1324)] = 94125, + [SMALL_STATE(1325)] = 94176, + [SMALL_STATE(1326)] = 94227, + [SMALL_STATE(1327)] = 94278, + [SMALL_STATE(1328)] = 94329, + [SMALL_STATE(1329)] = 94380, + [SMALL_STATE(1330)] = 94431, + [SMALL_STATE(1331)] = 94482, + [SMALL_STATE(1332)] = 94535, + [SMALL_STATE(1333)] = 94630, + [SMALL_STATE(1334)] = 94725, + [SMALL_STATE(1335)] = 94776, + [SMALL_STATE(1336)] = 94871, + [SMALL_STATE(1337)] = 94922, + [SMALL_STATE(1338)] = 94981, + [SMALL_STATE(1339)] = 95032, + [SMALL_STATE(1340)] = 95127, + [SMALL_STATE(1341)] = 95178, + [SMALL_STATE(1342)] = 95229, + [SMALL_STATE(1343)] = 95280, + [SMALL_STATE(1344)] = 95331, + [SMALL_STATE(1345)] = 95382, + [SMALL_STATE(1346)] = 95433, + [SMALL_STATE(1347)] = 95484, + [SMALL_STATE(1348)] = 95535, + [SMALL_STATE(1349)] = 95586, + [SMALL_STATE(1350)] = 95637, + [SMALL_STATE(1351)] = 95696, + [SMALL_STATE(1352)] = 95787, + [SMALL_STATE(1353)] = 95838, + [SMALL_STATE(1354)] = 95889, + [SMALL_STATE(1355)] = 95940, + [SMALL_STATE(1356)] = 95991, + [SMALL_STATE(1357)] = 96042, + [SMALL_STATE(1358)] = 96133, + [SMALL_STATE(1359)] = 96188, + [SMALL_STATE(1360)] = 96238, + [SMALL_STATE(1361)] = 96288, + [SMALL_STATE(1362)] = 96338, + [SMALL_STATE(1363)] = 96388, + [SMALL_STATE(1364)] = 96438, + [SMALL_STATE(1365)] = 96488, + [SMALL_STATE(1366)] = 96538, + [SMALL_STATE(1367)] = 96588, + [SMALL_STATE(1368)] = 96638, + [SMALL_STATE(1369)] = 96688, + [SMALL_STATE(1370)] = 96738, + [SMALL_STATE(1371)] = 96788, + [SMALL_STATE(1372)] = 96838, + [SMALL_STATE(1373)] = 96888, + [SMALL_STATE(1374)] = 96938, + [SMALL_STATE(1375)] = 96988, + [SMALL_STATE(1376)] = 97038, + [SMALL_STATE(1377)] = 97088, + [SMALL_STATE(1378)] = 97138, + [SMALL_STATE(1379)] = 97188, + [SMALL_STATE(1380)] = 97238, + [SMALL_STATE(1381)] = 97288, + [SMALL_STATE(1382)] = 97338, + [SMALL_STATE(1383)] = 97388, + [SMALL_STATE(1384)] = 97438, + [SMALL_STATE(1385)] = 97488, + [SMALL_STATE(1386)] = 97538, + [SMALL_STATE(1387)] = 97588, + [SMALL_STATE(1388)] = 97638, + [SMALL_STATE(1389)] = 97688, + [SMALL_STATE(1390)] = 97738, + [SMALL_STATE(1391)] = 97788, + [SMALL_STATE(1392)] = 97838, + [SMALL_STATE(1393)] = 97890, + [SMALL_STATE(1394)] = 97940, + [SMALL_STATE(1395)] = 97990, + [SMALL_STATE(1396)] = 98040, + [SMALL_STATE(1397)] = 98090, + [SMALL_STATE(1398)] = 98140, + [SMALL_STATE(1399)] = 98190, + [SMALL_STATE(1400)] = 98240, + [SMALL_STATE(1401)] = 98290, + [SMALL_STATE(1402)] = 98340, + [SMALL_STATE(1403)] = 98390, + [SMALL_STATE(1404)] = 98440, + [SMALL_STATE(1405)] = 98490, + [SMALL_STATE(1406)] = 98540, + [SMALL_STATE(1407)] = 98590, + [SMALL_STATE(1408)] = 98640, + [SMALL_STATE(1409)] = 98694, + [SMALL_STATE(1410)] = 98744, + [SMALL_STATE(1411)] = 98794, + [SMALL_STATE(1412)] = 98848, + [SMALL_STATE(1413)] = 98900, + [SMALL_STATE(1414)] = 98950, + [SMALL_STATE(1415)] = 99008, + [SMALL_STATE(1416)] = 99058, + [SMALL_STATE(1417)] = 99108, + [SMALL_STATE(1418)] = 99158, + [SMALL_STATE(1419)] = 99208, + [SMALL_STATE(1420)] = 99258, + [SMALL_STATE(1421)] = 99308, + [SMALL_STATE(1422)] = 99358, + [SMALL_STATE(1423)] = 99408, + [SMALL_STATE(1424)] = 99462, + [SMALL_STATE(1425)] = 99512, + [SMALL_STATE(1426)] = 99562, + [SMALL_STATE(1427)] = 99612, + [SMALL_STATE(1428)] = 99662, + [SMALL_STATE(1429)] = 99712, + [SMALL_STATE(1430)] = 99762, + [SMALL_STATE(1431)] = 99812, + [SMALL_STATE(1432)] = 99862, + [SMALL_STATE(1433)] = 99912, + [SMALL_STATE(1434)] = 99962, + [SMALL_STATE(1435)] = 100012, + [SMALL_STATE(1436)] = 100062, + [SMALL_STATE(1437)] = 100112, + [SMALL_STATE(1438)] = 100162, + [SMALL_STATE(1439)] = 100216, + [SMALL_STATE(1440)] = 100266, + [SMALL_STATE(1441)] = 100320, + [SMALL_STATE(1442)] = 100370, + [SMALL_STATE(1443)] = 100420, + [SMALL_STATE(1444)] = 100470, + [SMALL_STATE(1445)] = 100524, + [SMALL_STATE(1446)] = 100578, + [SMALL_STATE(1447)] = 100632, + [SMALL_STATE(1448)] = 100686, + [SMALL_STATE(1449)] = 100740, + [SMALL_STATE(1450)] = 100794, + [SMALL_STATE(1451)] = 100844, + [SMALL_STATE(1452)] = 100896, + [SMALL_STATE(1453)] = 100946, + [SMALL_STATE(1454)] = 101000, + [SMALL_STATE(1455)] = 101050, + [SMALL_STATE(1456)] = 101100, + [SMALL_STATE(1457)] = 101150, + [SMALL_STATE(1458)] = 101200, + [SMALL_STATE(1459)] = 101250, + [SMALL_STATE(1460)] = 101300, + [SMALL_STATE(1461)] = 101350, + [SMALL_STATE(1462)] = 101400, + [SMALL_STATE(1463)] = 101454, + [SMALL_STATE(1464)] = 101504, + [SMALL_STATE(1465)] = 101554, + [SMALL_STATE(1466)] = 101604, + [SMALL_STATE(1467)] = 101654, + [SMALL_STATE(1468)] = 101746, + [SMALL_STATE(1469)] = 101838, + [SMALL_STATE(1470)] = 101892, + [SMALL_STATE(1471)] = 101984, + [SMALL_STATE(1472)] = 102034, + [SMALL_STATE(1473)] = 102126, + [SMALL_STATE(1474)] = 102180, + [SMALL_STATE(1475)] = 102230, + [SMALL_STATE(1476)] = 102280, + [SMALL_STATE(1477)] = 102330, + [SMALL_STATE(1478)] = 102380, + [SMALL_STATE(1479)] = 102430, + [SMALL_STATE(1480)] = 102480, + [SMALL_STATE(1481)] = 102530, + [SMALL_STATE(1482)] = 102579, + [SMALL_STATE(1483)] = 102628, + [SMALL_STATE(1484)] = 102677, + [SMALL_STATE(1485)] = 102726, + [SMALL_STATE(1486)] = 102777, + [SMALL_STATE(1487)] = 102826, + [SMALL_STATE(1488)] = 102875, + [SMALL_STATE(1489)] = 102924, + [SMALL_STATE(1490)] = 102973, + [SMALL_STATE(1491)] = 103022, + [SMALL_STATE(1492)] = 103071, + [SMALL_STATE(1493)] = 103120, + [SMALL_STATE(1494)] = 103177, + [SMALL_STATE(1495)] = 103226, + [SMALL_STATE(1496)] = 103315, + [SMALL_STATE(1497)] = 103364, + [SMALL_STATE(1498)] = 103413, + [SMALL_STATE(1499)] = 103502, + [SMALL_STATE(1500)] = 103551, + [SMALL_STATE(1501)] = 103602, + [SMALL_STATE(1502)] = 103651, + [SMALL_STATE(1503)] = 103700, + [SMALL_STATE(1504)] = 103749, + [SMALL_STATE(1505)] = 103798, + [SMALL_STATE(1506)] = 103847, + [SMALL_STATE(1507)] = 103896, + [SMALL_STATE(1508)] = 103945, + [SMALL_STATE(1509)] = 104002, + [SMALL_STATE(1510)] = 104051, + [SMALL_STATE(1511)] = 104100, + [SMALL_STATE(1512)] = 104149, + [SMALL_STATE(1513)] = 104198, + [SMALL_STATE(1514)] = 104247, + [SMALL_STATE(1515)] = 104300, + [SMALL_STATE(1516)] = 104353, + [SMALL_STATE(1517)] = 104442, + [SMALL_STATE(1518)] = 104491, + [SMALL_STATE(1519)] = 104540, + [SMALL_STATE(1520)] = 104589, + [SMALL_STATE(1521)] = 104642, + [SMALL_STATE(1522)] = 104691, + [SMALL_STATE(1523)] = 104740, + [SMALL_STATE(1524)] = 104789, + [SMALL_STATE(1525)] = 104842, + [SMALL_STATE(1526)] = 104891, + [SMALL_STATE(1527)] = 104940, + [SMALL_STATE(1528)] = 104989, + [SMALL_STATE(1529)] = 105038, + [SMALL_STATE(1530)] = 105087, + [SMALL_STATE(1531)] = 105136, + [SMALL_STATE(1532)] = 105185, + [SMALL_STATE(1533)] = 105234, + [SMALL_STATE(1534)] = 105287, + [SMALL_STATE(1535)] = 105336, + [SMALL_STATE(1536)] = 105385, + [SMALL_STATE(1537)] = 105438, + [SMALL_STATE(1538)] = 105487, + [SMALL_STATE(1539)] = 105536, + [SMALL_STATE(1540)] = 105585, + [SMALL_STATE(1541)] = 105634, + [SMALL_STATE(1542)] = 105683, + [SMALL_STATE(1543)] = 105732, + [SMALL_STATE(1544)] = 105781, + [SMALL_STATE(1545)] = 105830, + [SMALL_STATE(1546)] = 105883, + [SMALL_STATE(1547)] = 105932, + [SMALL_STATE(1548)] = 105981, + [SMALL_STATE(1549)] = 106030, + [SMALL_STATE(1550)] = 106079, + [SMALL_STATE(1551)] = 106128, + [SMALL_STATE(1552)] = 106177, + [SMALL_STATE(1553)] = 106228, + [SMALL_STATE(1554)] = 106277, + [SMALL_STATE(1555)] = 106326, + [SMALL_STATE(1556)] = 106375, + [SMALL_STATE(1557)] = 106432, + [SMALL_STATE(1558)] = 106481, + [SMALL_STATE(1559)] = 106530, + [SMALL_STATE(1560)] = 106579, + [SMALL_STATE(1561)] = 106628, + [SMALL_STATE(1562)] = 106677, + [SMALL_STATE(1563)] = 106726, + [SMALL_STATE(1564)] = 106775, + [SMALL_STATE(1565)] = 106832, + [SMALL_STATE(1566)] = 106881, + [SMALL_STATE(1567)] = 106930, + [SMALL_STATE(1568)] = 106979, + [SMALL_STATE(1569)] = 107028, + [SMALL_STATE(1570)] = 107077, + [SMALL_STATE(1571)] = 107126, + [SMALL_STATE(1572)] = 107175, + [SMALL_STATE(1573)] = 107224, + [SMALL_STATE(1574)] = 107313, + [SMALL_STATE(1575)] = 107362, + [SMALL_STATE(1576)] = 107411, + [SMALL_STATE(1577)] = 107460, + [SMALL_STATE(1578)] = 107509, + [SMALL_STATE(1579)] = 107558, + [SMALL_STATE(1580)] = 107607, + [SMALL_STATE(1581)] = 107656, + [SMALL_STATE(1582)] = 107705, + [SMALL_STATE(1583)] = 107754, + [SMALL_STATE(1584)] = 107803, + [SMALL_STATE(1585)] = 107892, + [SMALL_STATE(1586)] = 107941, + [SMALL_STATE(1587)] = 107990, + [SMALL_STATE(1588)] = 108043, + [SMALL_STATE(1589)] = 108092, + [SMALL_STATE(1590)] = 108145, + [SMALL_STATE(1591)] = 108202, + [SMALL_STATE(1592)] = 108291, + [SMALL_STATE(1593)] = 108340, + [SMALL_STATE(1594)] = 108429, + [SMALL_STATE(1595)] = 108478, + [SMALL_STATE(1596)] = 108527, + [SMALL_STATE(1597)] = 108578, + [SMALL_STATE(1598)] = 108627, + [SMALL_STATE(1599)] = 108676, + [SMALL_STATE(1600)] = 108725, + [SMALL_STATE(1601)] = 108782, + [SMALL_STATE(1602)] = 108835, + [SMALL_STATE(1603)] = 108884, + [SMALL_STATE(1604)] = 108933, + [SMALL_STATE(1605)] = 108982, + [SMALL_STATE(1606)] = 109071, + [SMALL_STATE(1607)] = 109120, + [SMALL_STATE(1608)] = 109169, + [SMALL_STATE(1609)] = 109218, + [SMALL_STATE(1610)] = 109307, + [SMALL_STATE(1611)] = 109356, + [SMALL_STATE(1612)] = 109405, + [SMALL_STATE(1613)] = 109454, + [SMALL_STATE(1614)] = 109503, + [SMALL_STATE(1615)] = 109552, + [SMALL_STATE(1616)] = 109601, + [SMALL_STATE(1617)] = 109650, + [SMALL_STATE(1618)] = 109701, + [SMALL_STATE(1619)] = 109750, + [SMALL_STATE(1620)] = 109799, + [SMALL_STATE(1621)] = 109848, + [SMALL_STATE(1622)] = 109897, + [SMALL_STATE(1623)] = 109946, + [SMALL_STATE(1624)] = 110003, + [SMALL_STATE(1625)] = 110052, + [SMALL_STATE(1626)] = 110101, + [SMALL_STATE(1627)] = 110150, + [SMALL_STATE(1628)] = 110199, + [SMALL_STATE(1629)] = 110248, + [SMALL_STATE(1630)] = 110297, + [SMALL_STATE(1631)] = 110346, + [SMALL_STATE(1632)] = 110395, + [SMALL_STATE(1633)] = 110444, + [SMALL_STATE(1634)] = 110493, + [SMALL_STATE(1635)] = 110542, + [SMALL_STATE(1636)] = 110591, + [SMALL_STATE(1637)] = 110640, + [SMALL_STATE(1638)] = 110689, + [SMALL_STATE(1639)] = 110738, + [SMALL_STATE(1640)] = 110827, + [SMALL_STATE(1641)] = 110876, + [SMALL_STATE(1642)] = 110925, + [SMALL_STATE(1643)] = 110974, + [SMALL_STATE(1644)] = 111023, + [SMALL_STATE(1645)] = 111072, + [SMALL_STATE(1646)] = 111121, + [SMALL_STATE(1647)] = 111170, + [SMALL_STATE(1648)] = 111219, + [SMALL_STATE(1649)] = 111268, + [SMALL_STATE(1650)] = 111325, + [SMALL_STATE(1651)] = 111374, + [SMALL_STATE(1652)] = 111422, + [SMALL_STATE(1653)] = 111470, + [SMALL_STATE(1654)] = 111518, + [SMALL_STATE(1655)] = 111566, + [SMALL_STATE(1656)] = 111614, + [SMALL_STATE(1657)] = 111662, + [SMALL_STATE(1658)] = 111710, + [SMALL_STATE(1659)] = 111758, + [SMALL_STATE(1660)] = 111806, + [SMALL_STATE(1661)] = 111854, + [SMALL_STATE(1662)] = 111902, + [SMALL_STATE(1663)] = 111950, + [SMALL_STATE(1664)] = 111998, + [SMALL_STATE(1665)] = 112046, + [SMALL_STATE(1666)] = 112094, + [SMALL_STATE(1667)] = 112142, + [SMALL_STATE(1668)] = 112190, + [SMALL_STATE(1669)] = 112238, + [SMALL_STATE(1670)] = 112286, + [SMALL_STATE(1671)] = 112334, + [SMALL_STATE(1672)] = 112382, + [SMALL_STATE(1673)] = 112430, + [SMALL_STATE(1674)] = 112478, + [SMALL_STATE(1675)] = 112526, + [SMALL_STATE(1676)] = 112574, + [SMALL_STATE(1677)] = 112622, + [SMALL_STATE(1678)] = 112670, + [SMALL_STATE(1679)] = 112718, + [SMALL_STATE(1680)] = 112766, + [SMALL_STATE(1681)] = 112814, + [SMALL_STATE(1682)] = 112862, + [SMALL_STATE(1683)] = 112910, + [SMALL_STATE(1684)] = 112958, + [SMALL_STATE(1685)] = 113006, + [SMALL_STATE(1686)] = 113054, + [SMALL_STATE(1687)] = 113102, + [SMALL_STATE(1688)] = 113150, + [SMALL_STATE(1689)] = 113198, + [SMALL_STATE(1690)] = 113246, + [SMALL_STATE(1691)] = 113294, + [SMALL_STATE(1692)] = 113342, + [SMALL_STATE(1693)] = 113390, + [SMALL_STATE(1694)] = 113438, + [SMALL_STATE(1695)] = 113486, + [SMALL_STATE(1696)] = 113534, + [SMALL_STATE(1697)] = 113582, + [SMALL_STATE(1698)] = 113630, + [SMALL_STATE(1699)] = 113678, + [SMALL_STATE(1700)] = 113726, + [SMALL_STATE(1701)] = 113774, + [SMALL_STATE(1702)] = 113822, + [SMALL_STATE(1703)] = 113870, + [SMALL_STATE(1704)] = 113918, + [SMALL_STATE(1705)] = 113966, + [SMALL_STATE(1706)] = 114014, + [SMALL_STATE(1707)] = 114062, + [SMALL_STATE(1708)] = 114110, + [SMALL_STATE(1709)] = 114158, + [SMALL_STATE(1710)] = 114206, + [SMALL_STATE(1711)] = 114254, + [SMALL_STATE(1712)] = 114302, + [SMALL_STATE(1713)] = 114350, + [SMALL_STATE(1714)] = 114398, + [SMALL_STATE(1715)] = 114446, + [SMALL_STATE(1716)] = 114494, + [SMALL_STATE(1717)] = 114542, + [SMALL_STATE(1718)] = 114590, + [SMALL_STATE(1719)] = 114638, + [SMALL_STATE(1720)] = 114686, + [SMALL_STATE(1721)] = 114734, + [SMALL_STATE(1722)] = 114782, + [SMALL_STATE(1723)] = 114830, + [SMALL_STATE(1724)] = 114878, + [SMALL_STATE(1725)] = 114926, + [SMALL_STATE(1726)] = 114974, + [SMALL_STATE(1727)] = 115022, + [SMALL_STATE(1728)] = 115070, + [SMALL_STATE(1729)] = 115118, + [SMALL_STATE(1730)] = 115166, + [SMALL_STATE(1731)] = 115214, + [SMALL_STATE(1732)] = 115262, + [SMALL_STATE(1733)] = 115310, + [SMALL_STATE(1734)] = 115358, + [SMALL_STATE(1735)] = 115406, + [SMALL_STATE(1736)] = 115454, + [SMALL_STATE(1737)] = 115502, + [SMALL_STATE(1738)] = 115550, + [SMALL_STATE(1739)] = 115598, + [SMALL_STATE(1740)] = 115646, + [SMALL_STATE(1741)] = 115694, + [SMALL_STATE(1742)] = 115742, + [SMALL_STATE(1743)] = 115790, + [SMALL_STATE(1744)] = 115838, + [SMALL_STATE(1745)] = 115886, + [SMALL_STATE(1746)] = 115934, + [SMALL_STATE(1747)] = 115982, + [SMALL_STATE(1748)] = 116030, + [SMALL_STATE(1749)] = 116078, + [SMALL_STATE(1750)] = 116126, + [SMALL_STATE(1751)] = 116174, + [SMALL_STATE(1752)] = 116222, + [SMALL_STATE(1753)] = 116270, + [SMALL_STATE(1754)] = 116318, + [SMALL_STATE(1755)] = 116366, + [SMALL_STATE(1756)] = 116414, + [SMALL_STATE(1757)] = 116462, + [SMALL_STATE(1758)] = 116510, + [SMALL_STATE(1759)] = 116558, + [SMALL_STATE(1760)] = 116606, + [SMALL_STATE(1761)] = 116654, + [SMALL_STATE(1762)] = 116702, + [SMALL_STATE(1763)] = 116750, + [SMALL_STATE(1764)] = 116798, + [SMALL_STATE(1765)] = 116846, + [SMALL_STATE(1766)] = 116894, + [SMALL_STATE(1767)] = 116942, + [SMALL_STATE(1768)] = 116990, + [SMALL_STATE(1769)] = 117038, + [SMALL_STATE(1770)] = 117086, + [SMALL_STATE(1771)] = 117134, + [SMALL_STATE(1772)] = 117182, + [SMALL_STATE(1773)] = 117230, + [SMALL_STATE(1774)] = 117278, + [SMALL_STATE(1775)] = 117326, + [SMALL_STATE(1776)] = 117374, + [SMALL_STATE(1777)] = 117422, + [SMALL_STATE(1778)] = 117472, + [SMALL_STATE(1779)] = 117520, + [SMALL_STATE(1780)] = 117570, + [SMALL_STATE(1781)] = 117618, + [SMALL_STATE(1782)] = 117666, + [SMALL_STATE(1783)] = 117714, + [SMALL_STATE(1784)] = 117764, + [SMALL_STATE(1785)] = 117812, + [SMALL_STATE(1786)] = 117860, + [SMALL_STATE(1787)] = 117908, + [SMALL_STATE(1788)] = 117956, + [SMALL_STATE(1789)] = 118004, + [SMALL_STATE(1790)] = 118052, + [SMALL_STATE(1791)] = 118100, + [SMALL_STATE(1792)] = 118150, + [SMALL_STATE(1793)] = 118198, + [SMALL_STATE(1794)] = 118246, + [SMALL_STATE(1795)] = 118294, + [SMALL_STATE(1796)] = 118342, + [SMALL_STATE(1797)] = 118390, + [SMALL_STATE(1798)] = 118438, + [SMALL_STATE(1799)] = 118486, + [SMALL_STATE(1800)] = 118534, + [SMALL_STATE(1801)] = 118582, + [SMALL_STATE(1802)] = 118632, + [SMALL_STATE(1803)] = 118680, + [SMALL_STATE(1804)] = 118728, + [SMALL_STATE(1805)] = 118776, + [SMALL_STATE(1806)] = 118824, + [SMALL_STATE(1807)] = 118871, + [SMALL_STATE(1808)] = 118926, + [SMALL_STATE(1809)] = 118973, + [SMALL_STATE(1810)] = 119020, + [SMALL_STATE(1811)] = 119075, + [SMALL_STATE(1812)] = 119122, + [SMALL_STATE(1813)] = 119169, + [SMALL_STATE(1814)] = 119216, + [SMALL_STATE(1815)] = 119267, + [SMALL_STATE(1816)] = 119314, + [SMALL_STATE(1817)] = 119401, + [SMALL_STATE(1818)] = 119448, + [SMALL_STATE(1819)] = 119495, + [SMALL_STATE(1820)] = 119582, + [SMALL_STATE(1821)] = 119629, + [SMALL_STATE(1822)] = 119676, + [SMALL_STATE(1823)] = 119723, + [SMALL_STATE(1824)] = 119770, + [SMALL_STATE(1825)] = 119821, + [SMALL_STATE(1826)] = 119868, + [SMALL_STATE(1827)] = 119915, + [SMALL_STATE(1828)] = 120002, + [SMALL_STATE(1829)] = 120049, + [SMALL_STATE(1830)] = 120096, + [SMALL_STATE(1831)] = 120143, + [SMALL_STATE(1832)] = 120190, + [SMALL_STATE(1833)] = 120237, + [SMALL_STATE(1834)] = 120324, + [SMALL_STATE(1835)] = 120371, + [SMALL_STATE(1836)] = 120418, + [SMALL_STATE(1837)] = 120473, + [SMALL_STATE(1838)] = 120520, + [SMALL_STATE(1839)] = 120567, + [SMALL_STATE(1840)] = 120614, + [SMALL_STATE(1841)] = 120661, + [SMALL_STATE(1842)] = 120708, + [SMALL_STATE(1843)] = 120755, + [SMALL_STATE(1844)] = 120802, + [SMALL_STATE(1845)] = 120849, + [SMALL_STATE(1846)] = 120896, + [SMALL_STATE(1847)] = 120943, + [SMALL_STATE(1848)] = 120998, + [SMALL_STATE(1849)] = 121085, + [SMALL_STATE(1850)] = 121132, + [SMALL_STATE(1851)] = 121219, + [SMALL_STATE(1852)] = 121266, + [SMALL_STATE(1853)] = 121353, + [SMALL_STATE(1854)] = 121408, + [SMALL_STATE(1855)] = 121455, + [SMALL_STATE(1856)] = 121502, + [SMALL_STATE(1857)] = 121549, + [SMALL_STATE(1858)] = 121596, + [SMALL_STATE(1859)] = 121643, + [SMALL_STATE(1860)] = 121690, + [SMALL_STATE(1861)] = 121737, + [SMALL_STATE(1862)] = 121824, + [SMALL_STATE(1863)] = 121871, + [SMALL_STATE(1864)] = 121918, + [SMALL_STATE(1865)] = 122005, + [SMALL_STATE(1866)] = 122052, + [SMALL_STATE(1867)] = 122099, + [SMALL_STATE(1868)] = 122145, + [SMALL_STATE(1869)] = 122193, + [SMALL_STATE(1870)] = 122239, + [SMALL_STATE(1871)] = 122285, + [SMALL_STATE(1872)] = 122331, + [SMALL_STATE(1873)] = 122377, + [SMALL_STATE(1874)] = 122423, + [SMALL_STATE(1875)] = 122469, + [SMALL_STATE(1876)] = 122515, + [SMALL_STATE(1877)] = 122561, + [SMALL_STATE(1878)] = 122607, + [SMALL_STATE(1879)] = 122653, + [SMALL_STATE(1880)] = 122699, + [SMALL_STATE(1881)] = 122747, + [SMALL_STATE(1882)] = 122793, + [SMALL_STATE(1883)] = 122839, + [SMALL_STATE(1884)] = 122885, + [SMALL_STATE(1885)] = 122931, + [SMALL_STATE(1886)] = 122977, + [SMALL_STATE(1887)] = 123023, + [SMALL_STATE(1888)] = 123069, + [SMALL_STATE(1889)] = 123115, + [SMALL_STATE(1890)] = 123161, + [SMALL_STATE(1891)] = 123207, + [SMALL_STATE(1892)] = 123300, + [SMALL_STATE(1893)] = 123393, + [SMALL_STATE(1894)] = 123486, + [SMALL_STATE(1895)] = 123579, + [SMALL_STATE(1896)] = 123672, + [SMALL_STATE(1897)] = 123765, + [SMALL_STATE(1898)] = 123858, + [SMALL_STATE(1899)] = 123951, + [SMALL_STATE(1900)] = 124044, + [SMALL_STATE(1901)] = 124137, + [SMALL_STATE(1902)] = 124182, + [SMALL_STATE(1903)] = 124275, + [SMALL_STATE(1904)] = 124368, + [SMALL_STATE(1905)] = 124461, + [SMALL_STATE(1906)] = 124554, + [SMALL_STATE(1907)] = 124647, + [SMALL_STATE(1908)] = 124740, + [SMALL_STATE(1909)] = 124827, + [SMALL_STATE(1910)] = 124914, + [SMALL_STATE(1911)] = 125001, + [SMALL_STATE(1912)] = 125088, + [SMALL_STATE(1913)] = 125175, + [SMALL_STATE(1914)] = 125262, + [SMALL_STATE(1915)] = 125349, + [SMALL_STATE(1916)] = 125436, + [SMALL_STATE(1917)] = 125523, + [SMALL_STATE(1918)] = 125610, + [SMALL_STATE(1919)] = 125697, + [SMALL_STATE(1920)] = 125784, + [SMALL_STATE(1921)] = 125864, + [SMALL_STATE(1922)] = 125944, + [SMALL_STATE(1923)] = 126024, + [SMALL_STATE(1924)] = 126082, + [SMALL_STATE(1925)] = 126166, + [SMALL_STATE(1926)] = 126246, + [SMALL_STATE(1927)] = 126303, + [SMALL_STATE(1928)] = 126360, + [SMALL_STATE(1929)] = 126417, + [SMALL_STATE(1930)] = 126494, + [SMALL_STATE(1931)] = 126548, + [SMALL_STATE(1932)] = 126626, + [SMALL_STATE(1933)] = 126680, + [SMALL_STATE(1934)] = 126758, + [SMALL_STATE(1935)] = 126812, + [SMALL_STATE(1936)] = 126866, + [SMALL_STATE(1937)] = 126920, + [SMALL_STATE(1938)] = 126964, + [SMALL_STATE(1939)] = 127008, + [SMALL_STATE(1940)] = 127086, + [SMALL_STATE(1941)] = 127164, + [SMALL_STATE(1942)] = 127218, + [SMALL_STATE(1943)] = 127296, + [SMALL_STATE(1944)] = 127350, + [SMALL_STATE(1945)] = 127428, + [SMALL_STATE(1946)] = 127482, + [SMALL_STATE(1947)] = 127536, + [SMALL_STATE(1948)] = 127590, + [SMALL_STATE(1949)] = 127668, + [SMALL_STATE(1950)] = 127712, + [SMALL_STATE(1951)] = 127756, + [SMALL_STATE(1952)] = 127834, + [SMALL_STATE(1953)] = 127912, + [SMALL_STATE(1954)] = 127990, + [SMALL_STATE(1955)] = 128068, + [SMALL_STATE(1956)] = 128122, + [SMALL_STATE(1957)] = 128200, + [SMALL_STATE(1958)] = 128254, + [SMALL_STATE(1959)] = 128308, + [SMALL_STATE(1960)] = 128362, + [SMALL_STATE(1961)] = 128416, + [SMALL_STATE(1962)] = 128470, + [SMALL_STATE(1963)] = 128548, + [SMALL_STATE(1964)] = 128626, + [SMALL_STATE(1965)] = 128680, + [SMALL_STATE(1966)] = 128734, + [SMALL_STATE(1967)] = 128788, + [SMALL_STATE(1968)] = 128842, + [SMALL_STATE(1969)] = 128920, + [SMALL_STATE(1970)] = 128974, + [SMALL_STATE(1971)] = 129028, + [SMALL_STATE(1972)] = 129082, + [SMALL_STATE(1973)] = 129126, + [SMALL_STATE(1974)] = 129180, + [SMALL_STATE(1975)] = 129234, + [SMALL_STATE(1976)] = 129288, + [SMALL_STATE(1977)] = 129342, + [SMALL_STATE(1978)] = 129396, + [SMALL_STATE(1979)] = 129450, + [SMALL_STATE(1980)] = 129528, + [SMALL_STATE(1981)] = 129606, + [SMALL_STATE(1982)] = 129660, + [SMALL_STATE(1983)] = 129714, + [SMALL_STATE(1984)] = 129792, + [SMALL_STATE(1985)] = 129870, + [SMALL_STATE(1986)] = 129924, + [SMALL_STATE(1987)] = 130002, + [SMALL_STATE(1988)] = 130056, + [SMALL_STATE(1989)] = 130110, + [SMALL_STATE(1990)] = 130164, + [SMALL_STATE(1991)] = 130218, + [SMALL_STATE(1992)] = 130272, + [SMALL_STATE(1993)] = 130326, + [SMALL_STATE(1994)] = 130380, + [SMALL_STATE(1995)] = 130458, + [SMALL_STATE(1996)] = 130512, + [SMALL_STATE(1997)] = 130590, + [SMALL_STATE(1998)] = 130644, + [SMALL_STATE(1999)] = 130698, + [SMALL_STATE(2000)] = 130776, + [SMALL_STATE(2001)] = 130830, + [SMALL_STATE(2002)] = 130884, + [SMALL_STATE(2003)] = 130962, + [SMALL_STATE(2004)] = 131040, + [SMALL_STATE(2005)] = 131118, + [SMALL_STATE(2006)] = 131172, + [SMALL_STATE(2007)] = 131226, + [SMALL_STATE(2008)] = 131280, + [SMALL_STATE(2009)] = 131358, + [SMALL_STATE(2010)] = 131436, + [SMALL_STATE(2011)] = 131490, + [SMALL_STATE(2012)] = 131544, + [SMALL_STATE(2013)] = 131598, + [SMALL_STATE(2014)] = 131652, + [SMALL_STATE(2015)] = 131706, + [SMALL_STATE(2016)] = 131760, + [SMALL_STATE(2017)] = 131814, + [SMALL_STATE(2018)] = 131868, + [SMALL_STATE(2019)] = 131922, + [SMALL_STATE(2020)] = 131976, + [SMALL_STATE(2021)] = 132030, + [SMALL_STATE(2022)] = 132084, + [SMALL_STATE(2023)] = 132138, + [SMALL_STATE(2024)] = 132192, + [SMALL_STATE(2025)] = 132246, + [SMALL_STATE(2026)] = 132300, + [SMALL_STATE(2027)] = 132354, + [SMALL_STATE(2028)] = 132408, + [SMALL_STATE(2029)] = 132462, + [SMALL_STATE(2030)] = 132516, + [SMALL_STATE(2031)] = 132570, + [SMALL_STATE(2032)] = 132624, + [SMALL_STATE(2033)] = 132668, + [SMALL_STATE(2034)] = 132746, + [SMALL_STATE(2035)] = 132785, + [SMALL_STATE(2036)] = 132824, + [SMALL_STATE(2037)] = 132867, + [SMALL_STATE(2038)] = 132910, + [SMALL_STATE(2039)] = 132953, + [SMALL_STATE(2040)] = 132992, + [SMALL_STATE(2041)] = 133033, + [SMALL_STATE(2042)] = 133072, + [SMALL_STATE(2043)] = 133111, + [SMALL_STATE(2044)] = 133150, + [SMALL_STATE(2045)] = 133189, + [SMALL_STATE(2046)] = 133228, + [SMALL_STATE(2047)] = 133267, + [SMALL_STATE(2048)] = 133306, + [SMALL_STATE(2049)] = 133345, + [SMALL_STATE(2050)] = 133384, + [SMALL_STATE(2051)] = 133423, + [SMALL_STATE(2052)] = 133462, + [SMALL_STATE(2053)] = 133501, + [SMALL_STATE(2054)] = 133544, + [SMALL_STATE(2055)] = 133583, + [SMALL_STATE(2056)] = 133622, + [SMALL_STATE(2057)] = 133665, + [SMALL_STATE(2058)] = 133704, + [SMALL_STATE(2059)] = 133747, + [SMALL_STATE(2060)] = 133786, + [SMALL_STATE(2061)] = 133825, + [SMALL_STATE(2062)] = 133864, + [SMALL_STATE(2063)] = 133903, + [SMALL_STATE(2064)] = 133946, + [SMALL_STATE(2065)] = 133984, + [SMALL_STATE(2066)] = 134022, + [SMALL_STATE(2067)] = 134060, + [SMALL_STATE(2068)] = 134098, + [SMALL_STATE(2069)] = 134136, + [SMALL_STATE(2070)] = 134174, + [SMALL_STATE(2071)] = 134212, + [SMALL_STATE(2072)] = 134250, + [SMALL_STATE(2073)] = 134288, + [SMALL_STATE(2074)] = 134326, + [SMALL_STATE(2075)] = 134364, + [SMALL_STATE(2076)] = 134438, + [SMALL_STATE(2077)] = 134476, + [SMALL_STATE(2078)] = 134548, + [SMALL_STATE(2079)] = 134586, + [SMALL_STATE(2080)] = 134624, + [SMALL_STATE(2081)] = 134662, + [SMALL_STATE(2082)] = 134700, + [SMALL_STATE(2083)] = 134740, + [SMALL_STATE(2084)] = 134778, + [SMALL_STATE(2085)] = 134816, + [SMALL_STATE(2086)] = 134854, + [SMALL_STATE(2087)] = 134892, + [SMALL_STATE(2088)] = 134930, + [SMALL_STATE(2089)] = 134968, + [SMALL_STATE(2090)] = 135006, + [SMALL_STATE(2091)] = 135044, + [SMALL_STATE(2092)] = 135082, + [SMALL_STATE(2093)] = 135120, + [SMALL_STATE(2094)] = 135158, + [SMALL_STATE(2095)] = 135196, + [SMALL_STATE(2096)] = 135234, + [SMALL_STATE(2097)] = 135272, + [SMALL_STATE(2098)] = 135310, + [SMALL_STATE(2099)] = 135348, + [SMALL_STATE(2100)] = 135386, + [SMALL_STATE(2101)] = 135426, + [SMALL_STATE(2102)] = 135466, + [SMALL_STATE(2103)] = 135504, + [SMALL_STATE(2104)] = 135542, + [SMALL_STATE(2105)] = 135580, + [SMALL_STATE(2106)] = 135618, + [SMALL_STATE(2107)] = 135656, + [SMALL_STATE(2108)] = 135694, + [SMALL_STATE(2109)] = 135732, + [SMALL_STATE(2110)] = 135770, + [SMALL_STATE(2111)] = 135844, + [SMALL_STATE(2112)] = 135882, + [SMALL_STATE(2113)] = 135920, + [SMALL_STATE(2114)] = 135958, + [SMALL_STATE(2115)] = 135996, + [SMALL_STATE(2116)] = 136034, + [SMALL_STATE(2117)] = 136072, + [SMALL_STATE(2118)] = 136144, + [SMALL_STATE(2119)] = 136182, + [SMALL_STATE(2120)] = 136254, + [SMALL_STATE(2121)] = 136292, + [SMALL_STATE(2122)] = 136330, + [SMALL_STATE(2123)] = 136402, + [SMALL_STATE(2124)] = 136440, + [SMALL_STATE(2125)] = 136478, + [SMALL_STATE(2126)] = 136516, + [SMALL_STATE(2127)] = 136553, + [SMALL_STATE(2128)] = 136624, + [SMALL_STATE(2129)] = 136695, + [SMALL_STATE(2130)] = 136766, + [SMALL_STATE(2131)] = 136837, + [SMALL_STATE(2132)] = 136908, + [SMALL_STATE(2133)] = 136979, + [SMALL_STATE(2134)] = 137050, + [SMALL_STATE(2135)] = 137121, + [SMALL_STATE(2136)] = 137192, + [SMALL_STATE(2137)] = 137229, + [SMALL_STATE(2138)] = 137300, + [SMALL_STATE(2139)] = 137337, + [SMALL_STATE(2140)] = 137408, + [SMALL_STATE(2141)] = 137479, + [SMALL_STATE(2142)] = 137550, + [SMALL_STATE(2143)] = 137621, + [SMALL_STATE(2144)] = 137692, + [SMALL_STATE(2145)] = 137763, + [SMALL_STATE(2146)] = 137834, + [SMALL_STATE(2147)] = 137905, + [SMALL_STATE(2148)] = 137976, + [SMALL_STATE(2149)] = 138013, + [SMALL_STATE(2150)] = 138084, + [SMALL_STATE(2151)] = 138155, + [SMALL_STATE(2152)] = 138192, + [SMALL_STATE(2153)] = 138263, + [SMALL_STATE(2154)] = 138334, + [SMALL_STATE(2155)] = 138405, + [SMALL_STATE(2156)] = 138476, + [SMALL_STATE(2157)] = 138513, + [SMALL_STATE(2158)] = 138584, + [SMALL_STATE(2159)] = 138655, + [SMALL_STATE(2160)] = 138692, + [SMALL_STATE(2161)] = 138763, + [SMALL_STATE(2162)] = 138834, + [SMALL_STATE(2163)] = 138905, + [SMALL_STATE(2164)] = 138976, + [SMALL_STATE(2165)] = 139047, + [SMALL_STATE(2166)] = 139118, + [SMALL_STATE(2167)] = 139189, + [SMALL_STATE(2168)] = 139260, + [SMALL_STATE(2169)] = 139297, + [SMALL_STATE(2170)] = 139368, + [SMALL_STATE(2171)] = 139439, + [SMALL_STATE(2172)] = 139510, + [SMALL_STATE(2173)] = 139563, + [SMALL_STATE(2174)] = 139634, + [SMALL_STATE(2175)] = 139705, + [SMALL_STATE(2176)] = 139776, + [SMALL_STATE(2177)] = 139847, + [SMALL_STATE(2178)] = 139918, + [SMALL_STATE(2179)] = 139989, + [SMALL_STATE(2180)] = 140060, + [SMALL_STATE(2181)] = 140131, + [SMALL_STATE(2182)] = 140168, + [SMALL_STATE(2183)] = 140239, + [SMALL_STATE(2184)] = 140310, + [SMALL_STATE(2185)] = 140381, + [SMALL_STATE(2186)] = 140452, + [SMALL_STATE(2187)] = 140505, + [SMALL_STATE(2188)] = 140558, + [SMALL_STATE(2189)] = 140629, + [SMALL_STATE(2190)] = 140679, + [SMALL_STATE(2191)] = 140747, + [SMALL_STATE(2192)] = 140817, + [SMALL_STATE(2193)] = 140867, + [SMALL_STATE(2194)] = 140917, + [SMALL_STATE(2195)] = 140967, + [SMALL_STATE(2196)] = 141017, + [SMALL_STATE(2197)] = 141067, + [SMALL_STATE(2198)] = 141117, + [SMALL_STATE(2199)] = 141167, + [SMALL_STATE(2200)] = 141217, + [SMALL_STATE(2201)] = 141267, + [SMALL_STATE(2202)] = 141317, + [SMALL_STATE(2203)] = 141367, + [SMALL_STATE(2204)] = 141417, + [SMALL_STATE(2205)] = 141467, + [SMALL_STATE(2206)] = 141517, + [SMALL_STATE(2207)] = 141567, + [SMALL_STATE(2208)] = 141617, + [SMALL_STATE(2209)] = 141667, + [SMALL_STATE(2210)] = 141717, + [SMALL_STATE(2211)] = 141767, + [SMALL_STATE(2212)] = 141817, + [SMALL_STATE(2213)] = 141867, + [SMALL_STATE(2214)] = 141917, + [SMALL_STATE(2215)] = 141967, + [SMALL_STATE(2216)] = 142017, + [SMALL_STATE(2217)] = 142067, + [SMALL_STATE(2218)] = 142117, + [SMALL_STATE(2219)] = 142167, + [SMALL_STATE(2220)] = 142217, + [SMALL_STATE(2221)] = 142267, + [SMALL_STATE(2222)] = 142317, + [SMALL_STATE(2223)] = 142367, + [SMALL_STATE(2224)] = 142417, + [SMALL_STATE(2225)] = 142467, + [SMALL_STATE(2226)] = 142517, + [SMALL_STATE(2227)] = 142567, + [SMALL_STATE(2228)] = 142617, + [SMALL_STATE(2229)] = 142667, + [SMALL_STATE(2230)] = 142717, + [SMALL_STATE(2231)] = 142767, + [SMALL_STATE(2232)] = 142817, + [SMALL_STATE(2233)] = 142867, + [SMALL_STATE(2234)] = 142917, + [SMALL_STATE(2235)] = 142967, + [SMALL_STATE(2236)] = 143017, + [SMALL_STATE(2237)] = 143067, + [SMALL_STATE(2238)] = 143117, + [SMALL_STATE(2239)] = 143167, + [SMALL_STATE(2240)] = 143217, + [SMALL_STATE(2241)] = 143267, + [SMALL_STATE(2242)] = 143317, + [SMALL_STATE(2243)] = 143367, + [SMALL_STATE(2244)] = 143417, + [SMALL_STATE(2245)] = 143467, + [SMALL_STATE(2246)] = 143517, + [SMALL_STATE(2247)] = 143567, + [SMALL_STATE(2248)] = 143617, + [SMALL_STATE(2249)] = 143667, + [SMALL_STATE(2250)] = 143717, + [SMALL_STATE(2251)] = 143767, + [SMALL_STATE(2252)] = 143817, + [SMALL_STATE(2253)] = 143867, + [SMALL_STATE(2254)] = 143917, + [SMALL_STATE(2255)] = 143967, + [SMALL_STATE(2256)] = 144017, + [SMALL_STATE(2257)] = 144085, + [SMALL_STATE(2258)] = 144153, + [SMALL_STATE(2259)] = 144223, + [SMALL_STATE(2260)] = 144273, + [SMALL_STATE(2261)] = 144323, + [SMALL_STATE(2262)] = 144393, + [SMALL_STATE(2263)] = 144463, + [SMALL_STATE(2264)] = 144513, + [SMALL_STATE(2265)] = 144563, + [SMALL_STATE(2266)] = 144633, + [SMALL_STATE(2267)] = 144703, + [SMALL_STATE(2268)] = 144773, + [SMALL_STATE(2269)] = 144843, + [SMALL_STATE(2270)] = 144913, + [SMALL_STATE(2271)] = 144983, + [SMALL_STATE(2272)] = 145053, + [SMALL_STATE(2273)] = 145123, + [SMALL_STATE(2274)] = 145193, + [SMALL_STATE(2275)] = 145263, + [SMALL_STATE(2276)] = 145333, + [SMALL_STATE(2277)] = 145403, + [SMALL_STATE(2278)] = 145473, + [SMALL_STATE(2279)] = 145543, + [SMALL_STATE(2280)] = 145613, + [SMALL_STATE(2281)] = 145683, + [SMALL_STATE(2282)] = 145753, + [SMALL_STATE(2283)] = 145823, + [SMALL_STATE(2284)] = 145863, + [SMALL_STATE(2285)] = 145933, + [SMALL_STATE(2286)] = 146003, + [SMALL_STATE(2287)] = 146043, + [SMALL_STATE(2288)] = 146113, + [SMALL_STATE(2289)] = 146183, + [SMALL_STATE(2290)] = 146253, + [SMALL_STATE(2291)] = 146323, + [SMALL_STATE(2292)] = 146393, + [SMALL_STATE(2293)] = 146463, + [SMALL_STATE(2294)] = 146533, + [SMALL_STATE(2295)] = 146603, + [SMALL_STATE(2296)] = 146673, + [SMALL_STATE(2297)] = 146743, + [SMALL_STATE(2298)] = 146813, + [SMALL_STATE(2299)] = 146883, + [SMALL_STATE(2300)] = 146953, + [SMALL_STATE(2301)] = 147023, + [SMALL_STATE(2302)] = 147063, + [SMALL_STATE(2303)] = 147103, + [SMALL_STATE(2304)] = 147173, + [SMALL_STATE(2305)] = 147243, + [SMALL_STATE(2306)] = 147313, + [SMALL_STATE(2307)] = 147383, + [SMALL_STATE(2308)] = 147453, + [SMALL_STATE(2309)] = 147523, + [SMALL_STATE(2310)] = 147593, + [SMALL_STATE(2311)] = 147663, + [SMALL_STATE(2312)] = 147733, + [SMALL_STATE(2313)] = 147803, + [SMALL_STATE(2314)] = 147873, + [SMALL_STATE(2315)] = 147943, + [SMALL_STATE(2316)] = 148013, + [SMALL_STATE(2317)] = 148083, + [SMALL_STATE(2318)] = 148153, + [SMALL_STATE(2319)] = 148223, + [SMALL_STATE(2320)] = 148293, + [SMALL_STATE(2321)] = 148363, + [SMALL_STATE(2322)] = 148433, + [SMALL_STATE(2323)] = 148503, + [SMALL_STATE(2324)] = 148573, + [SMALL_STATE(2325)] = 148643, + [SMALL_STATE(2326)] = 148713, + [SMALL_STATE(2327)] = 148783, + [SMALL_STATE(2328)] = 148853, + [SMALL_STATE(2329)] = 148923, + [SMALL_STATE(2330)] = 148993, + [SMALL_STATE(2331)] = 149063, + [SMALL_STATE(2332)] = 149128, + [SMALL_STATE(2333)] = 149193, + [SMALL_STATE(2334)] = 149258, + [SMALL_STATE(2335)] = 149323, + [SMALL_STATE(2336)] = 149388, + [SMALL_STATE(2337)] = 149453, + [SMALL_STATE(2338)] = 149492, + [SMALL_STATE(2339)] = 149557, + [SMALL_STATE(2340)] = 149622, + [SMALL_STATE(2341)] = 149687, + [SMALL_STATE(2342)] = 149752, + [SMALL_STATE(2343)] = 149817, + [SMALL_STATE(2344)] = 149882, + [SMALL_STATE(2345)] = 149947, + [SMALL_STATE(2346)] = 149986, + [SMALL_STATE(2347)] = 150051, + [SMALL_STATE(2348)] = 150116, + [SMALL_STATE(2349)] = 150181, + [SMALL_STATE(2350)] = 150246, + [SMALL_STATE(2351)] = 150311, + [SMALL_STATE(2352)] = 150376, + [SMALL_STATE(2353)] = 150441, + [SMALL_STATE(2354)] = 150506, + [SMALL_STATE(2355)] = 150571, + [SMALL_STATE(2356)] = 150636, + [SMALL_STATE(2357)] = 150701, + [SMALL_STATE(2358)] = 150766, + [SMALL_STATE(2359)] = 150831, + [SMALL_STATE(2360)] = 150870, + [SMALL_STATE(2361)] = 150935, + [SMALL_STATE(2362)] = 151000, + [SMALL_STATE(2363)] = 151065, + [SMALL_STATE(2364)] = 151130, + [SMALL_STATE(2365)] = 151195, + [SMALL_STATE(2366)] = 151260, + [SMALL_STATE(2367)] = 151299, + [SMALL_STATE(2368)] = 151335, + [SMALL_STATE(2369)] = 151369, + [SMALL_STATE(2370)] = 151403, + [SMALL_STATE(2371)] = 151437, + [SMALL_STATE(2372)] = 151471, + [SMALL_STATE(2373)] = 151505, + [SMALL_STATE(2374)] = 151539, + [SMALL_STATE(2375)] = 151573, + [SMALL_STATE(2376)] = 151607, + [SMALL_STATE(2377)] = 151641, + [SMALL_STATE(2378)] = 151675, + [SMALL_STATE(2379)] = 151709, + [SMALL_STATE(2380)] = 151743, + [SMALL_STATE(2381)] = 151777, + [SMALL_STATE(2382)] = 151811, + [SMALL_STATE(2383)] = 151845, + [SMALL_STATE(2384)] = 151879, + [SMALL_STATE(2385)] = 151929, + [SMALL_STATE(2386)] = 151979, + [SMALL_STATE(2387)] = 152029, + [SMALL_STATE(2388)] = 152063, + [SMALL_STATE(2389)] = 152097, + [SMALL_STATE(2390)] = 152131, + [SMALL_STATE(2391)] = 152165, + [SMALL_STATE(2392)] = 152199, + [SMALL_STATE(2393)] = 152233, + [SMALL_STATE(2394)] = 152267, + [SMALL_STATE(2395)] = 152317, + [SMALL_STATE(2396)] = 152351, + [SMALL_STATE(2397)] = 152385, + [SMALL_STATE(2398)] = 152419, + [SMALL_STATE(2399)] = 152453, + [SMALL_STATE(2400)] = 152487, + [SMALL_STATE(2401)] = 152537, + [SMALL_STATE(2402)] = 152571, + [SMALL_STATE(2403)] = 152605, + [SMALL_STATE(2404)] = 152639, + [SMALL_STATE(2405)] = 152673, + [SMALL_STATE(2406)] = 152707, + [SMALL_STATE(2407)] = 152741, + [SMALL_STATE(2408)] = 152777, + [SMALL_STATE(2409)] = 152811, + [SMALL_STATE(2410)] = 152845, + [SMALL_STATE(2411)] = 152879, + [SMALL_STATE(2412)] = 152913, + [SMALL_STATE(2413)] = 152947, + [SMALL_STATE(2414)] = 152981, + [SMALL_STATE(2415)] = 153015, + [SMALL_STATE(2416)] = 153049, + [SMALL_STATE(2417)] = 153083, + [SMALL_STATE(2418)] = 153117, + [SMALL_STATE(2419)] = 153167, + [SMALL_STATE(2420)] = 153214, + [SMALL_STATE(2421)] = 153261, + [SMALL_STATE(2422)] = 153308, + [SMALL_STATE(2423)] = 153355, + [SMALL_STATE(2424)] = 153402, + [SMALL_STATE(2425)] = 153449, + [SMALL_STATE(2426)] = 153496, + [SMALL_STATE(2427)] = 153543, + [SMALL_STATE(2428)] = 153590, + [SMALL_STATE(2429)] = 153637, + [SMALL_STATE(2430)] = 153684, + [SMALL_STATE(2431)] = 153731, + [SMALL_STATE(2432)] = 153778, + [SMALL_STATE(2433)] = 153825, + [SMALL_STATE(2434)] = 153872, + [SMALL_STATE(2435)] = 153919, + [SMALL_STATE(2436)] = 153966, + [SMALL_STATE(2437)] = 154013, + [SMALL_STATE(2438)] = 154060, + [SMALL_STATE(2439)] = 154107, + [SMALL_STATE(2440)] = 154154, + [SMALL_STATE(2441)] = 154201, + [SMALL_STATE(2442)] = 154248, + [SMALL_STATE(2443)] = 154295, + [SMALL_STATE(2444)] = 154342, + [SMALL_STATE(2445)] = 154389, + [SMALL_STATE(2446)] = 154436, + [SMALL_STATE(2447)] = 154483, + [SMALL_STATE(2448)] = 154530, + [SMALL_STATE(2449)] = 154577, + [SMALL_STATE(2450)] = 154624, + [SMALL_STATE(2451)] = 154671, + [SMALL_STATE(2452)] = 154718, + [SMALL_STATE(2453)] = 154765, + [SMALL_STATE(2454)] = 154812, + [SMALL_STATE(2455)] = 154859, + [SMALL_STATE(2456)] = 154906, + [SMALL_STATE(2457)] = 154953, + [SMALL_STATE(2458)] = 155000, + [SMALL_STATE(2459)] = 155047, + [SMALL_STATE(2460)] = 155094, + [SMALL_STATE(2461)] = 155141, + [SMALL_STATE(2462)] = 155188, + [SMALL_STATE(2463)] = 155235, + [SMALL_STATE(2464)] = 155282, + [SMALL_STATE(2465)] = 155329, + [SMALL_STATE(2466)] = 155376, + [SMALL_STATE(2467)] = 155423, + [SMALL_STATE(2468)] = 155470, + [SMALL_STATE(2469)] = 155517, + [SMALL_STATE(2470)] = 155564, + [SMALL_STATE(2471)] = 155611, + [SMALL_STATE(2472)] = 155658, + [SMALL_STATE(2473)] = 155705, + [SMALL_STATE(2474)] = 155752, + [SMALL_STATE(2475)] = 155799, + [SMALL_STATE(2476)] = 155832, + [SMALL_STATE(2477)] = 155879, + [SMALL_STATE(2478)] = 155926, + [SMALL_STATE(2479)] = 155973, + [SMALL_STATE(2480)] = 156020, + [SMALL_STATE(2481)] = 156053, + [SMALL_STATE(2482)] = 156100, + [SMALL_STATE(2483)] = 156133, + [SMALL_STATE(2484)] = 156180, + [SMALL_STATE(2485)] = 156227, + [SMALL_STATE(2486)] = 156260, + [SMALL_STATE(2487)] = 156307, + [SMALL_STATE(2488)] = 156354, + [SMALL_STATE(2489)] = 156401, + [SMALL_STATE(2490)] = 156448, + [SMALL_STATE(2491)] = 156495, + [SMALL_STATE(2492)] = 156542, + [SMALL_STATE(2493)] = 156575, + [SMALL_STATE(2494)] = 156622, + [SMALL_STATE(2495)] = 156669, + [SMALL_STATE(2496)] = 156716, + [SMALL_STATE(2497)] = 156763, + [SMALL_STATE(2498)] = 156810, + [SMALL_STATE(2499)] = 156857, + [SMALL_STATE(2500)] = 156904, + [SMALL_STATE(2501)] = 156937, + [SMALL_STATE(2502)] = 156984, + [SMALL_STATE(2503)] = 157031, + [SMALL_STATE(2504)] = 157078, + [SMALL_STATE(2505)] = 157111, + [SMALL_STATE(2506)] = 157158, + [SMALL_STATE(2507)] = 157205, + [SMALL_STATE(2508)] = 157252, + [SMALL_STATE(2509)] = 157289, + [SMALL_STATE(2510)] = 157336, + [SMALL_STATE(2511)] = 157373, + [SMALL_STATE(2512)] = 157420, + [SMALL_STATE(2513)] = 157467, + [SMALL_STATE(2514)] = 157514, + [SMALL_STATE(2515)] = 157561, + [SMALL_STATE(2516)] = 157598, + [SMALL_STATE(2517)] = 157645, + [SMALL_STATE(2518)] = 157692, + [SMALL_STATE(2519)] = 157739, + [SMALL_STATE(2520)] = 157786, + [SMALL_STATE(2521)] = 157833, + [SMALL_STATE(2522)] = 157880, + [SMALL_STATE(2523)] = 157927, + [SMALL_STATE(2524)] = 157974, + [SMALL_STATE(2525)] = 158007, + [SMALL_STATE(2526)] = 158054, + [SMALL_STATE(2527)] = 158101, + [SMALL_STATE(2528)] = 158148, + [SMALL_STATE(2529)] = 158195, + [SMALL_STATE(2530)] = 158232, + [SMALL_STATE(2531)] = 158279, + [SMALL_STATE(2532)] = 158326, + [SMALL_STATE(2533)] = 158373, + [SMALL_STATE(2534)] = 158420, + [SMALL_STATE(2535)] = 158467, + [SMALL_STATE(2536)] = 158514, + [SMALL_STATE(2537)] = 158561, + [SMALL_STATE(2538)] = 158608, + [SMALL_STATE(2539)] = 158655, + [SMALL_STATE(2540)] = 158702, + [SMALL_STATE(2541)] = 158749, + [SMALL_STATE(2542)] = 158796, + [SMALL_STATE(2543)] = 158843, + [SMALL_STATE(2544)] = 158890, + [SMALL_STATE(2545)] = 158937, + [SMALL_STATE(2546)] = 158984, + [SMALL_STATE(2547)] = 159031, + [SMALL_STATE(2548)] = 159078, + [SMALL_STATE(2549)] = 159125, + [SMALL_STATE(2550)] = 159172, + [SMALL_STATE(2551)] = 159219, + [SMALL_STATE(2552)] = 159256, + [SMALL_STATE(2553)] = 159293, + [SMALL_STATE(2554)] = 159340, + [SMALL_STATE(2555)] = 159387, + [SMALL_STATE(2556)] = 159434, + [SMALL_STATE(2557)] = 159481, + [SMALL_STATE(2558)] = 159528, + [SMALL_STATE(2559)] = 159575, + [SMALL_STATE(2560)] = 159622, + [SMALL_STATE(2561)] = 159669, + [SMALL_STATE(2562)] = 159716, + [SMALL_STATE(2563)] = 159753, + [SMALL_STATE(2564)] = 159790, + [SMALL_STATE(2565)] = 159837, + [SMALL_STATE(2566)] = 159884, + [SMALL_STATE(2567)] = 159931, + [SMALL_STATE(2568)] = 159978, + [SMALL_STATE(2569)] = 160025, + [SMALL_STATE(2570)] = 160072, + [SMALL_STATE(2571)] = 160119, + [SMALL_STATE(2572)] = 160166, + [SMALL_STATE(2573)] = 160213, + [SMALL_STATE(2574)] = 160273, + [SMALL_STATE(2575)] = 160333, + [SMALL_STATE(2576)] = 160393, + [SMALL_STATE(2577)] = 160453, + [SMALL_STATE(2578)] = 160513, + [SMALL_STATE(2579)] = 160549, + [SMALL_STATE(2580)] = 160609, + [SMALL_STATE(2581)] = 160669, + [SMALL_STATE(2582)] = 160729, + [SMALL_STATE(2583)] = 160789, + [SMALL_STATE(2584)] = 160849, + [SMALL_STATE(2585)] = 160909, + [SMALL_STATE(2586)] = 160969, + [SMALL_STATE(2587)] = 161029, + [SMALL_STATE(2588)] = 161089, + [SMALL_STATE(2589)] = 161149, + [SMALL_STATE(2590)] = 161209, + [SMALL_STATE(2591)] = 161269, + [SMALL_STATE(2592)] = 161305, + [SMALL_STATE(2593)] = 161365, + [SMALL_STATE(2594)] = 161425, + [SMALL_STATE(2595)] = 161485, + [SMALL_STATE(2596)] = 161521, + [SMALL_STATE(2597)] = 161557, + [SMALL_STATE(2598)] = 161617, + [SMALL_STATE(2599)] = 161648, + [SMALL_STATE(2600)] = 161705, + [SMALL_STATE(2601)] = 161762, + [SMALL_STATE(2602)] = 161819, + [SMALL_STATE(2603)] = 161850, + [SMALL_STATE(2604)] = 161881, + [SMALL_STATE(2605)] = 161912, + [SMALL_STATE(2606)] = 161943, + [SMALL_STATE(2607)] = 161974, + [SMALL_STATE(2608)] = 162005, + [SMALL_STATE(2609)] = 162038, + [SMALL_STATE(2610)] = 162071, + [SMALL_STATE(2611)] = 162102, + [SMALL_STATE(2612)] = 162133, + [SMALL_STATE(2613)] = 162164, + [SMALL_STATE(2614)] = 162195, + [SMALL_STATE(2615)] = 162226, + [SMALL_STATE(2616)] = 162257, + [SMALL_STATE(2617)] = 162288, + [SMALL_STATE(2618)] = 162345, + [SMALL_STATE(2619)] = 162376, + [SMALL_STATE(2620)] = 162407, + [SMALL_STATE(2621)] = 162438, + [SMALL_STATE(2622)] = 162469, + [SMALL_STATE(2623)] = 162500, + [SMALL_STATE(2624)] = 162531, + [SMALL_STATE(2625)] = 162562, + [SMALL_STATE(2626)] = 162593, + [SMALL_STATE(2627)] = 162624, + [SMALL_STATE(2628)] = 162655, + [SMALL_STATE(2629)] = 162686, + [SMALL_STATE(2630)] = 162717, + [SMALL_STATE(2631)] = 162748, + [SMALL_STATE(2632)] = 162779, + [SMALL_STATE(2633)] = 162810, + [SMALL_STATE(2634)] = 162841, + [SMALL_STATE(2635)] = 162872, + [SMALL_STATE(2636)] = 162903, + [SMALL_STATE(2637)] = 162934, + [SMALL_STATE(2638)] = 162965, + [SMALL_STATE(2639)] = 163022, + [SMALL_STATE(2640)] = 163053, + [SMALL_STATE(2641)] = 163084, + [SMALL_STATE(2642)] = 163141, + [SMALL_STATE(2643)] = 163172, + [SMALL_STATE(2644)] = 163203, + [SMALL_STATE(2645)] = 163234, + [SMALL_STATE(2646)] = 163265, + [SMALL_STATE(2647)] = 163322, + [SMALL_STATE(2648)] = 163353, + [SMALL_STATE(2649)] = 163384, + [SMALL_STATE(2650)] = 163441, + [SMALL_STATE(2651)] = 163498, + [SMALL_STATE(2652)] = 163555, + [SMALL_STATE(2653)] = 163612, + [SMALL_STATE(2654)] = 163669, + [SMALL_STATE(2655)] = 163700, + [SMALL_STATE(2656)] = 163757, + [SMALL_STATE(2657)] = 163814, + [SMALL_STATE(2658)] = 163871, + [SMALL_STATE(2659)] = 163928, + [SMALL_STATE(2660)] = 163985, + [SMALL_STATE(2661)] = 164042, + [SMALL_STATE(2662)] = 164099, + [SMALL_STATE(2663)] = 164156, + [SMALL_STATE(2664)] = 164187, + [SMALL_STATE(2665)] = 164217, + [SMALL_STATE(2666)] = 164247, + [SMALL_STATE(2667)] = 164277, + [SMALL_STATE(2668)] = 164307, + [SMALL_STATE(2669)] = 164337, + [SMALL_STATE(2670)] = 164371, + [SMALL_STATE(2671)] = 164401, + [SMALL_STATE(2672)] = 164431, + [SMALL_STATE(2673)] = 164465, + [SMALL_STATE(2674)] = 164495, + [SMALL_STATE(2675)] = 164525, + [SMALL_STATE(2676)] = 164555, + [SMALL_STATE(2677)] = 164585, + [SMALL_STATE(2678)] = 164615, + [SMALL_STATE(2679)] = 164645, + [SMALL_STATE(2680)] = 164675, + [SMALL_STATE(2681)] = 164705, + [SMALL_STATE(2682)] = 164735, + [SMALL_STATE(2683)] = 164764, + [SMALL_STATE(2684)] = 164793, + [SMALL_STATE(2685)] = 164822, + [SMALL_STATE(2686)] = 164851, + [SMALL_STATE(2687)] = 164880, + [SMALL_STATE(2688)] = 164909, + [SMALL_STATE(2689)] = 164938, + [SMALL_STATE(2690)] = 164967, + [SMALL_STATE(2691)] = 164996, + [SMALL_STATE(2692)] = 165025, + [SMALL_STATE(2693)] = 165054, + [SMALL_STATE(2694)] = 165083, + [SMALL_STATE(2695)] = 165112, + [SMALL_STATE(2696)] = 165141, + [SMALL_STATE(2697)] = 165170, + [SMALL_STATE(2698)] = 165199, + [SMALL_STATE(2699)] = 165228, + [SMALL_STATE(2700)] = 165257, + [SMALL_STATE(2701)] = 165288, + [SMALL_STATE(2702)] = 165317, + [SMALL_STATE(2703)] = 165346, + [SMALL_STATE(2704)] = 165375, + [SMALL_STATE(2705)] = 165404, + [SMALL_STATE(2706)] = 165436, + [SMALL_STATE(2707)] = 165468, + [SMALL_STATE(2708)] = 165500, + [SMALL_STATE(2709)] = 165532, + [SMALL_STATE(2710)] = 165564, + [SMALL_STATE(2711)] = 165596, + [SMALL_STATE(2712)] = 165628, + [SMALL_STATE(2713)] = 165660, + [SMALL_STATE(2714)] = 165692, + [SMALL_STATE(2715)] = 165723, + [SMALL_STATE(2716)] = 165754, + [SMALL_STATE(2717)] = 165800, + [SMALL_STATE(2718)] = 165846, + [SMALL_STATE(2719)] = 165872, + [SMALL_STATE(2720)] = 165918, + [SMALL_STATE(2721)] = 165964, + [SMALL_STATE(2722)] = 166010, + [SMALL_STATE(2723)] = 166056, + [SMALL_STATE(2724)] = 166102, + [SMALL_STATE(2725)] = 166148, + [SMALL_STATE(2726)] = 166194, + [SMALL_STATE(2727)] = 166240, + [SMALL_STATE(2728)] = 166286, + [SMALL_STATE(2729)] = 166332, + [SMALL_STATE(2730)] = 166378, + [SMALL_STATE(2731)] = 166424, + [SMALL_STATE(2732)] = 166470, + [SMALL_STATE(2733)] = 166516, + [SMALL_STATE(2734)] = 166562, + [SMALL_STATE(2735)] = 166608, + [SMALL_STATE(2736)] = 166654, + [SMALL_STATE(2737)] = 166700, + [SMALL_STATE(2738)] = 166746, + [SMALL_STATE(2739)] = 166792, + [SMALL_STATE(2740)] = 166838, + [SMALL_STATE(2741)] = 166884, + [SMALL_STATE(2742)] = 166930, + [SMALL_STATE(2743)] = 166976, + [SMALL_STATE(2744)] = 167022, + [SMALL_STATE(2745)] = 167068, + [SMALL_STATE(2746)] = 167114, + [SMALL_STATE(2747)] = 167160, + [SMALL_STATE(2748)] = 167206, + [SMALL_STATE(2749)] = 167252, + [SMALL_STATE(2750)] = 167298, + [SMALL_STATE(2751)] = 167344, + [SMALL_STATE(2752)] = 167390, + [SMALL_STATE(2753)] = 167436, + [SMALL_STATE(2754)] = 167482, + [SMALL_STATE(2755)] = 167528, + [SMALL_STATE(2756)] = 167574, + [SMALL_STATE(2757)] = 167620, + [SMALL_STATE(2758)] = 167666, + [SMALL_STATE(2759)] = 167712, + [SMALL_STATE(2760)] = 167758, + [SMALL_STATE(2761)] = 167804, + [SMALL_STATE(2762)] = 167850, + [SMALL_STATE(2763)] = 167896, + [SMALL_STATE(2764)] = 167942, + [SMALL_STATE(2765)] = 167988, + [SMALL_STATE(2766)] = 168034, + [SMALL_STATE(2767)] = 168080, + [SMALL_STATE(2768)] = 168106, + [SMALL_STATE(2769)] = 168134, + [SMALL_STATE(2770)] = 168180, + [SMALL_STATE(2771)] = 168206, + [SMALL_STATE(2772)] = 168232, + [SMALL_STATE(2773)] = 168258, + [SMALL_STATE(2774)] = 168304, + [SMALL_STATE(2775)] = 168350, + [SMALL_STATE(2776)] = 168396, + [SMALL_STATE(2777)] = 168442, + [SMALL_STATE(2778)] = 168488, + [SMALL_STATE(2779)] = 168534, + [SMALL_STATE(2780)] = 168580, + [SMALL_STATE(2781)] = 168626, + [SMALL_STATE(2782)] = 168672, + [SMALL_STATE(2783)] = 168718, + [SMALL_STATE(2784)] = 168764, + [SMALL_STATE(2785)] = 168810, + [SMALL_STATE(2786)] = 168836, + [SMALL_STATE(2787)] = 168882, + [SMALL_STATE(2788)] = 168928, + [SMALL_STATE(2789)] = 168974, + [SMALL_STATE(2790)] = 169020, + [SMALL_STATE(2791)] = 169066, + [SMALL_STATE(2792)] = 169112, + [SMALL_STATE(2793)] = 169158, + [SMALL_STATE(2794)] = 169204, + [SMALL_STATE(2795)] = 169250, + [SMALL_STATE(2796)] = 169276, + [SMALL_STATE(2797)] = 169322, + [SMALL_STATE(2798)] = 169368, + [SMALL_STATE(2799)] = 169414, + [SMALL_STATE(2800)] = 169460, + [SMALL_STATE(2801)] = 169506, + [SMALL_STATE(2802)] = 169552, + [SMALL_STATE(2803)] = 169598, + [SMALL_STATE(2804)] = 169644, + [SMALL_STATE(2805)] = 169690, + [SMALL_STATE(2806)] = 169736, + [SMALL_STATE(2807)] = 169782, + [SMALL_STATE(2808)] = 169808, + [SMALL_STATE(2809)] = 169854, + [SMALL_STATE(2810)] = 169900, + [SMALL_STATE(2811)] = 169946, + [SMALL_STATE(2812)] = 169972, + [SMALL_STATE(2813)] = 170018, + [SMALL_STATE(2814)] = 170044, + [SMALL_STATE(2815)] = 170090, + [SMALL_STATE(2816)] = 170136, + [SMALL_STATE(2817)] = 170162, + [SMALL_STATE(2818)] = 170208, + [SMALL_STATE(2819)] = 170254, + [SMALL_STATE(2820)] = 170300, + [SMALL_STATE(2821)] = 170346, + [SMALL_STATE(2822)] = 170392, + [SMALL_STATE(2823)] = 170438, + [SMALL_STATE(2824)] = 170464, + [SMALL_STATE(2825)] = 170510, + [SMALL_STATE(2826)] = 170556, + [SMALL_STATE(2827)] = 170582, + [SMALL_STATE(2828)] = 170628, + [SMALL_STATE(2829)] = 170674, + [SMALL_STATE(2830)] = 170720, + [SMALL_STATE(2831)] = 170746, + [SMALL_STATE(2832)] = 170792, + [SMALL_STATE(2833)] = 170838, + [SMALL_STATE(2834)] = 170884, + [SMALL_STATE(2835)] = 170930, + [SMALL_STATE(2836)] = 170976, + [SMALL_STATE(2837)] = 171022, + [SMALL_STATE(2838)] = 171068, + [SMALL_STATE(2839)] = 171114, + [SMALL_STATE(2840)] = 171160, + [SMALL_STATE(2841)] = 171206, + [SMALL_STATE(2842)] = 171252, + [SMALL_STATE(2843)] = 171298, + [SMALL_STATE(2844)] = 171344, + [SMALL_STATE(2845)] = 171390, + [SMALL_STATE(2846)] = 171436, + [SMALL_STATE(2847)] = 171482, + [SMALL_STATE(2848)] = 171528, + [SMALL_STATE(2849)] = 171554, + [SMALL_STATE(2850)] = 171600, + [SMALL_STATE(2851)] = 171646, + [SMALL_STATE(2852)] = 171692, + [SMALL_STATE(2853)] = 171718, + [SMALL_STATE(2854)] = 171764, + [SMALL_STATE(2855)] = 171810, + [SMALL_STATE(2856)] = 171836, + [SMALL_STATE(2857)] = 171882, + [SMALL_STATE(2858)] = 171928, + [SMALL_STATE(2859)] = 171954, + [SMALL_STATE(2860)] = 172000, + [SMALL_STATE(2861)] = 172046, + [SMALL_STATE(2862)] = 172092, + [SMALL_STATE(2863)] = 172118, + [SMALL_STATE(2864)] = 172144, + [SMALL_STATE(2865)] = 172170, + [SMALL_STATE(2866)] = 172216, + [SMALL_STATE(2867)] = 172262, + [SMALL_STATE(2868)] = 172308, + [SMALL_STATE(2869)] = 172354, + [SMALL_STATE(2870)] = 172400, + [SMALL_STATE(2871)] = 172446, + [SMALL_STATE(2872)] = 172492, + [SMALL_STATE(2873)] = 172538, + [SMALL_STATE(2874)] = 172584, + [SMALL_STATE(2875)] = 172630, + [SMALL_STATE(2876)] = 172676, + [SMALL_STATE(2877)] = 172722, + [SMALL_STATE(2878)] = 172768, + [SMALL_STATE(2879)] = 172814, + [SMALL_STATE(2880)] = 172860, + [SMALL_STATE(2881)] = 172886, + [SMALL_STATE(2882)] = 172932, + [SMALL_STATE(2883)] = 172978, + [SMALL_STATE(2884)] = 173024, + [SMALL_STATE(2885)] = 173049, + [SMALL_STATE(2886)] = 173074, + [SMALL_STATE(2887)] = 173099, + [SMALL_STATE(2888)] = 173124, + [SMALL_STATE(2889)] = 173149, + [SMALL_STATE(2890)] = 173174, + [SMALL_STATE(2891)] = 173199, + [SMALL_STATE(2892)] = 173224, + [SMALL_STATE(2893)] = 173249, + [SMALL_STATE(2894)] = 173274, + [SMALL_STATE(2895)] = 173299, + [SMALL_STATE(2896)] = 173324, + [SMALL_STATE(2897)] = 173349, + [SMALL_STATE(2898)] = 173374, + [SMALL_STATE(2899)] = 173399, + [SMALL_STATE(2900)] = 173424, + [SMALL_STATE(2901)] = 173449, + [SMALL_STATE(2902)] = 173474, + [SMALL_STATE(2903)] = 173499, + [SMALL_STATE(2904)] = 173524, + [SMALL_STATE(2905)] = 173549, + [SMALL_STATE(2906)] = 173574, + [SMALL_STATE(2907)] = 173599, + [SMALL_STATE(2908)] = 173624, + [SMALL_STATE(2909)] = 173649, + [SMALL_STATE(2910)] = 173673, + [SMALL_STATE(2911)] = 173697, + [SMALL_STATE(2912)] = 173721, + [SMALL_STATE(2913)] = 173745, + [SMALL_STATE(2914)] = 173769, + [SMALL_STATE(2915)] = 173793, + [SMALL_STATE(2916)] = 173817, + [SMALL_STATE(2917)] = 173841, + [SMALL_STATE(2918)] = 173865, + [SMALL_STATE(2919)] = 173889, + [SMALL_STATE(2920)] = 173913, + [SMALL_STATE(2921)] = 173937, + [SMALL_STATE(2922)] = 173961, + [SMALL_STATE(2923)] = 173985, + [SMALL_STATE(2924)] = 174009, + [SMALL_STATE(2925)] = 174033, + [SMALL_STATE(2926)] = 174057, + [SMALL_STATE(2927)] = 174081, + [SMALL_STATE(2928)] = 174105, + [SMALL_STATE(2929)] = 174129, + [SMALL_STATE(2930)] = 174153, + [SMALL_STATE(2931)] = 174177, + [SMALL_STATE(2932)] = 174201, + [SMALL_STATE(2933)] = 174225, + [SMALL_STATE(2934)] = 174249, + [SMALL_STATE(2935)] = 174273, + [SMALL_STATE(2936)] = 174297, + [SMALL_STATE(2937)] = 174324, + [SMALL_STATE(2938)] = 174351, + [SMALL_STATE(2939)] = 174378, + [SMALL_STATE(2940)] = 174405, + [SMALL_STATE(2941)] = 174427, + [SMALL_STATE(2942)] = 174453, + [SMALL_STATE(2943)] = 174475, + [SMALL_STATE(2944)] = 174497, + [SMALL_STATE(2945)] = 174519, + [SMALL_STATE(2946)] = 174541, + [SMALL_STATE(2947)] = 174563, + [SMALL_STATE(2948)] = 174585, + [SMALL_STATE(2949)] = 174623, + [SMALL_STATE(2950)] = 174645, + [SMALL_STATE(2951)] = 174667, + [SMALL_STATE(2952)] = 174689, + [SMALL_STATE(2953)] = 174711, + [SMALL_STATE(2954)] = 174733, + [SMALL_STATE(2955)] = 174755, + [SMALL_STATE(2956)] = 174777, + [SMALL_STATE(2957)] = 174799, + [SMALL_STATE(2958)] = 174821, + [SMALL_STATE(2959)] = 174843, + [SMALL_STATE(2960)] = 174865, + [SMALL_STATE(2961)] = 174891, + [SMALL_STATE(2962)] = 174913, + [SMALL_STATE(2963)] = 174935, + [SMALL_STATE(2964)] = 174973, + [SMALL_STATE(2965)] = 174995, + [SMALL_STATE(2966)] = 175017, + [SMALL_STATE(2967)] = 175041, + [SMALL_STATE(2968)] = 175067, + [SMALL_STATE(2969)] = 175089, + [SMALL_STATE(2970)] = 175111, + [SMALL_STATE(2971)] = 175137, + [SMALL_STATE(2972)] = 175159, + [SMALL_STATE(2973)] = 175181, + [SMALL_STATE(2974)] = 175203, + [SMALL_STATE(2975)] = 175241, + [SMALL_STATE(2976)] = 175263, + [SMALL_STATE(2977)] = 175285, + [SMALL_STATE(2978)] = 175307, + [SMALL_STATE(2979)] = 175329, + [SMALL_STATE(2980)] = 175355, + [SMALL_STATE(2981)] = 175377, + [SMALL_STATE(2982)] = 175399, + [SMALL_STATE(2983)] = 175421, + [SMALL_STATE(2984)] = 175443, + [SMALL_STATE(2985)] = 175465, + [SMALL_STATE(2986)] = 175487, + [SMALL_STATE(2987)] = 175509, + [SMALL_STATE(2988)] = 175531, + [SMALL_STATE(2989)] = 175553, + [SMALL_STATE(2990)] = 175579, + [SMALL_STATE(2991)] = 175614, + [SMALL_STATE(2992)] = 175649, + [SMALL_STATE(2993)] = 175684, + [SMALL_STATE(2994)] = 175705, + [SMALL_STATE(2995)] = 175742, + [SMALL_STATE(2996)] = 175763, + [SMALL_STATE(2997)] = 175800, + [SMALL_STATE(2998)] = 175835, + [SMALL_STATE(2999)] = 175856, + [SMALL_STATE(3000)] = 175893, + [SMALL_STATE(3001)] = 175928, + [SMALL_STATE(3002)] = 175963, + [SMALL_STATE(3003)] = 175984, + [SMALL_STATE(3004)] = 176004, + [SMALL_STATE(3005)] = 176024, + [SMALL_STATE(3006)] = 176044, + [SMALL_STATE(3007)] = 176068, + [SMALL_STATE(3008)] = 176088, + [SMALL_STATE(3009)] = 176112, + [SMALL_STATE(3010)] = 176136, + [SMALL_STATE(3011)] = 176160, + [SMALL_STATE(3012)] = 176180, + [SMALL_STATE(3013)] = 176206, + [SMALL_STATE(3014)] = 176232, + [SMALL_STATE(3015)] = 176252, + [SMALL_STATE(3016)] = 176272, + [SMALL_STATE(3017)] = 176296, + [SMALL_STATE(3018)] = 176320, + [SMALL_STATE(3019)] = 176340, + [SMALL_STATE(3020)] = 176360, + [SMALL_STATE(3021)] = 176384, + [SMALL_STATE(3022)] = 176404, + [SMALL_STATE(3023)] = 176424, + [SMALL_STATE(3024)] = 176444, + [SMALL_STATE(3025)] = 176470, + [SMALL_STATE(3026)] = 176490, + [SMALL_STATE(3027)] = 176514, + [SMALL_STATE(3028)] = 176534, + [SMALL_STATE(3029)] = 176554, + [SMALL_STATE(3030)] = 176578, + [SMALL_STATE(3031)] = 176598, + [SMALL_STATE(3032)] = 176618, + [SMALL_STATE(3033)] = 176638, + [SMALL_STATE(3034)] = 176658, + [SMALL_STATE(3035)] = 176678, + [SMALL_STATE(3036)] = 176698, + [SMALL_STATE(3037)] = 176722, + [SMALL_STATE(3038)] = 176746, + [SMALL_STATE(3039)] = 176770, + [SMALL_STATE(3040)] = 176794, + [SMALL_STATE(3041)] = 176818, + [SMALL_STATE(3042)] = 176838, + [SMALL_STATE(3043)] = 176858, + [SMALL_STATE(3044)] = 176878, + [SMALL_STATE(3045)] = 176898, + [SMALL_STATE(3046)] = 176918, + [SMALL_STATE(3047)] = 176942, + [SMALL_STATE(3048)] = 176968, + [SMALL_STATE(3049)] = 176994, + [SMALL_STATE(3050)] = 177014, + [SMALL_STATE(3051)] = 177038, + [SMALL_STATE(3052)] = 177064, + [SMALL_STATE(3053)] = 177083, + [SMALL_STATE(3054)] = 177108, + [SMALL_STATE(3055)] = 177127, + [SMALL_STATE(3056)] = 177146, + [SMALL_STATE(3057)] = 177165, + [SMALL_STATE(3058)] = 177184, + [SMALL_STATE(3059)] = 177203, + [SMALL_STATE(3060)] = 177226, + [SMALL_STATE(3061)] = 177245, + [SMALL_STATE(3062)] = 177264, + [SMALL_STATE(3063)] = 177283, + [SMALL_STATE(3064)] = 177302, + [SMALL_STATE(3065)] = 177335, + [SMALL_STATE(3066)] = 177360, + [SMALL_STATE(3067)] = 177379, + [SMALL_STATE(3068)] = 177398, + [SMALL_STATE(3069)] = 177431, + [SMALL_STATE(3070)] = 177464, + [SMALL_STATE(3071)] = 177483, + [SMALL_STATE(3072)] = 177502, + [SMALL_STATE(3073)] = 177521, + [SMALL_STATE(3074)] = 177540, + [SMALL_STATE(3075)] = 177559, + [SMALL_STATE(3076)] = 177592, + [SMALL_STATE(3077)] = 177611, + [SMALL_STATE(3078)] = 177636, + [SMALL_STATE(3079)] = 177661, + [SMALL_STATE(3080)] = 177680, + [SMALL_STATE(3081)] = 177699, + [SMALL_STATE(3082)] = 177718, + [SMALL_STATE(3083)] = 177737, + [SMALL_STATE(3084)] = 177762, + [SMALL_STATE(3085)] = 177781, + [SMALL_STATE(3086)] = 177800, + [SMALL_STATE(3087)] = 177819, + [SMALL_STATE(3088)] = 177838, + [SMALL_STATE(3089)] = 177871, + [SMALL_STATE(3090)] = 177896, + [SMALL_STATE(3091)] = 177921, + [SMALL_STATE(3092)] = 177940, + [SMALL_STATE(3093)] = 177959, + [SMALL_STATE(3094)] = 177978, + [SMALL_STATE(3095)] = 178003, + [SMALL_STATE(3096)] = 178022, + [SMALL_STATE(3097)] = 178055, + [SMALL_STATE(3098)] = 178088, + [SMALL_STATE(3099)] = 178111, + [SMALL_STATE(3100)] = 178136, + [SMALL_STATE(3101)] = 178169, + [SMALL_STATE(3102)] = 178192, + [SMALL_STATE(3103)] = 178215, + [SMALL_STATE(3104)] = 178238, + [SMALL_STATE(3105)] = 178263, + [SMALL_STATE(3106)] = 178286, + [SMALL_STATE(3107)] = 178305, + [SMALL_STATE(3108)] = 178328, + [SMALL_STATE(3109)] = 178351, + [SMALL_STATE(3110)] = 178370, + [SMALL_STATE(3111)] = 178389, + [SMALL_STATE(3112)] = 178414, + [SMALL_STATE(3113)] = 178439, + [SMALL_STATE(3114)] = 178464, + [SMALL_STATE(3115)] = 178487, + [SMALL_STATE(3116)] = 178512, + [SMALL_STATE(3117)] = 178531, + [SMALL_STATE(3118)] = 178556, + [SMALL_STATE(3119)] = 178581, + [SMALL_STATE(3120)] = 178604, + [SMALL_STATE(3121)] = 178625, + [SMALL_STATE(3122)] = 178650, + [SMALL_STATE(3123)] = 178669, + [SMALL_STATE(3124)] = 178692, + [SMALL_STATE(3125)] = 178715, + [SMALL_STATE(3126)] = 178748, + [SMALL_STATE(3127)] = 178767, + [SMALL_STATE(3128)] = 178790, + [SMALL_STATE(3129)] = 178813, + [SMALL_STATE(3130)] = 178834, + [SMALL_STATE(3131)] = 178853, + [SMALL_STATE(3132)] = 178872, + [SMALL_STATE(3133)] = 178895, + [SMALL_STATE(3134)] = 178928, + [SMALL_STATE(3135)] = 178947, + [SMALL_STATE(3136)] = 178966, + [SMALL_STATE(3137)] = 178989, + [SMALL_STATE(3138)] = 179012, + [SMALL_STATE(3139)] = 179031, + [SMALL_STATE(3140)] = 179054, + [SMALL_STATE(3141)] = 179073, + [SMALL_STATE(3142)] = 179096, + [SMALL_STATE(3143)] = 179129, + [SMALL_STATE(3144)] = 179152, + [SMALL_STATE(3145)] = 179175, + [SMALL_STATE(3146)] = 179198, + [SMALL_STATE(3147)] = 179217, + [SMALL_STATE(3148)] = 179236, + [SMALL_STATE(3149)] = 179259, + [SMALL_STATE(3150)] = 179292, + [SMALL_STATE(3151)] = 179315, + [SMALL_STATE(3152)] = 179334, + [SMALL_STATE(3153)] = 179357, + [SMALL_STATE(3154)] = 179380, + [SMALL_STATE(3155)] = 179403, + [SMALL_STATE(3156)] = 179426, + [SMALL_STATE(3157)] = 179445, + [SMALL_STATE(3158)] = 179468, + [SMALL_STATE(3159)] = 179487, + [SMALL_STATE(3160)] = 179506, + [SMALL_STATE(3161)] = 179525, + [SMALL_STATE(3162)] = 179544, + [SMALL_STATE(3163)] = 179563, + [SMALL_STATE(3164)] = 179582, + [SMALL_STATE(3165)] = 179615, + [SMALL_STATE(3166)] = 179634, + [SMALL_STATE(3167)] = 179653, + [SMALL_STATE(3168)] = 179678, + [SMALL_STATE(3169)] = 179711, + [SMALL_STATE(3170)] = 179730, + [SMALL_STATE(3171)] = 179749, + [SMALL_STATE(3172)] = 179768, + [SMALL_STATE(3173)] = 179801, + [SMALL_STATE(3174)] = 179819, + [SMALL_STATE(3175)] = 179837, + [SMALL_STATE(3176)] = 179855, + [SMALL_STATE(3177)] = 179873, + [SMALL_STATE(3178)] = 179903, + [SMALL_STATE(3179)] = 179921, + [SMALL_STATE(3180)] = 179939, + [SMALL_STATE(3181)] = 179957, + [SMALL_STATE(3182)] = 179975, + [SMALL_STATE(3183)] = 179992, + [SMALL_STATE(3184)] = 180015, + [SMALL_STATE(3185)] = 180038, + [SMALL_STATE(3186)] = 180059, + [SMALL_STATE(3187)] = 180076, + [SMALL_STATE(3188)] = 180093, + [SMALL_STATE(3189)] = 180120, + [SMALL_STATE(3190)] = 180143, + [SMALL_STATE(3191)] = 180170, + [SMALL_STATE(3192)] = 180187, + [SMALL_STATE(3193)] = 180204, + [SMALL_STATE(3194)] = 180227, + [SMALL_STATE(3195)] = 180244, + [SMALL_STATE(3196)] = 180271, + [SMALL_STATE(3197)] = 180294, + [SMALL_STATE(3198)] = 180311, + [SMALL_STATE(3199)] = 180334, + [SMALL_STATE(3200)] = 180351, + [SMALL_STATE(3201)] = 180374, + [SMALL_STATE(3202)] = 180401, + [SMALL_STATE(3203)] = 180428, + [SMALL_STATE(3204)] = 180455, + [SMALL_STATE(3205)] = 180472, + [SMALL_STATE(3206)] = 180499, + [SMALL_STATE(3207)] = 180526, + [SMALL_STATE(3208)] = 180549, + [SMALL_STATE(3209)] = 180572, + [SMALL_STATE(3210)] = 180599, + [SMALL_STATE(3211)] = 180622, + [SMALL_STATE(3212)] = 180649, + [SMALL_STATE(3213)] = 180670, + [SMALL_STATE(3214)] = 180697, + [SMALL_STATE(3215)] = 180724, + [SMALL_STATE(3216)] = 180741, + [SMALL_STATE(3217)] = 180768, + [SMALL_STATE(3218)] = 180785, + [SMALL_STATE(3219)] = 180812, + [SMALL_STATE(3220)] = 180833, + [SMALL_STATE(3221)] = 180860, + [SMALL_STATE(3222)] = 180877, + [SMALL_STATE(3223)] = 180904, + [SMALL_STATE(3224)] = 180931, + [SMALL_STATE(3225)] = 180958, + [SMALL_STATE(3226)] = 180985, + [SMALL_STATE(3227)] = 181008, + [SMALL_STATE(3228)] = 181025, + [SMALL_STATE(3229)] = 181048, + [SMALL_STATE(3230)] = 181065, + [SMALL_STATE(3231)] = 181082, + [SMALL_STATE(3232)] = 181099, + [SMALL_STATE(3233)] = 181116, + [SMALL_STATE(3234)] = 181143, + [SMALL_STATE(3235)] = 181170, + [SMALL_STATE(3236)] = 181197, + [SMALL_STATE(3237)] = 181220, + [SMALL_STATE(3238)] = 181237, + [SMALL_STATE(3239)] = 181254, + [SMALL_STATE(3240)] = 181271, + [SMALL_STATE(3241)] = 181288, + [SMALL_STATE(3242)] = 181309, + [SMALL_STATE(3243)] = 181336, + [SMALL_STATE(3244)] = 181353, + [SMALL_STATE(3245)] = 181380, + [SMALL_STATE(3246)] = 181407, + [SMALL_STATE(3247)] = 181424, + [SMALL_STATE(3248)] = 181451, + [SMALL_STATE(3249)] = 181474, + [SMALL_STATE(3250)] = 181497, + [SMALL_STATE(3251)] = 181514, + [SMALL_STATE(3252)] = 181531, + [SMALL_STATE(3253)] = 181554, + [SMALL_STATE(3254)] = 181575, + [SMALL_STATE(3255)] = 181592, + [SMALL_STATE(3256)] = 181609, + [SMALL_STATE(3257)] = 181630, + [SMALL_STATE(3258)] = 181647, + [SMALL_STATE(3259)] = 181664, + [SMALL_STATE(3260)] = 181681, + [SMALL_STATE(3261)] = 181698, + [SMALL_STATE(3262)] = 181715, + [SMALL_STATE(3263)] = 181742, + [SMALL_STATE(3264)] = 181759, + [SMALL_STATE(3265)] = 181780, + [SMALL_STATE(3266)] = 181807, + [SMALL_STATE(3267)] = 181824, + [SMALL_STATE(3268)] = 181845, + [SMALL_STATE(3269)] = 181862, + [SMALL_STATE(3270)] = 181879, + [SMALL_STATE(3271)] = 181902, + [SMALL_STATE(3272)] = 181919, + [SMALL_STATE(3273)] = 181942, + [SMALL_STATE(3274)] = 181959, + [SMALL_STATE(3275)] = 181976, + [SMALL_STATE(3276)] = 181993, + [SMALL_STATE(3277)] = 182014, + [SMALL_STATE(3278)] = 182031, + [SMALL_STATE(3279)] = 182048, + [SMALL_STATE(3280)] = 182065, + [SMALL_STATE(3281)] = 182082, + [SMALL_STATE(3282)] = 182103, + [SMALL_STATE(3283)] = 182130, + [SMALL_STATE(3284)] = 182147, + [SMALL_STATE(3285)] = 182170, + [SMALL_STATE(3286)] = 182193, + [SMALL_STATE(3287)] = 182216, + [SMALL_STATE(3288)] = 182233, + [SMALL_STATE(3289)] = 182256, + [SMALL_STATE(3290)] = 182273, + [SMALL_STATE(3291)] = 182296, + [SMALL_STATE(3292)] = 182319, + [SMALL_STATE(3293)] = 182342, + [SMALL_STATE(3294)] = 182365, + [SMALL_STATE(3295)] = 182392, + [SMALL_STATE(3296)] = 182419, + [SMALL_STATE(3297)] = 182436, + [SMALL_STATE(3298)] = 182459, + [SMALL_STATE(3299)] = 182476, + [SMALL_STATE(3300)] = 182499, + [SMALL_STATE(3301)] = 182516, + [SMALL_STATE(3302)] = 182539, + [SMALL_STATE(3303)] = 182556, + [SMALL_STATE(3304)] = 182583, + [SMALL_STATE(3305)] = 182600, + [SMALL_STATE(3306)] = 182623, + [SMALL_STATE(3307)] = 182650, + [SMALL_STATE(3308)] = 182677, + [SMALL_STATE(3309)] = 182704, + [SMALL_STATE(3310)] = 182731, + [SMALL_STATE(3311)] = 182758, + [SMALL_STATE(3312)] = 182775, + [SMALL_STATE(3313)] = 182802, + [SMALL_STATE(3314)] = 182829, + [SMALL_STATE(3315)] = 182856, + [SMALL_STATE(3316)] = 182873, + [SMALL_STATE(3317)] = 182895, + [SMALL_STATE(3318)] = 182917, + [SMALL_STATE(3319)] = 182939, + [SMALL_STATE(3320)] = 182961, + [SMALL_STATE(3321)] = 182977, + [SMALL_STATE(3322)] = 182999, + [SMALL_STATE(3323)] = 183021, + [SMALL_STATE(3324)] = 183043, + [SMALL_STATE(3325)] = 183065, + [SMALL_STATE(3326)] = 183081, + [SMALL_STATE(3327)] = 183103, + [SMALL_STATE(3328)] = 183125, + [SMALL_STATE(3329)] = 183147, + [SMALL_STATE(3330)] = 183169, + [SMALL_STATE(3331)] = 183185, + [SMALL_STATE(3332)] = 183200, + [SMALL_STATE(3333)] = 183211, + [SMALL_STATE(3334)] = 183222, + [SMALL_STATE(3335)] = 183233, + [SMALL_STATE(3336)] = 183244, + [SMALL_STATE(3337)] = 183259, + [SMALL_STATE(3338)] = 183270, + [SMALL_STATE(3339)] = 183281, + [SMALL_STATE(3340)] = 183292, + [SMALL_STATE(3341)] = 183303, + [SMALL_STATE(3342)] = 183314, + [SMALL_STATE(3343)] = 183325, + [SMALL_STATE(3344)] = 183336, + [SMALL_STATE(3345)] = 183351, + [SMALL_STATE(3346)] = 183362, + [SMALL_STATE(3347)] = 183373, + [SMALL_STATE(3348)] = 183384, + [SMALL_STATE(3349)] = 183395, + [SMALL_STATE(3350)] = 183406, + [SMALL_STATE(3351)] = 183417, + [SMALL_STATE(3352)] = 183430, + [SMALL_STATE(3353)] = 183441, + [SMALL_STATE(3354)] = 183452, + [SMALL_STATE(3355)] = 183463, + [SMALL_STATE(3356)] = 183474, + [SMALL_STATE(3357)] = 183485, + [SMALL_STATE(3358)] = 183500, + [SMALL_STATE(3359)] = 183517, + [SMALL_STATE(3360)] = 183531, + [SMALL_STATE(3361)] = 183545, + [SMALL_STATE(3362)] = 183559, + [SMALL_STATE(3363)] = 183573, + [SMALL_STATE(3364)] = 183587, + [SMALL_STATE(3365)] = 183601, + [SMALL_STATE(3366)] = 183615, + [SMALL_STATE(3367)] = 183629, + [SMALL_STATE(3368)] = 183643, + [SMALL_STATE(3369)] = 183657, + [SMALL_STATE(3370)] = 183670, + [SMALL_STATE(3371)] = 183683, + [SMALL_STATE(3372)] = 183696, + [SMALL_STATE(3373)] = 183709, + [SMALL_STATE(3374)] = 183722, + [SMALL_STATE(3375)] = 183735, + [SMALL_STATE(3376)] = 183748, + [SMALL_STATE(3377)] = 183761, + [SMALL_STATE(3378)] = 183774, + [SMALL_STATE(3379)] = 183787, + [SMALL_STATE(3380)] = 183796, + [SMALL_STATE(3381)] = 183809, + [SMALL_STATE(3382)] = 183822, + [SMALL_STATE(3383)] = 183831, + [SMALL_STATE(3384)] = 183844, + [SMALL_STATE(3385)] = 183857, + [SMALL_STATE(3386)] = 183870, + [SMALL_STATE(3387)] = 183883, + [SMALL_STATE(3388)] = 183894, + [SMALL_STATE(3389)] = 183907, + [SMALL_STATE(3390)] = 183920, + [SMALL_STATE(3391)] = 183933, + [SMALL_STATE(3392)] = 183946, + [SMALL_STATE(3393)] = 183959, + [SMALL_STATE(3394)] = 183972, + [SMALL_STATE(3395)] = 183985, + [SMALL_STATE(3396)] = 183998, + [SMALL_STATE(3397)] = 184011, + [SMALL_STATE(3398)] = 184024, + [SMALL_STATE(3399)] = 184037, + [SMALL_STATE(3400)] = 184048, + [SMALL_STATE(3401)] = 184061, + [SMALL_STATE(3402)] = 184074, + [SMALL_STATE(3403)] = 184087, + [SMALL_STATE(3404)] = 184100, + [SMALL_STATE(3405)] = 184113, + [SMALL_STATE(3406)] = 184124, + [SMALL_STATE(3407)] = 184137, + [SMALL_STATE(3408)] = 184150, + [SMALL_STATE(3409)] = 184163, + [SMALL_STATE(3410)] = 184176, + [SMALL_STATE(3411)] = 184189, + [SMALL_STATE(3412)] = 184202, + [SMALL_STATE(3413)] = 184215, + [SMALL_STATE(3414)] = 184228, + [SMALL_STATE(3415)] = 184241, + [SMALL_STATE(3416)] = 184254, + [SMALL_STATE(3417)] = 184267, + [SMALL_STATE(3418)] = 184278, + [SMALL_STATE(3419)] = 184291, + [SMALL_STATE(3420)] = 184304, + [SMALL_STATE(3421)] = 184317, + [SMALL_STATE(3422)] = 184330, + [SMALL_STATE(3423)] = 184343, + [SMALL_STATE(3424)] = 184356, + [SMALL_STATE(3425)] = 184369, + [SMALL_STATE(3426)] = 184382, + [SMALL_STATE(3427)] = 184395, + [SMALL_STATE(3428)] = 184408, + [SMALL_STATE(3429)] = 184421, + [SMALL_STATE(3430)] = 184434, + [SMALL_STATE(3431)] = 184447, + [SMALL_STATE(3432)] = 184460, + [SMALL_STATE(3433)] = 184473, + [SMALL_STATE(3434)] = 184484, + [SMALL_STATE(3435)] = 184497, + [SMALL_STATE(3436)] = 184510, + [SMALL_STATE(3437)] = 184521, + [SMALL_STATE(3438)] = 184534, + [SMALL_STATE(3439)] = 184547, + [SMALL_STATE(3440)] = 184558, + [SMALL_STATE(3441)] = 184569, + [SMALL_STATE(3442)] = 184582, + [SMALL_STATE(3443)] = 184595, + [SMALL_STATE(3444)] = 184608, + [SMALL_STATE(3445)] = 184619, + [SMALL_STATE(3446)] = 184632, + [SMALL_STATE(3447)] = 184645, + [SMALL_STATE(3448)] = 184658, + [SMALL_STATE(3449)] = 184669, + [SMALL_STATE(3450)] = 184682, + [SMALL_STATE(3451)] = 184695, + [SMALL_STATE(3452)] = 184708, + [SMALL_STATE(3453)] = 184721, + [SMALL_STATE(3454)] = 184734, + [SMALL_STATE(3455)] = 184747, + [SMALL_STATE(3456)] = 184760, + [SMALL_STATE(3457)] = 184771, + [SMALL_STATE(3458)] = 184784, + [SMALL_STATE(3459)] = 184797, + [SMALL_STATE(3460)] = 184810, + [SMALL_STATE(3461)] = 184821, + [SMALL_STATE(3462)] = 184834, + [SMALL_STATE(3463)] = 184847, + [SMALL_STATE(3464)] = 184860, + [SMALL_STATE(3465)] = 184873, + [SMALL_STATE(3466)] = 184886, + [SMALL_STATE(3467)] = 184899, + [SMALL_STATE(3468)] = 184912, + [SMALL_STATE(3469)] = 184925, + [SMALL_STATE(3470)] = 184936, + [SMALL_STATE(3471)] = 184949, + [SMALL_STATE(3472)] = 184962, + [SMALL_STATE(3473)] = 184975, + [SMALL_STATE(3474)] = 184986, + [SMALL_STATE(3475)] = 184999, + [SMALL_STATE(3476)] = 185012, + [SMALL_STATE(3477)] = 185025, + [SMALL_STATE(3478)] = 185038, + [SMALL_STATE(3479)] = 185049, + [SMALL_STATE(3480)] = 185062, + [SMALL_STATE(3481)] = 185075, + [SMALL_STATE(3482)] = 185088, + [SMALL_STATE(3483)] = 185101, + [SMALL_STATE(3484)] = 185112, + [SMALL_STATE(3485)] = 185125, + [SMALL_STATE(3486)] = 185138, + [SMALL_STATE(3487)] = 185151, + [SMALL_STATE(3488)] = 185164, + [SMALL_STATE(3489)] = 185177, + [SMALL_STATE(3490)] = 185190, + [SMALL_STATE(3491)] = 185203, + [SMALL_STATE(3492)] = 185214, + [SMALL_STATE(3493)] = 185227, + [SMALL_STATE(3494)] = 185240, + [SMALL_STATE(3495)] = 185251, + [SMALL_STATE(3496)] = 185264, + [SMALL_STATE(3497)] = 185277, + [SMALL_STATE(3498)] = 185290, + [SMALL_STATE(3499)] = 185301, + [SMALL_STATE(3500)] = 185314, + [SMALL_STATE(3501)] = 185327, + [SMALL_STATE(3502)] = 185340, + [SMALL_STATE(3503)] = 185353, + [SMALL_STATE(3504)] = 185364, + [SMALL_STATE(3505)] = 185377, + [SMALL_STATE(3506)] = 185388, + [SMALL_STATE(3507)] = 185398, + [SMALL_STATE(3508)] = 185406, + [SMALL_STATE(3509)] = 185414, + [SMALL_STATE(3510)] = 185424, + [SMALL_STATE(3511)] = 185434, + [SMALL_STATE(3512)] = 185444, + [SMALL_STATE(3513)] = 185454, + [SMALL_STATE(3514)] = 185462, + [SMALL_STATE(3515)] = 185472, + [SMALL_STATE(3516)] = 185482, + [SMALL_STATE(3517)] = 185492, + [SMALL_STATE(3518)] = 185500, + [SMALL_STATE(3519)] = 185510, + [SMALL_STATE(3520)] = 185520, + [SMALL_STATE(3521)] = 185530, + [SMALL_STATE(3522)] = 185538, + [SMALL_STATE(3523)] = 185548, + [SMALL_STATE(3524)] = 185558, + [SMALL_STATE(3525)] = 185566, + [SMALL_STATE(3526)] = 185576, + [SMALL_STATE(3527)] = 185586, + [SMALL_STATE(3528)] = 185596, + [SMALL_STATE(3529)] = 185606, + [SMALL_STATE(3530)] = 185616, + [SMALL_STATE(3531)] = 185624, + [SMALL_STATE(3532)] = 185632, + [SMALL_STATE(3533)] = 185640, + [SMALL_STATE(3534)] = 185650, + [SMALL_STATE(3535)] = 185660, + [SMALL_STATE(3536)] = 185670, + [SMALL_STATE(3537)] = 185678, + [SMALL_STATE(3538)] = 185688, + [SMALL_STATE(3539)] = 185696, + [SMALL_STATE(3540)] = 185706, [SMALL_STATE(3541)] = 185716, - [SMALL_STATE(3542)] = 185729, - [SMALL_STATE(3543)] = 185742, - [SMALL_STATE(3544)] = 185755, - [SMALL_STATE(3545)] = 185766, - [SMALL_STATE(3546)] = 185779, - [SMALL_STATE(3547)] = 185790, - [SMALL_STATE(3548)] = 185803, - [SMALL_STATE(3549)] = 185816, - [SMALL_STATE(3550)] = 185827, - [SMALL_STATE(3551)] = 185840, - [SMALL_STATE(3552)] = 185853, - [SMALL_STATE(3553)] = 185866, - [SMALL_STATE(3554)] = 185879, - [SMALL_STATE(3555)] = 185892, - [SMALL_STATE(3556)] = 185902, - [SMALL_STATE(3557)] = 185912, - [SMALL_STATE(3558)] = 185922, - [SMALL_STATE(3559)] = 185932, - [SMALL_STATE(3560)] = 185942, - [SMALL_STATE(3561)] = 185952, - [SMALL_STATE(3562)] = 185962, - [SMALL_STATE(3563)] = 185970, - [SMALL_STATE(3564)] = 185978, - [SMALL_STATE(3565)] = 185988, - [SMALL_STATE(3566)] = 185998, - [SMALL_STATE(3567)] = 186008, - [SMALL_STATE(3568)] = 186016, - [SMALL_STATE(3569)] = 186026, - [SMALL_STATE(3570)] = 186036, - [SMALL_STATE(3571)] = 186046, - [SMALL_STATE(3572)] = 186054, - [SMALL_STATE(3573)] = 186064, - [SMALL_STATE(3574)] = 186074, - [SMALL_STATE(3575)] = 186084, - [SMALL_STATE(3576)] = 186094, - [SMALL_STATE(3577)] = 186104, - [SMALL_STATE(3578)] = 186114, - [SMALL_STATE(3579)] = 186124, - [SMALL_STATE(3580)] = 186134, - [SMALL_STATE(3581)] = 186144, - [SMALL_STATE(3582)] = 186154, - [SMALL_STATE(3583)] = 186164, - [SMALL_STATE(3584)] = 186172, - [SMALL_STATE(3585)] = 186180, - [SMALL_STATE(3586)] = 186190, - [SMALL_STATE(3587)] = 186200, - [SMALL_STATE(3588)] = 186210, - [SMALL_STATE(3589)] = 186218, - [SMALL_STATE(3590)] = 186228, - [SMALL_STATE(3591)] = 186238, - [SMALL_STATE(3592)] = 186248, - [SMALL_STATE(3593)] = 186256, - [SMALL_STATE(3594)] = 186266, - [SMALL_STATE(3595)] = 186276, - [SMALL_STATE(3596)] = 186286, - [SMALL_STATE(3597)] = 186294, - [SMALL_STATE(3598)] = 186304, - [SMALL_STATE(3599)] = 186312, - [SMALL_STATE(3600)] = 186320, - [SMALL_STATE(3601)] = 186330, - [SMALL_STATE(3602)] = 186340, - [SMALL_STATE(3603)] = 186348, - [SMALL_STATE(3604)] = 186356, - [SMALL_STATE(3605)] = 186366, - [SMALL_STATE(3606)] = 186376, - [SMALL_STATE(3607)] = 186384, - [SMALL_STATE(3608)] = 186392, - [SMALL_STATE(3609)] = 186402, - [SMALL_STATE(3610)] = 186410, - [SMALL_STATE(3611)] = 186418, - [SMALL_STATE(3612)] = 186428, - [SMALL_STATE(3613)] = 186438, - [SMALL_STATE(3614)] = 186446, - [SMALL_STATE(3615)] = 186456, - [SMALL_STATE(3616)] = 186466, - [SMALL_STATE(3617)] = 186474, - [SMALL_STATE(3618)] = 186484, - [SMALL_STATE(3619)] = 186494, - [SMALL_STATE(3620)] = 186504, - [SMALL_STATE(3621)] = 186514, - [SMALL_STATE(3622)] = 186524, - [SMALL_STATE(3623)] = 186534, - [SMALL_STATE(3624)] = 186541, - [SMALL_STATE(3625)] = 186548, - [SMALL_STATE(3626)] = 186555, - [SMALL_STATE(3627)] = 186562, - [SMALL_STATE(3628)] = 186569, - [SMALL_STATE(3629)] = 186576, - [SMALL_STATE(3630)] = 186583, - [SMALL_STATE(3631)] = 186590, - [SMALL_STATE(3632)] = 186597, - [SMALL_STATE(3633)] = 186604, - [SMALL_STATE(3634)] = 186611, - [SMALL_STATE(3635)] = 186618, - [SMALL_STATE(3636)] = 186625, - [SMALL_STATE(3637)] = 186632, - [SMALL_STATE(3638)] = 186639, - [SMALL_STATE(3639)] = 186646, - [SMALL_STATE(3640)] = 186653, - [SMALL_STATE(3641)] = 186660, - [SMALL_STATE(3642)] = 186667, - [SMALL_STATE(3643)] = 186674, - [SMALL_STATE(3644)] = 186681, - [SMALL_STATE(3645)] = 186688, - [SMALL_STATE(3646)] = 186695, - [SMALL_STATE(3647)] = 186702, - [SMALL_STATE(3648)] = 186709, - [SMALL_STATE(3649)] = 186716, - [SMALL_STATE(3650)] = 186723, - [SMALL_STATE(3651)] = 186730, - [SMALL_STATE(3652)] = 186737, - [SMALL_STATE(3653)] = 186744, - [SMALL_STATE(3654)] = 186751, - [SMALL_STATE(3655)] = 186758, - [SMALL_STATE(3656)] = 186765, - [SMALL_STATE(3657)] = 186772, - [SMALL_STATE(3658)] = 186779, - [SMALL_STATE(3659)] = 186786, - [SMALL_STATE(3660)] = 186793, - [SMALL_STATE(3661)] = 186800, - [SMALL_STATE(3662)] = 186807, - [SMALL_STATE(3663)] = 186814, - [SMALL_STATE(3664)] = 186821, - [SMALL_STATE(3665)] = 186828, - [SMALL_STATE(3666)] = 186835, - [SMALL_STATE(3667)] = 186842, - [SMALL_STATE(3668)] = 186849, - [SMALL_STATE(3669)] = 186856, - [SMALL_STATE(3670)] = 186863, - [SMALL_STATE(3671)] = 186870, - [SMALL_STATE(3672)] = 186877, - [SMALL_STATE(3673)] = 186884, - [SMALL_STATE(3674)] = 186891, - [SMALL_STATE(3675)] = 186898, - [SMALL_STATE(3676)] = 186905, - [SMALL_STATE(3677)] = 186912, - [SMALL_STATE(3678)] = 186919, - [SMALL_STATE(3679)] = 186926, - [SMALL_STATE(3680)] = 186933, - [SMALL_STATE(3681)] = 186940, - [SMALL_STATE(3682)] = 186947, - [SMALL_STATE(3683)] = 186954, - [SMALL_STATE(3684)] = 186961, - [SMALL_STATE(3685)] = 186968, - [SMALL_STATE(3686)] = 186975, - [SMALL_STATE(3687)] = 186982, - [SMALL_STATE(3688)] = 186989, - [SMALL_STATE(3689)] = 186996, - [SMALL_STATE(3690)] = 187003, - [SMALL_STATE(3691)] = 187010, - [SMALL_STATE(3692)] = 187017, - [SMALL_STATE(3693)] = 187024, - [SMALL_STATE(3694)] = 187031, - [SMALL_STATE(3695)] = 187038, - [SMALL_STATE(3696)] = 187045, - [SMALL_STATE(3697)] = 187052, - [SMALL_STATE(3698)] = 187059, - [SMALL_STATE(3699)] = 187066, - [SMALL_STATE(3700)] = 187073, - [SMALL_STATE(3701)] = 187080, - [SMALL_STATE(3702)] = 187087, - [SMALL_STATE(3703)] = 187094, - [SMALL_STATE(3704)] = 187101, - [SMALL_STATE(3705)] = 187108, - [SMALL_STATE(3706)] = 187115, - [SMALL_STATE(3707)] = 187122, - [SMALL_STATE(3708)] = 187129, - [SMALL_STATE(3709)] = 187136, - [SMALL_STATE(3710)] = 187143, - [SMALL_STATE(3711)] = 187150, - [SMALL_STATE(3712)] = 187157, - [SMALL_STATE(3713)] = 187164, - [SMALL_STATE(3714)] = 187171, - [SMALL_STATE(3715)] = 187178, - [SMALL_STATE(3716)] = 187185, - [SMALL_STATE(3717)] = 187192, - [SMALL_STATE(3718)] = 187199, - [SMALL_STATE(3719)] = 187206, - [SMALL_STATE(3720)] = 187213, - [SMALL_STATE(3721)] = 187220, - [SMALL_STATE(3722)] = 187227, - [SMALL_STATE(3723)] = 187234, - [SMALL_STATE(3724)] = 187241, - [SMALL_STATE(3725)] = 187248, - [SMALL_STATE(3726)] = 187255, - [SMALL_STATE(3727)] = 187262, - [SMALL_STATE(3728)] = 187269, - [SMALL_STATE(3729)] = 187276, - [SMALL_STATE(3730)] = 187283, - [SMALL_STATE(3731)] = 187290, - [SMALL_STATE(3732)] = 187297, - [SMALL_STATE(3733)] = 187304, - [SMALL_STATE(3734)] = 187311, - [SMALL_STATE(3735)] = 187318, - [SMALL_STATE(3736)] = 187325, - [SMALL_STATE(3737)] = 187332, - [SMALL_STATE(3738)] = 187339, - [SMALL_STATE(3739)] = 187346, - [SMALL_STATE(3740)] = 187353, - [SMALL_STATE(3741)] = 187360, - [SMALL_STATE(3742)] = 187367, - [SMALL_STATE(3743)] = 187374, - [SMALL_STATE(3744)] = 187381, - [SMALL_STATE(3745)] = 187388, - [SMALL_STATE(3746)] = 187395, - [SMALL_STATE(3747)] = 187402, - [SMALL_STATE(3748)] = 187409, - [SMALL_STATE(3749)] = 187416, - [SMALL_STATE(3750)] = 187423, - [SMALL_STATE(3751)] = 187430, - [SMALL_STATE(3752)] = 187437, - [SMALL_STATE(3753)] = 187444, - [SMALL_STATE(3754)] = 187451, - [SMALL_STATE(3755)] = 187458, - [SMALL_STATE(3756)] = 187465, - [SMALL_STATE(3757)] = 187472, - [SMALL_STATE(3758)] = 187479, - [SMALL_STATE(3759)] = 187486, - [SMALL_STATE(3760)] = 187493, - [SMALL_STATE(3761)] = 187500, - [SMALL_STATE(3762)] = 187507, - [SMALL_STATE(3763)] = 187514, - [SMALL_STATE(3764)] = 187521, - [SMALL_STATE(3765)] = 187528, - [SMALL_STATE(3766)] = 187535, - [SMALL_STATE(3767)] = 187542, - [SMALL_STATE(3768)] = 187549, - [SMALL_STATE(3769)] = 187556, - [SMALL_STATE(3770)] = 187563, - [SMALL_STATE(3771)] = 187570, - [SMALL_STATE(3772)] = 187577, - [SMALL_STATE(3773)] = 187584, - [SMALL_STATE(3774)] = 187591, - [SMALL_STATE(3775)] = 187598, - [SMALL_STATE(3776)] = 187605, - [SMALL_STATE(3777)] = 187612, - [SMALL_STATE(3778)] = 187619, - [SMALL_STATE(3779)] = 187626, - [SMALL_STATE(3780)] = 187633, - [SMALL_STATE(3781)] = 187640, - [SMALL_STATE(3782)] = 187647, - [SMALL_STATE(3783)] = 187654, - [SMALL_STATE(3784)] = 187661, - [SMALL_STATE(3785)] = 187668, - [SMALL_STATE(3786)] = 187675, - [SMALL_STATE(3787)] = 187682, - [SMALL_STATE(3788)] = 187689, - [SMALL_STATE(3789)] = 187696, - [SMALL_STATE(3790)] = 187703, - [SMALL_STATE(3791)] = 187710, - [SMALL_STATE(3792)] = 187717, - [SMALL_STATE(3793)] = 187724, - [SMALL_STATE(3794)] = 187731, - [SMALL_STATE(3795)] = 187738, - [SMALL_STATE(3796)] = 187745, - [SMALL_STATE(3797)] = 187752, - [SMALL_STATE(3798)] = 187759, - [SMALL_STATE(3799)] = 187766, - [SMALL_STATE(3800)] = 187773, - [SMALL_STATE(3801)] = 187780, - [SMALL_STATE(3802)] = 187787, - [SMALL_STATE(3803)] = 187794, - [SMALL_STATE(3804)] = 187801, - [SMALL_STATE(3805)] = 187808, - [SMALL_STATE(3806)] = 187815, - [SMALL_STATE(3807)] = 187822, - [SMALL_STATE(3808)] = 187829, - [SMALL_STATE(3809)] = 187836, - [SMALL_STATE(3810)] = 187843, - [SMALL_STATE(3811)] = 187850, - [SMALL_STATE(3812)] = 187857, - [SMALL_STATE(3813)] = 187864, - [SMALL_STATE(3814)] = 187871, - [SMALL_STATE(3815)] = 187878, - [SMALL_STATE(3816)] = 187885, - [SMALL_STATE(3817)] = 187892, - [SMALL_STATE(3818)] = 187899, - [SMALL_STATE(3819)] = 187906, - [SMALL_STATE(3820)] = 187913, - [SMALL_STATE(3821)] = 187920, - [SMALL_STATE(3822)] = 187927, - [SMALL_STATE(3823)] = 187934, - [SMALL_STATE(3824)] = 187941, - [SMALL_STATE(3825)] = 187948, - [SMALL_STATE(3826)] = 187955, - [SMALL_STATE(3827)] = 187962, - [SMALL_STATE(3828)] = 187969, - [SMALL_STATE(3829)] = 187976, - [SMALL_STATE(3830)] = 187983, - [SMALL_STATE(3831)] = 187990, - [SMALL_STATE(3832)] = 187997, - [SMALL_STATE(3833)] = 188004, - [SMALL_STATE(3834)] = 188011, - [SMALL_STATE(3835)] = 188018, - [SMALL_STATE(3836)] = 188025, - [SMALL_STATE(3837)] = 188032, - [SMALL_STATE(3838)] = 188039, - [SMALL_STATE(3839)] = 188046, - [SMALL_STATE(3840)] = 188053, - [SMALL_STATE(3841)] = 188060, - [SMALL_STATE(3842)] = 188067, - [SMALL_STATE(3843)] = 188074, - [SMALL_STATE(3844)] = 188081, - [SMALL_STATE(3845)] = 188088, - [SMALL_STATE(3846)] = 188095, - [SMALL_STATE(3847)] = 188102, - [SMALL_STATE(3848)] = 188109, - [SMALL_STATE(3849)] = 188116, - [SMALL_STATE(3850)] = 188123, - [SMALL_STATE(3851)] = 188130, - [SMALL_STATE(3852)] = 188137, - [SMALL_STATE(3853)] = 188144, - [SMALL_STATE(3854)] = 188151, - [SMALL_STATE(3855)] = 188158, - [SMALL_STATE(3856)] = 188165, - [SMALL_STATE(3857)] = 188172, - [SMALL_STATE(3858)] = 188179, - [SMALL_STATE(3859)] = 188186, - [SMALL_STATE(3860)] = 188193, - [SMALL_STATE(3861)] = 188200, - [SMALL_STATE(3862)] = 188207, - [SMALL_STATE(3863)] = 188214, - [SMALL_STATE(3864)] = 188221, - [SMALL_STATE(3865)] = 188228, - [SMALL_STATE(3866)] = 188235, - [SMALL_STATE(3867)] = 188242, - [SMALL_STATE(3868)] = 188249, - [SMALL_STATE(3869)] = 188256, - [SMALL_STATE(3870)] = 188263, - [SMALL_STATE(3871)] = 188270, - [SMALL_STATE(3872)] = 188277, - [SMALL_STATE(3873)] = 188284, - [SMALL_STATE(3874)] = 188291, - [SMALL_STATE(3875)] = 188298, - [SMALL_STATE(3876)] = 188305, - [SMALL_STATE(3877)] = 188312, - [SMALL_STATE(3878)] = 188319, - [SMALL_STATE(3879)] = 188326, - [SMALL_STATE(3880)] = 188333, - [SMALL_STATE(3881)] = 188340, - [SMALL_STATE(3882)] = 188347, - [SMALL_STATE(3883)] = 188354, - [SMALL_STATE(3884)] = 188361, - [SMALL_STATE(3885)] = 188368, - [SMALL_STATE(3886)] = 188375, - [SMALL_STATE(3887)] = 188382, - [SMALL_STATE(3888)] = 188389, - [SMALL_STATE(3889)] = 188396, - [SMALL_STATE(3890)] = 188403, - [SMALL_STATE(3891)] = 188410, - [SMALL_STATE(3892)] = 188417, - [SMALL_STATE(3893)] = 188424, - [SMALL_STATE(3894)] = 188431, - [SMALL_STATE(3895)] = 188438, - [SMALL_STATE(3896)] = 188445, - [SMALL_STATE(3897)] = 188452, - [SMALL_STATE(3898)] = 188459, - [SMALL_STATE(3899)] = 188466, - [SMALL_STATE(3900)] = 188473, - [SMALL_STATE(3901)] = 188480, - [SMALL_STATE(3902)] = 188487, - [SMALL_STATE(3903)] = 188494, - [SMALL_STATE(3904)] = 188501, - [SMALL_STATE(3905)] = 188508, - [SMALL_STATE(3906)] = 188515, - [SMALL_STATE(3907)] = 188522, - [SMALL_STATE(3908)] = 188529, - [SMALL_STATE(3909)] = 188536, - [SMALL_STATE(3910)] = 188543, - [SMALL_STATE(3911)] = 188550, - [SMALL_STATE(3912)] = 188557, - [SMALL_STATE(3913)] = 188564, - [SMALL_STATE(3914)] = 188571, - [SMALL_STATE(3915)] = 188578, - [SMALL_STATE(3916)] = 188585, - [SMALL_STATE(3917)] = 188592, - [SMALL_STATE(3918)] = 188599, - [SMALL_STATE(3919)] = 188606, - [SMALL_STATE(3920)] = 188613, - [SMALL_STATE(3921)] = 188620, - [SMALL_STATE(3922)] = 188627, - [SMALL_STATE(3923)] = 188634, - [SMALL_STATE(3924)] = 188641, - [SMALL_STATE(3925)] = 188648, - [SMALL_STATE(3926)] = 188655, - [SMALL_STATE(3927)] = 188662, - [SMALL_STATE(3928)] = 188669, - [SMALL_STATE(3929)] = 188676, - [SMALL_STATE(3930)] = 188683, - [SMALL_STATE(3931)] = 188690, - [SMALL_STATE(3932)] = 188697, - [SMALL_STATE(3933)] = 188704, - [SMALL_STATE(3934)] = 188711, - [SMALL_STATE(3935)] = 188718, - [SMALL_STATE(3936)] = 188725, - [SMALL_STATE(3937)] = 188732, - [SMALL_STATE(3938)] = 188739, - [SMALL_STATE(3939)] = 188746, - [SMALL_STATE(3940)] = 188753, - [SMALL_STATE(3941)] = 188760, + [SMALL_STATE(3542)] = 185726, + [SMALL_STATE(3543)] = 185736, + [SMALL_STATE(3544)] = 185746, + [SMALL_STATE(3545)] = 185756, + [SMALL_STATE(3546)] = 185764, + [SMALL_STATE(3547)] = 185774, + [SMALL_STATE(3548)] = 185782, + [SMALL_STATE(3549)] = 185792, + [SMALL_STATE(3550)] = 185802, + [SMALL_STATE(3551)] = 185812, + [SMALL_STATE(3552)] = 185822, + [SMALL_STATE(3553)] = 185832, + [SMALL_STATE(3554)] = 185842, + [SMALL_STATE(3555)] = 185852, + [SMALL_STATE(3556)] = 185862, + [SMALL_STATE(3557)] = 185870, + [SMALL_STATE(3558)] = 185880, + [SMALL_STATE(3559)] = 185888, + [SMALL_STATE(3560)] = 185898, + [SMALL_STATE(3561)] = 185908, + [SMALL_STATE(3562)] = 185918, + [SMALL_STATE(3563)] = 185926, + [SMALL_STATE(3564)] = 185936, + [SMALL_STATE(3565)] = 185946, + [SMALL_STATE(3566)] = 185954, + [SMALL_STATE(3567)] = 185962, + [SMALL_STATE(3568)] = 185970, + [SMALL_STATE(3569)] = 185980, + [SMALL_STATE(3570)] = 185988, + [SMALL_STATE(3571)] = 185998, + [SMALL_STATE(3572)] = 186008, + [SMALL_STATE(3573)] = 186018, + [SMALL_STATE(3574)] = 186028, + [SMALL_STATE(3575)] = 186038, + [SMALL_STATE(3576)] = 186048, + [SMALL_STATE(3577)] = 186055, + [SMALL_STATE(3578)] = 186062, + [SMALL_STATE(3579)] = 186069, + [SMALL_STATE(3580)] = 186076, + [SMALL_STATE(3581)] = 186083, + [SMALL_STATE(3582)] = 186090, + [SMALL_STATE(3583)] = 186097, + [SMALL_STATE(3584)] = 186104, + [SMALL_STATE(3585)] = 186111, + [SMALL_STATE(3586)] = 186118, + [SMALL_STATE(3587)] = 186125, + [SMALL_STATE(3588)] = 186132, + [SMALL_STATE(3589)] = 186139, + [SMALL_STATE(3590)] = 186146, + [SMALL_STATE(3591)] = 186153, + [SMALL_STATE(3592)] = 186160, + [SMALL_STATE(3593)] = 186167, + [SMALL_STATE(3594)] = 186174, + [SMALL_STATE(3595)] = 186181, + [SMALL_STATE(3596)] = 186188, + [SMALL_STATE(3597)] = 186195, + [SMALL_STATE(3598)] = 186202, + [SMALL_STATE(3599)] = 186209, + [SMALL_STATE(3600)] = 186216, + [SMALL_STATE(3601)] = 186223, + [SMALL_STATE(3602)] = 186230, + [SMALL_STATE(3603)] = 186237, + [SMALL_STATE(3604)] = 186244, + [SMALL_STATE(3605)] = 186251, + [SMALL_STATE(3606)] = 186258, + [SMALL_STATE(3607)] = 186265, + [SMALL_STATE(3608)] = 186272, + [SMALL_STATE(3609)] = 186279, + [SMALL_STATE(3610)] = 186286, + [SMALL_STATE(3611)] = 186293, + [SMALL_STATE(3612)] = 186300, + [SMALL_STATE(3613)] = 186307, + [SMALL_STATE(3614)] = 186314, + [SMALL_STATE(3615)] = 186321, + [SMALL_STATE(3616)] = 186328, + [SMALL_STATE(3617)] = 186335, + [SMALL_STATE(3618)] = 186342, + [SMALL_STATE(3619)] = 186349, + [SMALL_STATE(3620)] = 186356, + [SMALL_STATE(3621)] = 186363, + [SMALL_STATE(3622)] = 186370, + [SMALL_STATE(3623)] = 186377, + [SMALL_STATE(3624)] = 186384, + [SMALL_STATE(3625)] = 186391, + [SMALL_STATE(3626)] = 186398, + [SMALL_STATE(3627)] = 186405, + [SMALL_STATE(3628)] = 186412, + [SMALL_STATE(3629)] = 186419, + [SMALL_STATE(3630)] = 186426, + [SMALL_STATE(3631)] = 186433, + [SMALL_STATE(3632)] = 186440, + [SMALL_STATE(3633)] = 186447, + [SMALL_STATE(3634)] = 186454, + [SMALL_STATE(3635)] = 186461, + [SMALL_STATE(3636)] = 186468, + [SMALL_STATE(3637)] = 186475, + [SMALL_STATE(3638)] = 186482, + [SMALL_STATE(3639)] = 186489, + [SMALL_STATE(3640)] = 186496, + [SMALL_STATE(3641)] = 186503, + [SMALL_STATE(3642)] = 186510, + [SMALL_STATE(3643)] = 186517, + [SMALL_STATE(3644)] = 186524, + [SMALL_STATE(3645)] = 186531, + [SMALL_STATE(3646)] = 186538, + [SMALL_STATE(3647)] = 186545, + [SMALL_STATE(3648)] = 186552, + [SMALL_STATE(3649)] = 186559, + [SMALL_STATE(3650)] = 186566, + [SMALL_STATE(3651)] = 186573, + [SMALL_STATE(3652)] = 186580, + [SMALL_STATE(3653)] = 186587, + [SMALL_STATE(3654)] = 186594, + [SMALL_STATE(3655)] = 186601, + [SMALL_STATE(3656)] = 186608, + [SMALL_STATE(3657)] = 186615, + [SMALL_STATE(3658)] = 186622, + [SMALL_STATE(3659)] = 186629, + [SMALL_STATE(3660)] = 186636, + [SMALL_STATE(3661)] = 186643, + [SMALL_STATE(3662)] = 186650, + [SMALL_STATE(3663)] = 186657, + [SMALL_STATE(3664)] = 186664, + [SMALL_STATE(3665)] = 186671, + [SMALL_STATE(3666)] = 186678, + [SMALL_STATE(3667)] = 186685, + [SMALL_STATE(3668)] = 186692, + [SMALL_STATE(3669)] = 186699, + [SMALL_STATE(3670)] = 186706, + [SMALL_STATE(3671)] = 186713, + [SMALL_STATE(3672)] = 186720, + [SMALL_STATE(3673)] = 186727, + [SMALL_STATE(3674)] = 186734, + [SMALL_STATE(3675)] = 186741, + [SMALL_STATE(3676)] = 186748, + [SMALL_STATE(3677)] = 186755, + [SMALL_STATE(3678)] = 186762, + [SMALL_STATE(3679)] = 186769, + [SMALL_STATE(3680)] = 186776, + [SMALL_STATE(3681)] = 186783, + [SMALL_STATE(3682)] = 186790, + [SMALL_STATE(3683)] = 186797, + [SMALL_STATE(3684)] = 186804, + [SMALL_STATE(3685)] = 186811, + [SMALL_STATE(3686)] = 186818, + [SMALL_STATE(3687)] = 186825, + [SMALL_STATE(3688)] = 186832, + [SMALL_STATE(3689)] = 186839, + [SMALL_STATE(3690)] = 186846, + [SMALL_STATE(3691)] = 186853, + [SMALL_STATE(3692)] = 186860, + [SMALL_STATE(3693)] = 186867, + [SMALL_STATE(3694)] = 186874, + [SMALL_STATE(3695)] = 186881, + [SMALL_STATE(3696)] = 186888, + [SMALL_STATE(3697)] = 186895, + [SMALL_STATE(3698)] = 186902, + [SMALL_STATE(3699)] = 186909, + [SMALL_STATE(3700)] = 186916, + [SMALL_STATE(3701)] = 186923, + [SMALL_STATE(3702)] = 186930, + [SMALL_STATE(3703)] = 186937, + [SMALL_STATE(3704)] = 186944, + [SMALL_STATE(3705)] = 186951, + [SMALL_STATE(3706)] = 186958, + [SMALL_STATE(3707)] = 186965, + [SMALL_STATE(3708)] = 186972, + [SMALL_STATE(3709)] = 186979, + [SMALL_STATE(3710)] = 186986, + [SMALL_STATE(3711)] = 186993, + [SMALL_STATE(3712)] = 187000, + [SMALL_STATE(3713)] = 187007, + [SMALL_STATE(3714)] = 187014, + [SMALL_STATE(3715)] = 187021, + [SMALL_STATE(3716)] = 187028, + [SMALL_STATE(3717)] = 187035, + [SMALL_STATE(3718)] = 187042, + [SMALL_STATE(3719)] = 187049, + [SMALL_STATE(3720)] = 187056, + [SMALL_STATE(3721)] = 187063, + [SMALL_STATE(3722)] = 187070, + [SMALL_STATE(3723)] = 187077, + [SMALL_STATE(3724)] = 187084, + [SMALL_STATE(3725)] = 187091, + [SMALL_STATE(3726)] = 187098, + [SMALL_STATE(3727)] = 187105, + [SMALL_STATE(3728)] = 187112, + [SMALL_STATE(3729)] = 187119, + [SMALL_STATE(3730)] = 187126, + [SMALL_STATE(3731)] = 187133, + [SMALL_STATE(3732)] = 187140, + [SMALL_STATE(3733)] = 187147, + [SMALL_STATE(3734)] = 187154, + [SMALL_STATE(3735)] = 187161, + [SMALL_STATE(3736)] = 187168, + [SMALL_STATE(3737)] = 187175, + [SMALL_STATE(3738)] = 187182, + [SMALL_STATE(3739)] = 187189, + [SMALL_STATE(3740)] = 187196, + [SMALL_STATE(3741)] = 187203, + [SMALL_STATE(3742)] = 187210, + [SMALL_STATE(3743)] = 187217, + [SMALL_STATE(3744)] = 187224, + [SMALL_STATE(3745)] = 187231, + [SMALL_STATE(3746)] = 187238, + [SMALL_STATE(3747)] = 187245, + [SMALL_STATE(3748)] = 187252, + [SMALL_STATE(3749)] = 187259, + [SMALL_STATE(3750)] = 187266, + [SMALL_STATE(3751)] = 187273, + [SMALL_STATE(3752)] = 187280, + [SMALL_STATE(3753)] = 187287, + [SMALL_STATE(3754)] = 187294, + [SMALL_STATE(3755)] = 187301, + [SMALL_STATE(3756)] = 187308, + [SMALL_STATE(3757)] = 187315, + [SMALL_STATE(3758)] = 187322, + [SMALL_STATE(3759)] = 187329, + [SMALL_STATE(3760)] = 187336, + [SMALL_STATE(3761)] = 187343, + [SMALL_STATE(3762)] = 187350, + [SMALL_STATE(3763)] = 187357, + [SMALL_STATE(3764)] = 187364, + [SMALL_STATE(3765)] = 187371, + [SMALL_STATE(3766)] = 187378, + [SMALL_STATE(3767)] = 187385, + [SMALL_STATE(3768)] = 187392, + [SMALL_STATE(3769)] = 187399, + [SMALL_STATE(3770)] = 187406, + [SMALL_STATE(3771)] = 187413, + [SMALL_STATE(3772)] = 187420, + [SMALL_STATE(3773)] = 187427, + [SMALL_STATE(3774)] = 187434, + [SMALL_STATE(3775)] = 187441, + [SMALL_STATE(3776)] = 187448, + [SMALL_STATE(3777)] = 187455, + [SMALL_STATE(3778)] = 187462, + [SMALL_STATE(3779)] = 187469, + [SMALL_STATE(3780)] = 187476, + [SMALL_STATE(3781)] = 187483, + [SMALL_STATE(3782)] = 187490, + [SMALL_STATE(3783)] = 187497, + [SMALL_STATE(3784)] = 187504, + [SMALL_STATE(3785)] = 187511, + [SMALL_STATE(3786)] = 187518, + [SMALL_STATE(3787)] = 187525, + [SMALL_STATE(3788)] = 187532, + [SMALL_STATE(3789)] = 187539, + [SMALL_STATE(3790)] = 187546, + [SMALL_STATE(3791)] = 187553, + [SMALL_STATE(3792)] = 187560, + [SMALL_STATE(3793)] = 187567, + [SMALL_STATE(3794)] = 187574, + [SMALL_STATE(3795)] = 187581, + [SMALL_STATE(3796)] = 187588, + [SMALL_STATE(3797)] = 187595, + [SMALL_STATE(3798)] = 187602, + [SMALL_STATE(3799)] = 187609, + [SMALL_STATE(3800)] = 187616, + [SMALL_STATE(3801)] = 187623, + [SMALL_STATE(3802)] = 187630, + [SMALL_STATE(3803)] = 187637, + [SMALL_STATE(3804)] = 187644, + [SMALL_STATE(3805)] = 187651, + [SMALL_STATE(3806)] = 187658, + [SMALL_STATE(3807)] = 187665, + [SMALL_STATE(3808)] = 187672, + [SMALL_STATE(3809)] = 187679, + [SMALL_STATE(3810)] = 187686, + [SMALL_STATE(3811)] = 187693, + [SMALL_STATE(3812)] = 187700, + [SMALL_STATE(3813)] = 187707, + [SMALL_STATE(3814)] = 187714, + [SMALL_STATE(3815)] = 187721, + [SMALL_STATE(3816)] = 187728, + [SMALL_STATE(3817)] = 187735, + [SMALL_STATE(3818)] = 187742, + [SMALL_STATE(3819)] = 187749, + [SMALL_STATE(3820)] = 187756, + [SMALL_STATE(3821)] = 187763, + [SMALL_STATE(3822)] = 187770, + [SMALL_STATE(3823)] = 187777, + [SMALL_STATE(3824)] = 187784, + [SMALL_STATE(3825)] = 187791, + [SMALL_STATE(3826)] = 187798, + [SMALL_STATE(3827)] = 187805, + [SMALL_STATE(3828)] = 187812, + [SMALL_STATE(3829)] = 187819, + [SMALL_STATE(3830)] = 187826, + [SMALL_STATE(3831)] = 187833, + [SMALL_STATE(3832)] = 187840, + [SMALL_STATE(3833)] = 187847, + [SMALL_STATE(3834)] = 187854, + [SMALL_STATE(3835)] = 187861, + [SMALL_STATE(3836)] = 187868, + [SMALL_STATE(3837)] = 187875, + [SMALL_STATE(3838)] = 187882, + [SMALL_STATE(3839)] = 187889, + [SMALL_STATE(3840)] = 187896, + [SMALL_STATE(3841)] = 187903, + [SMALL_STATE(3842)] = 187910, + [SMALL_STATE(3843)] = 187917, + [SMALL_STATE(3844)] = 187924, + [SMALL_STATE(3845)] = 187931, + [SMALL_STATE(3846)] = 187938, + [SMALL_STATE(3847)] = 187945, + [SMALL_STATE(3848)] = 187952, + [SMALL_STATE(3849)] = 187959, + [SMALL_STATE(3850)] = 187966, + [SMALL_STATE(3851)] = 187973, + [SMALL_STATE(3852)] = 187980, + [SMALL_STATE(3853)] = 187987, + [SMALL_STATE(3854)] = 187994, + [SMALL_STATE(3855)] = 188001, + [SMALL_STATE(3856)] = 188008, + [SMALL_STATE(3857)] = 188015, + [SMALL_STATE(3858)] = 188022, + [SMALL_STATE(3859)] = 188029, + [SMALL_STATE(3860)] = 188036, + [SMALL_STATE(3861)] = 188043, + [SMALL_STATE(3862)] = 188050, + [SMALL_STATE(3863)] = 188057, + [SMALL_STATE(3864)] = 188064, + [SMALL_STATE(3865)] = 188071, + [SMALL_STATE(3866)] = 188078, + [SMALL_STATE(3867)] = 188085, + [SMALL_STATE(3868)] = 188092, + [SMALL_STATE(3869)] = 188099, + [SMALL_STATE(3870)] = 188106, + [SMALL_STATE(3871)] = 188113, + [SMALL_STATE(3872)] = 188120, + [SMALL_STATE(3873)] = 188127, + [SMALL_STATE(3874)] = 188134, + [SMALL_STATE(3875)] = 188141, + [SMALL_STATE(3876)] = 188148, + [SMALL_STATE(3877)] = 188155, + [SMALL_STATE(3878)] = 188162, + [SMALL_STATE(3879)] = 188169, + [SMALL_STATE(3880)] = 188176, + [SMALL_STATE(3881)] = 188183, + [SMALL_STATE(3882)] = 188190, + [SMALL_STATE(3883)] = 188197, + [SMALL_STATE(3884)] = 188204, + [SMALL_STATE(3885)] = 188211, + [SMALL_STATE(3886)] = 188218, + [SMALL_STATE(3887)] = 188225, + [SMALL_STATE(3888)] = 188232, + [SMALL_STATE(3889)] = 188239, + [SMALL_STATE(3890)] = 188246, + [SMALL_STATE(3891)] = 188253, + [SMALL_STATE(3892)] = 188260, + [SMALL_STATE(3893)] = 188267, + [SMALL_STATE(3894)] = 188274, + [SMALL_STATE(3895)] = 188281, + [SMALL_STATE(3896)] = 188288, + [SMALL_STATE(3897)] = 188295, + [SMALL_STATE(3898)] = 188302, + [SMALL_STATE(3899)] = 188309, + [SMALL_STATE(3900)] = 188316, + [SMALL_STATE(3901)] = 188323, + [SMALL_STATE(3902)] = 188330, + [SMALL_STATE(3903)] = 188337, + [SMALL_STATE(3904)] = 188344, + [SMALL_STATE(3905)] = 188351, + [SMALL_STATE(3906)] = 188358, + [SMALL_STATE(3907)] = 188365, + [SMALL_STATE(3908)] = 188372, + [SMALL_STATE(3909)] = 188379, + [SMALL_STATE(3910)] = 188386, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -211098,4738 +211183,4711 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_item_last, 2, 0, 30), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_item_last, 3, 0, 38), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_item_last, 3, 0, 38), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_item_last, 2, 0, 30), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_body, 1, 0, 0), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_body, 1, 0, 0), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3, 0, 0), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1, 0, 0), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1195), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2985), - [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__case_body, 1, 0, 0), + [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_body, 1, 0, 0), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3, 0, 0), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1, 0, 0), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2912), + [829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(308), [832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(138), [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2195), - [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3559), - [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3693), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(573), - [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(65), - [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(792), - [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(734), - [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3761), - [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1697), - [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(659), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2150), - [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2150), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3722), - [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1289), - [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1313), - [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1314), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3539), - [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2778), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(781), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(66), - [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(569), - [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(570), - [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3549), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3070), - [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(77), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3808), - [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), - [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), - [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), - [942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2, 0, 0), - [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3, 0, 0), - [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 3, 0, 0), - [948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 3, 0, 0), - [950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3, 0, 0), - [952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 4, 0, 0), - [954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 4, 0, 0), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), - [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(309), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 5, 0, 0), - [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 5, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(313), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(313), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(576), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(918), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(3525), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(2901), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(918), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(784), - [997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(95), - [1000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(371), - [1003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(372), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(96), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(92), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__terminator, 1, 0, 0), REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1, 0, 0), - [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1, 0, 0), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__terminator, 1, 0, 0), REDUCE(aux_sym_program_repeat1, 1, 0, 0), - [1022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(326), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [1108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [1114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [1118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [1146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [1160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [1202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [1238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [1704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [1712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [1714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [1788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [1794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [1796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [1800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [1802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [1804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [1814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [1816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [1818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [1824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [1832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [1836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [1846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [1850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [1852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [1864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(577), - [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(577), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(330), - [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(1152), - [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(3490), - [1899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(2784), - [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(1152), - [1905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(729), - [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(140), - [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(453), - [1914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(454), - [1917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(198), - [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(139), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), - [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 8), - [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 8), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 1), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 1), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 4), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 4), - [2019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1201), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), - [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1260), - [2029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2201), - [2032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2201), - [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3665), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3666), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1210), - [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1214), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3440), - [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2911), - [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(760), - [2056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(176), - [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(501), - [2062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(502), - [2065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(174), - [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3116), - [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(175), - [2074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1201), - [2077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3929), - [2080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 16), - [2082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 16), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [2088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(603), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [2113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(610), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2, 0, 0), - [2122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2, 0, 0), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), - [2157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2200), - [2160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2200), - [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3700), - [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3715), - [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1231), - [2172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1239), - [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3481), - [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2861), - [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(766), - [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(182), - [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(509), - [2190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(510), - [2193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3544), - [2199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3112), - [2202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1355), - [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3931), - [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(616), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [2228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [2230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(635), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1311), - [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1465), - [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2183), - [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2183), - [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3873), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3874), - [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1313), - [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1314), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3539), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2778), - [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(781), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(66), - [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(569), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(570), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(67), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3136), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(77), - [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1311), - [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3808), - [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1224), - [2325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1427), - [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2207), - [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2207), - [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3785), - [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3786), - [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1229), - [2343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1250), - [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3528), - [2349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2870), - [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(770), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(188), - [2358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(517), - [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(518), - [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(186), - [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3118), - [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(187), - [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1224), - [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3933), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(649), - [2386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1232), - [2389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1382), - [2392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2185), - [2395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2185), - [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3834), - [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3667), - [2404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1247), - [2407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1317), - [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3472), - [2413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2799), - [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(738), - [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(149), - [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(465), - [2425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(466), - [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(147), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3104), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(148), - [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1232), - [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3918), - [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1, 0, 0), - [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1, 0, 0), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), - [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2177), - [2505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2177), - [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3862), - [2511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3883), - [2514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1454), - [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), - [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2824), - [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(751), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(485), - [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(486), - [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(162), - [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3507), - [2544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3099), - [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1401), - [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3925), - [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1395), - [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2150), - [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2150), - [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3722), - [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1381), - [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), - [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), - [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2823), - [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(797), - [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(411), - [2592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(412), - [2595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(114), - [2598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3549), - [2601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3070), - [2604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1395), - [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3896), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [2615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [2639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), - [2642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2204), - [2645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2204), - [2648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3731), - [2651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3735), - [2654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1368), - [2657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1429), - [2660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3418), - [2663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2883), - [2666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(775), - [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(525), - [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(526), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [2681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), - [2684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3117), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(193), - [2690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), - [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1654), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1698), - [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2198), - [2735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2198), - [2738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3839), - [2741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3840), - [2744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1663), - [2747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1688), - [2750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3548), - [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2819), - [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(749), - [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(161), - [2762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(481), - [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(482), - [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(159), - [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3110), - [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(160), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1654), - [2780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3924), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1, 0, 0), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [2865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1580), - [2868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1719), - [2871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2160), - [2874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2160), - [2877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3773), - [2880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3774), - [2883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1584), - [2886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1585), - [2889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3453), - [2892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2888), - [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(708), - [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(83), - [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(343), - [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(344), - [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(84), - [2910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3096), - [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(78), - [2916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1580), - [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3866), - [2922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1648), - [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1852), - [2928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2194), - [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2194), - [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3637), - [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3651), - [2940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1650), - [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1664), - [2946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3496), - [2949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2805), - [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(742), - [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(152), - [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(469), - [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(470), - [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(150), - [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3106), - [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(151), - [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1648), - [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3920), - [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1355), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1231), - [2991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1239), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3481), - [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2861), - [3000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(766), - [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(182), - [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(509), - [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(510), - [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(180), - [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(181), - [3018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1355), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3931), - [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1355), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), - [3031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1231), - [3034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1239), - [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3481), - [3040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2861), - [3043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(766), - [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(182), - [3049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(509), - [3052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(510), - [3055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(180), - [3058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(181), - [3061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1355), - [3064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3931), - [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1512), - [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1855), - [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2170), - [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2170), - [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3677), - [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3738), - [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1514), - [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1535), - [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3541), - [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2905), - [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(741), - [3100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(100), - [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(381), - [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(382), - [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(101), - [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3098), - [3115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(97), - [3118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1512), - [3121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3884), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1513), - [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1740), - [3144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2151), - [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2151), - [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3776), - [3153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3783), - [3156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1518), - [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1519), - [3162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3512), - [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2868), - [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(748), - [3171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(75), - [3174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(328), - [3177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(329), - [3180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(76), - [3183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3094), - [3186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(70), - [3189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1513), - [3192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3857), - [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1926), - [3198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(981), - [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(981), - [3204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(3196), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1927), - [3212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1935), - [3215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(3513), - [3218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2858), - [3221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1935), - [3224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [3226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(710), - [3229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(122), - [3232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(429), - [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(430), - [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(120), - [3241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(121), - [3244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1899), - [3247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(3904), - [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [3266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [3278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [3280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [3288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [3298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [3308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [3320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [3328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1042), - [3331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1042), - [3334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2124), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1071), - [3368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1071), - [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(3075), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [3390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1095), - [3393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1095), - [3396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1883), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [3441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1401), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [3446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1454), - [3449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1470), - [3452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3491), - [3455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2824), - [3458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(751), - [3461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(164), - [3464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(485), - [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(486), - [3470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(162), - [3473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(163), - [3476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1401), - [3479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3925), - [3482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(964), - [3485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(964), - [3488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1603), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1117), - [3498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1117), - [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2989), - [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [3520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1126), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1126), - [3526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2687), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [3571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1133), - [3574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1133), - [3577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1789), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1047), - [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1047), - [3602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(3389), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(904), - [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(904), - [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2936), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [3634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(912), - [3637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(912), - [3640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1823), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [3659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(921), - [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(921), - [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1144), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [3696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(932), - [3699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(932), - [3702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1844), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [3723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(941), - [3726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(941), - [3729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2725), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [3736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1401), - [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1454), - [3742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1470), - [3745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3491), - [3748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2824), - [3751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(751), - [3754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(164), - [3757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(485), - [3760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(486), - [3763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(162), - [3766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(163), - [3769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1401), - [3772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3925), - [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(951), - [3790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(951), - [3793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1343), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [3842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(960), - [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(960), - [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1679), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1861), - [3866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2180), - [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2180), - [3872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3663), - [3875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3664), - [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1872), - [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1701), - [3884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3526), - [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2836), - [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(755), - [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(493), - [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(494), - [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(168), - [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3424), - [3908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3100), - [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(169), - [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1861), - [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3927), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(972), - [3935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(972), - [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2951), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [3973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(991), - [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(991), - [3987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1506), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [4006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1871), - [4009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), - [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), - [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3811), - [4018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3812), - [4021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), - [4024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1717), - [4027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3427), - [4030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2840), - [4033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(173), - [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(497), - [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(498), - [4045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [4048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), - [4051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3102), - [4054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [4057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1871), - [4060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3928), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [4075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1007), - [4078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1007), - [4081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2706), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(919), - [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(919), - [4106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1554), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [4113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1018), - [4116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1018), - [4119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1695), - [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [4138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1028), - [4141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1028), - [4144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1865), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1037), - [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1037), - [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1188), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [4188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), - [4191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2206), - [4194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2206), - [4197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3720), - [4200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3721), - [4203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), - [4209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3552), - [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2789), - [4215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(731), - [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [4221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(457), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(458), - [4227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [4230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3489), - [4233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3086), - [4236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(142), - [4239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1762), - [4242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3914), - [4245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1049), - [4248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1049), - [4251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2434), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [4270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1058), - [4273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1058), - [4276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1262), - [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1068), - [4298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1068), - [4301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(3193), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1078), - [4323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1078), - [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1307), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [4345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1428), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [4350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1368), - [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1429), - [4356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3418), - [4359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2883), - [4362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(775), - [4365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(194), - [4368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(525), - [4371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(526), - [4374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(192), - [4377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(193), - [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1428), - [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3935), - [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1088), - [4389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1088), - [4392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(3039), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1097), - [4414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1097), - [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1468), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [4424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1428), - [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1368), - [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1429), - [4433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3418), - [4436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2883), - [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(775), - [4442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(194), - [4445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(525), - [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(526), - [4451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(192), - [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(193), - [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1428), - [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3935), - [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1091), - [4466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1091), - [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1541), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [4476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1395), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [4481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1381), - [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1365), - [4487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3518), - [4490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2823), - [4493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(797), - [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(113), - [4499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(411), - [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(412), - [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(114), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(112), - [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1395), - [4514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3896), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [4567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(949), - [4570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(949), - [4573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2166), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1102), - [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1102), - [4598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1269), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [4605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1121), - [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1121), - [4611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1053), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [4630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1747), - [4633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2146), - [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2146), - [4639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3887), - [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [4645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1748), - [4648] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1764), - [4651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3516), - [4654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2771), - [4657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(721), - [4660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(131), - [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [4666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(129), - [4672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [4675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3072), - [4678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(130), - [4681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1747), - [4684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3908), - [4687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(979), - [4690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(979), - [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2422), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [4702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1395), - [4705] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1381), - [4708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1365), - [4711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3518), - [4714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2823), - [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(797), - [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(113), - [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(411), - [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(412), - [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(114), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(112), - [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1395), - [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3896), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [4779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1005), - [4782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1005), - [4785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1446), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [4792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), - [4795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), - [4798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2184), - [4801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3885), - [4804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3899), - [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1763), - [4810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1802), - [4813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3450), - [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2780), - [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(726), - [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(137), - [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(449), - [4828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(450), - [4831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3447), - [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3058), - [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(136), - [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), - [4846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3912), - [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(998), - [4852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(998), - [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1491), - [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [4862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1747), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1748), - [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1764), - [4873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3516), - [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2771), - [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(721), - [4882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(131), - [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(441), - [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(442), - [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(129), - [4894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(130), - [4897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1747), - [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3908), - [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1861), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [4908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1872), - [4911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1701), - [4914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3526), - [4917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2836), - [4920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(755), - [4923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(170), - [4926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(493), - [4929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(494), - [4932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(168), - [4935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(169), - [4938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1861), - [4941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3927), - [4944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1861), - [4947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1872), - [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1701), - [4953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3526), - [4956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2836), - [4959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(755), - [4962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(170), - [4965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(493), - [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(494), - [4971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(168), - [4974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(169), - [4977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1861), - [4980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3927), - [4983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1871), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [4988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1879), - [4991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1717), - [4994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3427), - [4997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2840), - [5000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(758), - [5003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(173), - [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(497), - [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(498), - [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(171), - [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(172), - [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1871), - [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3928), - [5024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1871), - [5027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1879), - [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1717), - [5033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3427), - [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2840), - [5039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(758), - [5042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(173), - [5045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(497), - [5048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(498), - [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(171), - [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(172), - [5057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1871), - [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3928), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1762), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [5110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1778), - [5113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1832), - [5116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3552), - [5119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2789), - [5122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(731), - [5125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(143), - [5128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(457), - [5131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(458), - [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(141), - [5137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(142), - [5140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1762), - [5143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3914), - [5146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1762), - [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1778), - [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1832), - [5155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3552), - [5158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2789), - [5161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(731), - [5164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(143), - [5167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(457), - [5170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(458), - [5173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(141), - [5176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(142), - [5179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1762), - [5182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3914), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1756), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [5232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1763), - [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1802), - [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3450), - [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2780), - [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(726), - [5247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(137), - [5250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(449), - [5253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(450), - [5256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(135), - [5259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(136), - [5262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1756), - [5265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3912), - [5268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1747), - [5271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1748), - [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1764), - [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3516), - [5280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2771), - [5283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(721), - [5286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(131), - [5289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(441), - [5292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(442), - [5295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(129), - [5298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(130), - [5301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1747), - [5304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3908), - [5307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1756), - [5310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1763), - [5313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1802), - [5316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3450), - [5319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2780), - [5322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(726), - [5325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(137), - [5328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(449), - [5331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(450), - [5334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(135), - [5337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(136), - [5340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1756), - [5343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3912), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4, 0, 0), - [5806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4, 0, 0), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, 0, 22), - [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, 0, 22), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, 0, 0), - [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, 0, 0), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, 0, 4), - [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, 0, 4), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, 0, 22), - [5882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, 0, 22), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arith_group, 2, 0, 0), - [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arith_group, 2, 0, 0), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [5902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access, 1, 0, 0), - [5904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__access, 1, 0, 0), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 4), - [5934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 4), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [5978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 0), - [5980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 0), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [5988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [6000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, 0, 0), - [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, 0, 0), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, 0, 4), - [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, 0, 4), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), - [6066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [6074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3, 0, 0), - [6076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3, 0, 0), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(1926), - [6109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(1104), - [6112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(1104), - [6115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), - [6117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(1927), - [6120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(1935), - [6123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(3513), - [6126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(2858), - [6129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(710), - [6132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(122), - [6135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(429), - [6138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(430), - [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(120), - [6144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(121), - [6147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(1899), - [6150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(3904), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arith_group, 3, 0, 0), - [6157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arith_group, 3, 0, 0), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), - [6165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 2, 0, 0), - [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 2, 0, 0), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [6205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 2, 0, 0), - [6207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 2, 0, 0), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [6213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 3, 0, 11), - [6215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 3, 0, 11), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [6221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__word_like, 1, 0, 0), - [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__word_like, 1, 0, 0), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__word_part, 1, 0, 0), - [6229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 0), - [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 0), - [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), - [6239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2366), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [6252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 3, 0, 0), - [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 3, 0, 0), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [6258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4, 0, 11), - [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4, 0, 11), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [6264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2402), - [6267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 1, 0, 0), - [6271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 1, 0, 0), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [6275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3445), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [6326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2400), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [6339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2138), - [6342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2042), - [6345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(1196), - [6348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(1196), - [6351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conditional, 2, 0, 0), - [6353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2134), - [6356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2139), - [6359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2114), - [6362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(3428), - [6365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2843), - [6368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(701), - [6371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(116), - [6374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(421), - [6377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(422), - [6380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(117), - [6383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(115), - [6386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2138), - [6389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(3623), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [6428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), - [6431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2375), - [6434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 1, 0, 0), - [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 1, 0, 0), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [6446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 4, 0, 0), - [6448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 4, 0, 0), - [6450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, 0, 0), - [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, 0, 0), - [6454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3468), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [6467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3546), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [6472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [6477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument, 1, 0, 6), - [6479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument, 1, 0, 6), - [6481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 7), - [6483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 7), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [6487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument, 1, 0, 0), - [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [6543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirect, 1, 0, 0), - [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirect, 1, 0, 0), - [6547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirect, 2, 0, 3), - [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirect, 2, 0, 3), - [6551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirect, 3, 0, 10), - [6553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirect, 3, 0, 10), - [6555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), - [6557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), - [6559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 11), - [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 11), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [6571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3523), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2348), - [6581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2307), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [6618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 9), - [6620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 9), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [6626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [6628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [6634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 1, 0, 0), - [6636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 1, 0, 0), - [6638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [6641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [6646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2377), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [6653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2305), - [6656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2399), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [6663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), - [6670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 6, 0, 34), - [6672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 6, 0, 34), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [6684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2317), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [6701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3414), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [6712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3522), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3419), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [6748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3441), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [6765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2298), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [6782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [6823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2388), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [6828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [6839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3425), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [6852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2325), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [6901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2430), - [6904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), - [6907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), - [6910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), - [6912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2407), - [6915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2412), - [6918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3430), - [6921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2792), - [6924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(788), - [6927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [6930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(401), - [6933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [6936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [6939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [6942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2430), - [6945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3892), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [6954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2385), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__word_like, 1, 0, 0), REDUCE(aux_sym__expansion_tail, 1, 0, 0), - [6986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__word_like, 1, 0, 0), REDUCE(aux_sym__expansion_tail, 1, 0, 0), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [7033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 24), - [7035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 24), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [7103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3395), - [7106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), - [7109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), - [7111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3403), - [7114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3390), - [7117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3492), - [7120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2894), - [7123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(732), - [7126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [7129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(358), - [7132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(359), - [7135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [7138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [7141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3395), - [7144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [7149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), - [7151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2150), - [7154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2150), - [7157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3722), - [7160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [7163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), - [7165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3549), - [7168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3070), - [7171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2718), - [7174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), - [7176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), - [7179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2741), - [7182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), - [7185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2794), - [7188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(735), - [7191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [7194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [7197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [7200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [7203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [7206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2718), - [7209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3916), - [7212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_return_statement, 2, 0, 2), - [7215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_return_statement, 2, 0, 2), - [7218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2145), - [7221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2145), - [7224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3816), - [7227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3817), - [7230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3089), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [7237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_continue_statement, 2, 0, 2), - [7240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_continue_statement, 2, 0, 2), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [7247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_break_statement, 2, 0, 2), - [7250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_break_statement, 2, 0, 2), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [7293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(2718), - [7296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(2019), - [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [7301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), - [7304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(2741), - [7307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), - [7310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(2794), - [7313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(735), - [7316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(146), - [7319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(461), - [7322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(462), - [7325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [7328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [7331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(2718), - [7334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(3916), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [7369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 17), - [7371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 17), - [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 26), - [7375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 26), - [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), - [7379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), - [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 2), - [7383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 2), - [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 29), - [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 29), - [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 4, 0, 0), - [7391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 4, 0, 0), - [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 2), - [7395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 2), - [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 4, 0, 0), - [7399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 4, 0, 0), - [7401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2, 0, 0), - [7403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2, 0, 0), - [7405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2303), - [7408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 4, 0, 0), - [7410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 4, 0, 0), - [7412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conditional, 1, 0, 0), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__conditional, 1, 0, 0), - [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__redirect_statement, 1, -1, 0), - [7420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__redirect_statement, 1, -1, 0), - [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 27), - [7424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 27), - [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [7428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [7430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 29), - [7432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 29), - [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 39), - [7436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 39), - [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 35), - [7440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 35), - [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3, 0, 0), - [7444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3, 0, 0), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 36), - [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 36), - [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 41), - [7452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 41), - [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 26), - [7456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 26), - [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 2), - [7460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 2), - [7462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 19), - [7464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 19), - [7466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 31), - [7468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 31), - [7470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 35), - [7472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 35), - [7474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 41), - [7476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 41), - [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 36), - [7480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 36), - [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 43), - [7484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 43), - [7486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 27), - [7488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 27), - [7490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 31), - [7492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 31), - [7494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 2), - [7496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 2), - [7498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 37), - [7500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 37), - [7502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2064), - [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 46), - [7507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 46), - [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 2), - [7511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 2), - [7513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 37), - [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 37), - [7517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 2), - [7519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 2), - [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 2), - [7523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 2), - [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 19), - [7527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 19), - [7529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 39), - [7531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 39), - [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 12), - [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 12), - [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), - [7539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), - [7541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 25), - [7543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 25), - [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_until_statement, 4, 0, 12), - [7547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_until_statement, 4, 0, 12), - [7549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 44), - [7551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 44), - [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 46), - [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 46), - [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 12), - [7559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 12), - [7561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), - [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), - [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 2), - [7567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 2), - [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 0), - [7571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 0), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [7575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 25), - [7577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 25), - [7579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 43), - [7581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 43), - [7583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 9, 0, 47), - [7585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 9, 0, 47), - [7587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), - [7589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), - [7591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), - [7594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), - [7597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3816), - [7600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3817), - [7603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3089), - [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 2), - [7608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 2), - [7610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 17), - [7612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 17), - [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 44), - [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 44), - [7618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_until_statement, 3, 0, 12), - [7620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_until_statement, 3, 0, 12), - [7622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 2), - [7624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 2), - [7626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 47), - [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 47), - [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 2), - [7632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 2), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [7644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2383), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [7685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_brace_expression_repeat1, 2, 0, 0), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), - [7697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(2928), - [7700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(2232), - [7703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(2920), - [7706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(3417), - [7709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(2775), - [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(2920), - [7715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(723), - [7718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(134), - [7721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(445), - [7724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(446), - [7727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(132), - [7730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(133), - [7733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(3910), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [7744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__body, 1, 0, 0), - [7746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__body, 1, 0, 0), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_brace_expression_repeat1, 1, 0, 0), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [7776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2209), - [7779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2209), - [7782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3868), - [7785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3871), - [7788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3114), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [7807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3, 0, 0), - [7809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3, 0, 0), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2, 0, 0), - [7817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2, 0, 0), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [7823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [7827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [7835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [7839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [7843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [7847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [7851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), - [7854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), - [7857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), - [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3871), - [7863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3114), - [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [7926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [7944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [7960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2387), - [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [7971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2369), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [7982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2190), - [7985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2190), - [7988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3725), - [7991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3739), - [7994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3092), - [7997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2191), - [8000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2191), - [8003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3867), - [8006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3882), - [8009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3105), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [8066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2191), - [8069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2191), - [8072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3867), - [8075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3882), - [8078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3105), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [8085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2190), - [8088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2190), - [8091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3725), - [8094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3739), - [8097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3092), - [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), - [8102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(2996), - [8105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(3474), - [8108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(2893), - [8111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(2996), - [8114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(714), - [8117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(2602), - [8120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(125), - [8123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(433), - [8126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(434), - [8129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(123), - [8132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(124), - [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [8139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [8141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [8155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [8160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2358), - [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [8211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2398), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [8216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 30), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [8220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 30), - [8222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 30), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [8226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 30), - [8228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2762), - [8231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 38), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 38), - [8237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 38), - [8239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 38), - [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [8243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 30), - [8245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 30), - [8247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 38), - [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 38), - [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [8303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [8309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [8321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [8329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [8331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3565), - [8334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [8336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2785), - [8339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2785), - [8342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(707), - [8345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(119), - [8348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(425), - [8351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(426), - [8354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [8357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3064), - [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), - [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [8384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), - [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [8434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [8440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [8470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), - [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [8532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [8538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [8564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [8566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [8594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), - [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [8614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [8622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [8626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [8650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [8662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [8698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [8704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [8722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), - [8758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2370), - [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [8793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2925), - [8796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jump, 1, 0, 0), - [8798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jump, 1, 0, 0), - [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 13), - [8802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 13), - [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 42), - [8806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 42), - [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, 0, 45), - [8810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, 0, 45), - [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 20), - [8814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 20), - [8816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [8818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [8820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 32), - [8822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 32), - [8824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 21), - [8826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 21), - [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_command, 3, 0, 0), - [8830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_command, 3, 0, 0), - [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__control_flow, 1, 0, 0), - [8834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__control_flow, 1, 0, 0), - [8836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__branch, 1, 0, 0), - [8838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__branch, 1, 0, 0), - [8840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, 0, 48), - [8842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, 0, 48), - [8844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_command, 2, 0, 0), - [8846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_command, 2, 0, 0), - [8848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 4, 0, 23), - [8850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 4, 0, 23), - [8852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 10, 0, 50), - [8854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 10, 0, 50), - [8856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__body, 1, 0, 0), - [8859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__body, 1, 0, 0), - [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, 0, 40), - [8864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, 0, 40), - [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3, 0, 14), - [8868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3, 0, 14), - [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 33), - [8872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 33), - [8874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, 0, 49), - [8876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, 0, 49), - [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive, 1, 0, 0), - [8880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive, 1, 0, 0), - [8882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__invocation, 1, 0, 0), - [8884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__invocation, 1, 0, 0), - [8886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop, 1, 0, 0), - [8888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__loop, 1, 0, 0), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [8892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), - [8894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), - [8896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3445), - [8899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2345), - [8902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2, 0, 0), - [8904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2, 0, 0), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [8910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), - [8913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [8928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), - [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [8935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [8937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), - [8939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [8999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 5), - [9001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 5), - [9003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2378), - [9006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2392), - [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [9017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3414), - [9020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [9024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [9030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3441), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [9035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3425), - [9038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2, 0, 0), - [9040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2, 0, 0), - [9042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [9046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [9054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [9060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3419), - [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [9155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 14), - [9157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 14), - [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [9199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4, 0, 23), - [9201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4, 0, 23), - [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [9213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3522), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [9242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [9248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [9314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [9438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [9457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 28), - [9459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 28), SHIFT_REPEAT(64), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_item_last, 3, 0, 30), - [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [9476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_item_last, 4, 0, 38), - [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [9510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_patterns, 1, 0, 0), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [9558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3436), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [9603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [9615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [9623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 0), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [9629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [9631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_patterns, 2, 0, 0), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [9641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [9643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [9653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 18), - [9655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [9703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brace_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2256), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [9718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [9760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3499), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [9811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [9847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [9863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__case_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), - [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__case_patterns_repeat1, 2, 0, 0), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [9892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [9898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [9920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [9952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [10046] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [10234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2167), + [844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3528), + [847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3786), + [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(66), + [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(67), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(714), + [862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(715), + [865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(721), + [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3660), + [871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1833), + [874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(664), + [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3603), + [886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3754), + [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1467), + [892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1299), + [895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1265), + [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), + [901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(2812), + [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(558), + [916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3399), + [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3098), + [925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(186), + [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), + [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3876), + [934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_end, 2, 0, 0), + [936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_end, 2, 0, 0), + [938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), + [946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(3644), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(310), + [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc, 2, 0, 0), + [962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc, 2, 0, 0), + [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(3792), + [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(313), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_end, 1, 0, 0), + [978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_end, 1, 0, 0), + [980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_end, 3, 0, 0), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_end, 3, 0, 0), + [986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(3709), + [989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(317), + [992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(323), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(323), + [1019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(597), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(1152), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(3438), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(2729), + [1031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(1152), + [1034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(768), + [1037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(95), + [1040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(388), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(389), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(96), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(92), + [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [1060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [1062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(3683), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(327), + [1076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(3600), + [1079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(328), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 4, 0, 0), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [1086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [1088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 4, 0, 0), + [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(3825), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(331), + [1096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3, 0, 0), + [1098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3, 0, 0), + [1100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(3812), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(334), + [1106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), + [1108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2, 0, 0), + [1110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), + [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statement_end_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [1118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [1153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 1), + [1155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 1), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [1171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 8), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 8), + [1175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 4), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 4), + [1182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1209), + [1185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), + [1187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), + [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1258), + [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2158), + [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2158), + [1198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3796), + [1201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3819), + [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1211), + [1207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1216), + [1210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3485), + [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2881), + [1216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(800), + [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(179), + [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(524), + [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(525), + [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(177), + [1231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3152), + [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(178), + [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1209), + [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3576), + [1243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 16), + [1245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 16), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [1359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [1403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(596), + [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(596), + [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(351), + [2074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(1175), + [2077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(3474), + [2080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(2820), + [2083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(1175), + [2086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(808), + [2089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(140), + [2092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(472), + [2095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(473), + [2098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(201), + [2101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arithmetic, 2, 0, 0), SHIFT_REPEAT(139), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [2166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1273), + [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1459), + [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2166), + [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2166), + [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3676), + [2197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3678), + [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1281), + [2203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1292), + [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3369), + [2209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2821), + [2212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(759), + [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(152), + [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(488), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(489), + [2224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(150), + [2227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3141), + [2230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(151), + [2233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1273), + [2236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3887), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [2267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1263), + [2270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1450), + [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2140), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2140), + [2279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3848), + [2282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3849), + [2285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1270), + [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1301), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3392), + [2294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2749), + [2297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(819), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(191), + [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(540), + [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(541), + [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(189), + [2312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3155), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(190), + [2318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1263), + [2321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3902), + [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1, 0, 0), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1, 0, 0), + [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1261), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), + [2375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), + [2378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), + [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3870), + [2384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3872), + [2387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1264), + [2390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), + [2393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3375), + [2396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2732), + [2399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(809), + [2402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [2405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(532), + [2408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(533), + [2411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [2414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3460), + [2417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3148), + [2420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [2423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1261), + [2426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), + [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1331), + [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1441), + [2435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2184), + [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2184), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3749), + [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3753), + [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1299), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1265), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3490), + [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2812), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(824), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(77), + [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(553), + [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(558), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(63), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3153), + [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(186), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1331), + [2483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3876), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2, 0, 0), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2, 0, 0), + [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(644), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [2507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(647), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(651), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2154), + [2541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2154), + [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3620), + [2547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3622), + [2550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1400), + [2553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), + [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3402), + [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2760), + [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(753), + [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(548), + [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(549), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [2577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3483), + [2580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3154), + [2583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(196), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1392), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3904), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(657), + [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(659), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), + [2661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2143), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3603), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3754), + [2673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1402), + [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3443), + [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2784), + [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(773), + [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [2691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(430), + [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(431), + [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3399), + [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3098), + [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), + [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3863), + [2715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), + [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), + [2724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3705), + [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3714), + [2730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), + [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1369), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3422), + [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2829), + [2742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(781), + [2745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(508), + [2751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(509), + [2754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), + [2760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3136), + [2763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(166), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3894), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [2776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1, 0, 0), + [2778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1, 0, 0), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [2830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1596), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1773), + [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2160), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2160), + [2842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3768), + [2845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3788), + [2848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1598), + [2851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1622), + [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3471), + [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2794), + [2860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(790), + [2863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(100), + [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(399), + [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(400), + [2872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(101), + [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3132), + [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(97), + [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1596), + [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3851), + [2887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1261), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [2896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1264), + [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1293), + [2902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3375), + [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2732), + [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(809), + [2911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(185), + [2914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(532), + [2917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(533), + [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(183), + [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(184), + [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1261), + [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3900), + [2932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1261), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), + [2939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1264), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1293), + [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3375), + [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2732), + [2951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(809), + [2954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(185), + [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(532), + [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(533), + [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(183), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(184), + [2969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1261), + [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3900), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1, 0, 0), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1, 0, 0), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1617), + [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1792), + [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2170), + [2990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2170), + [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3766), + [2996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3767), + [2999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1490), + [3002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1586), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3434), + [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2727), + [3011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(765), + [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(155), + [3017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(492), + [3020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(617), + [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(153), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3144), + [3029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(154), + [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1617), + [3035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3889), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1, 0, 0), + [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1, 0, 0), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1485), + [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1746), + [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2150), + [3067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2150), + [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3650), + [3073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3652), + [3076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1551), + [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1599), + [3082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3504), + [3085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2861), + [3088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(814), + [3091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(75), + [3094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(349), + [3097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(350), + [3100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(76), + [3103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3124), + [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(70), + [3109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1485), + [3112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3824), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [3143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1552), + [3146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1766), + [3149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2171), + [3152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2171), + [3155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3865), + [3158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3866), + [3161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1554), + [3164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1555), + [3167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3450), + [3170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2754), + [3173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(784), + [3176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(83), + [3179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(363), + [3182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(364), + [3185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(84), + [3188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3127), + [3191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(78), + [3194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1552), + [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3833), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [3204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [3214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1500), + [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1803), + [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2132), + [3223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2132), + [3226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3810), + [3229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3811), + [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1585), + [3235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1517), + [3238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3403), + [3241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(2800), + [3244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(777), + [3247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(164), + [3250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(504), + [3253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(505), + [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(162), + [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3145), + [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(163), + [3265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(1500), + [3268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 15), SHIFT_REPEAT(3893), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [3297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1392), + [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [3302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1400), + [3305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1420), + [3308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3402), + [3311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2760), + [3314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(753), + [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(197), + [3320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(548), + [3323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(549), + [3326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(195), + [3329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(196), + [3332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1392), + [3335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3904), + [3338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1392), + [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1400), + [3344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1420), + [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3402), + [3350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2760), + [3353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(753), + [3356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(197), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(548), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(549), + [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(195), + [3368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(196), + [3371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1392), + [3374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3904), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [3415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1412), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [3420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1402), + [3423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1413), + [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3443), + [3429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2784), + [3432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(773), + [3435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(113), + [3438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(430), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(431), + [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(114), + [3447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(112), + [3450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1412), + [3453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3863), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1412), + [3463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1402), + [3466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1413), + [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3443), + [3472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2784), + [3475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(773), + [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(113), + [3481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(430), + [3484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(431), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(114), + [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(112), + [3493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1412), + [3496] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3863), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [3509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [3513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), + [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2180), + [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2180), + [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3856), + [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3857), + [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1784), + [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1655), + [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3452), + [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2865), + [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(792), + [3555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [3558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(516), + [3561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(517), + [3564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [3567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3387), + [3570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3137), + [3573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [3576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), + [3579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3896), + [3582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1777), + [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2144), + [3588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2144), + [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3797), + [3594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3813), + [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), + [3600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1763), + [3603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3435), + [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2773), + [3609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(766), + [3612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(131), + [3615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [3618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(461), + [3621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(129), + [3624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3456), + [3627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3102), + [3630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(130), + [3633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1777), + [3636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3875), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [3691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1791), + [3694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2128), + [3697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2128), + [3700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3675), + [3703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3680), + [3706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1802), + [3709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1712), + [3712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3462), + [3715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2801), + [3718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(793), + [3721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [3724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [3727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [3730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [3733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3444), + [3736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3105), + [3739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(136), + [3742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1791), + [3745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3879), + [3748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1451), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [3753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1365), + [3756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1369), + [3759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3422), + [3762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2829), + [3765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(781), + [3768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(167), + [3771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(508), + [3774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(509), + [3777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(165), + [3780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(166), + [3783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1451), + [3786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3894), + [3789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), + [3792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), + [3795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2173), + [3798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3628), + [3801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3629), + [3804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), + [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1670), + [3810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3468), + [3813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2871), + [3816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(798), + [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [3822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(520), + [3825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(521), + [3828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [3831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3405), + [3834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3139), + [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [3840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3897), + [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1451), + [3849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1365), + [3852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1369), + [3855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3422), + [3858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2829), + [3861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(781), + [3864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(167), + [3867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(508), + [3870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(509), + [3873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(165), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(166), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1451), + [3882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3894), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [3911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), + [3914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2149), + [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2149), + [3920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3673), + [3923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3698), + [3926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1665), + [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1740), + [3932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3486), + [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2833), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(818), + [3941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(143), + [3944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(476), + [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(477), + [3950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3440), + [3956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), + [3959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(142), + [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3881), + [3968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1868), + [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(940), + [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(940), + [3977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(3356), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1878), + [3985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1879), + [3988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(3389), + [3991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2719), + [3994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1879), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [3999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(817), + [4002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(122), + [4005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(448), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(449), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(120), + [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(121), + [4017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1880), + [4020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(3871), + [4023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(998), + [4026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(998), + [4029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2954), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [4076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1010), + [4079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1010), + [4082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1431), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [4101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1043), + [4104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1043), + [4107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1529), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [4114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(977), + [4117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(977), + [4120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2696), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1024), + [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1024), + [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2626), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [4176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1035), + [4179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1035), + [4182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2416), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [4189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1008), + [4192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1008), + [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1248), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [4226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1130), + [4229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1130), + [4232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1691), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [4251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1029), + [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1029), + [4257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1503), + [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1076), + [4267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1076), + [4270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1109), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1052), + [4292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1052), + [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2770), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [4326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1062), + [4329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1062), + [4332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1466), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [4339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1072), + [4342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1072), + [4345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(3085), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1090), + [4367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1090), + [4370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1628), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [4389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1016), + [4392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1016), + [4395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2972), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [4450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(983), + [4453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(983), + [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2890), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [4463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1093), + [4466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1093), + [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2069), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1105), + [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1105), + [4482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1381), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [4501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1119), + [4504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1119), + [4507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2645), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [4526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1141), + [4529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1141), + [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1753), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [4575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(931), + [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(931), + [4581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1637), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1138), + [4603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1138), + [4606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1680), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1157), + [4628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1157), + [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1699), + [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1040), + [4653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1040), + [4656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1733), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1115), + [4666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1115), + [4669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1569), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(935), + [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(935), + [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1229), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1143), + [4704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1143), + [4707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(3056), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [4714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(947), + [4717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(947), + [4720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2373), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [4727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(950), + [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(950), + [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2042), + [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [4764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(958), + [4767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(958), + [4770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1310), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1098), + [4804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1098), + [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1174), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [4826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(971), + [4829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(971), + [4832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(3073), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [4839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1001), + [4842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1001), + [4845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(2125), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(985), + [4891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(985), + [4894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1324), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1160), + [4904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1160), + [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1875), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1013), + [4953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1013), + [4956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 1, 0, 0), SHIFT(1341), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [5001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1801), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1665), + [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1740), + [5012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3486), + [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2833), + [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(818), + [5021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(143), + [5024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(476), + [5027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(477), + [5030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(141), + [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(142), + [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1801), + [5039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3881), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [5046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1777), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1778), + [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1763), + [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3435), + [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2773), + [5063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(766), + [5066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(131), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(460), + [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(461), + [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(129), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(130), + [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1777), + [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3875), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [5093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1779), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1784), + [5135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1655), + [5138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3452), + [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2865), + [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(792), + [5147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(173), + [5150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(516), + [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(517), + [5156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(171), + [5159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(172), + [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1779), + [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3896), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [5170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1777), + [5173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1778), + [5176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1763), + [5179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3435), + [5182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2773), + [5185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(766), + [5188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(131), + [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(460), + [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(461), + [5197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(129), + [5200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(130), + [5203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1777), + [5206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3875), + [5209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1791), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [5214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1802), + [5217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1712), + [5220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3462), + [5223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2801), + [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(793), + [5229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(137), + [5232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(468), + [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(469), + [5238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(135), + [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(136), + [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1791), + [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3879), + [5250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1783), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [5255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1789), + [5258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1670), + [5261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3468), + [5264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2871), + [5267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(798), + [5270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(176), + [5273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(520), + [5276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(521), + [5279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(174), + [5282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(175), + [5285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1783), + [5288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3897), + [5291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1779), + [5294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1784), + [5297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1655), + [5300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3452), + [5303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2865), + [5306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(792), + [5309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(173), + [5312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(516), + [5315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(517), + [5318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(171), + [5321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(172), + [5324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1779), + [5327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3896), + [5330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1791), + [5333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1802), + [5336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1712), + [5339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3462), + [5342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2801), + [5345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(793), + [5348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(137), + [5351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(468), + [5354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(469), + [5357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(135), + [5360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(136), + [5363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(1791), + [5366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3879), + [5369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1801), + [5372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1665), + [5375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1740), + [5378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3486), + [5381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2833), + [5384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(818), + [5387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(143), + [5390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(476), + [5393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(477), + [5396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(141), + [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(142), + [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1801), + [5405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3881), + [5408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1783), + [5411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1789), + [5414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1670), + [5417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3468), + [5420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2871), + [5423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(798), + [5426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(176), + [5429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(520), + [5432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(521), + [5435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(174), + [5438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(175), + [5441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(1783), + [5444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3897), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [5589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [5655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [5745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [5877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arith_group, 3, 0, 0), + [5901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arith_group, 3, 0, 0), + [5903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__access, 1, 0, 0), + [5951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__access, 1, 0, 0), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), + [5969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [6017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 2, 0, 0), + [6019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 2, 0, 0), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, 0, 0), + [6083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, 0, 0), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, 0, 4), + [6101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, 0, 4), + [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, 0, 22), + [6105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, 0, 22), + [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arith_group, 2, 0, 0), + [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arith_group, 2, 0, 0), + [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 0), + [6143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 0), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [6175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [6177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, 0, 0), + [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, 0, 0), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4, 0, 0), + [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4, 0, 0), + [6191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(1868), + [6194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(1112), + [6197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(1112), + [6200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), + [6202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(1878), + [6205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(1879), + [6208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(3389), + [6211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(2719), + [6214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(817), + [6217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(122), + [6220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(448), + [6223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(449), + [6226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(120), + [6229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(121), + [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(1880), + [6235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_tail, 2, 0, 0), SHIFT_REPEAT(3871), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, 0, 4), + [6244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, 0, 4), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3, 0, 0), + [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3, 0, 0), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, 0, 22), + [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, 0, 22), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [6302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [6320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 4), + [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 4), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [6338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__word_like, 1, 0, 0), + [6340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__word_like, 1, 0, 0), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [6344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__word_part, 1, 0, 0), + [6346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2040), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [6351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2051), + [6354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2055), + [6357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3501), + [6360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2846), + [6363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(783), + [6366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(146), + [6369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(480), + [6372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(481), + [6375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(144), + [6378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(145), + [6381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(2040), + [6384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 5, 0, 24), SHIFT(3883), + [6387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2040), + [6390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2051), + [6393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2055), + [6396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3501), + [6399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2846), + [6402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(783), + [6405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(146), + [6408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(480), + [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(481), + [6414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(144), + [6417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(145), + [6420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(2040), + [6423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_variable_assignment, 2, 0, 1), SHIFT(3883), + [6426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [6428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [6430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2346), + [6433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 0), + [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 0), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [6441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment, 1, 0, 0), + [6445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assignment, 1, 0, 0), + [6447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [6449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3473), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2344), + [6485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 1, 0, 0), + [6487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 1, 0, 0), + [6489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 4, 0, 0), + [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 4, 0, 0), + [6493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, 0, 0), + [6495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, 0, 0), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [6499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2333), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [6504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2348), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [6509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2340), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [6514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2358), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [6553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument, 1, 0, 6), + [6555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument, 1, 0, 6), + [6557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3498), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [6588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 7), + [6590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 7), + [6592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument, 1, 0, 0), + [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument, 1, 0, 0), + [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [6598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), + [6601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirect, 1, 0, 0), + [6603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirect, 1, 0, 0), + [6605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirect, 2, 0, 3), + [6607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirect, 2, 0, 3), + [6609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 2, 0, 0), + [6611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 2, 0, 0), + [6613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirect, 3, 0, 10), + [6615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirect, 3, 0, 10), + [6617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 3, 0, 11), + [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 3, 0, 11), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [6629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3436), + [6632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2082), + [6635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2058), + [6638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(1339), + [6641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(1339), + [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conditional, 2, 0, 0), + [6646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2101), + [6649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2067), + [6652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2078), + [6655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(3499), + [6658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2866), + [6661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(782), + [6664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(116), + [6667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(440), + [6670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(441), + [6673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(117), + [6676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(115), + [6679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(2082), + [6682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), SHIFT_REPEAT(3867), + [6685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3417), + [6688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2331), + [6691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 9), + [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 9), + [6695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [6697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [6699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [6703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 6, 0, 34), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 6, 0, 34), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [6709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2350), + [6712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 1, 0, 0), + [6714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 1, 0, 0), + [6716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [6719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [6726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2365), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [6733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2353), + [6736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2352), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [6749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2364), + [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [6762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3503), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [6767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2336), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [6774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2363), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [6779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2361), + [6782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3478), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [6843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2334), + [6846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3505), + [6849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2338), + [6852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3433), + [6855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(3448), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [6896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2351), + [6899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2367), + [6902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1827), + [6905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1827), + [6908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), + [6910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2411), + [6913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2390), + [6916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), + [6919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2854), + [6922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(760), + [6925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [6928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(420), + [6931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(421), + [6934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [6937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [6940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2367), + [6943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_test_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3859), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [6964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__word_like, 1, 0, 0), REDUCE(aux_sym__expansion_tail, 1, 0, 0), + [6967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__word_like, 1, 0, 0), REDUCE(aux_sym__expansion_tail, 1, 0, 0), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [7030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 24), + [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 24), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [7084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), + [7086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [7089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [7092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3886), + [7095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3898), + [7098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), + [7100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3469), + [7103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 0), SHIFT_REPEAT(3119), + [7106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3351), + [7109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2110), + [7112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), + [7114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3349), + [7117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3352), + [7120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3457), + [7123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2825), + [7126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [7129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [7132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(375), + [7135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(376), + [7138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(91), + [7141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [7144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3351), + [7147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3842), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [7152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_return_statement, 2, 0, 2), + [7155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_return_statement, 2, 0, 2), + [7158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2169), + [7161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2169), + [7164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3635), + [7167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3636), + [7170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3114), + [7173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_break_statement, 2, 0, 2), + [7176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_break_statement, 2, 0, 2), + [7179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_continue_statement, 2, 0, 2), + [7182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), REDUCE(sym_continue_statement, 2, 0, 2), + [7185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2700), + [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), + [7190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2694), + [7193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), + [7196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3395), + [7199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2803), + [7202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [7205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [7208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [7211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [7214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [7217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [7220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2700), + [7223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3885), + [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 39), + [7228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 39), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [7234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_until_statement, 3, 0, 12), + [7236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_until_statement, 3, 0, 12), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [7242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 2), + [7244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 2), + [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 39), + [7248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 39), + [7250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 44), + [7252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 44), + [7254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3, 0, 0), + [7256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3, 0, 0), + [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [7260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 2), + [7270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 2), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [7276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 2), + [7278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 2), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 43), + [7284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 43), + [7286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 0), + [7288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 0), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 4, 0, 0), + [7296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 4, 0, 0), + [7298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 4, 0, 0), + [7300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 4, 0, 0), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 9, 0, 47), + [7318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 9, 0, 47), + [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__redirect_statement, 1, -1, 0), + [7322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__redirect_statement, 1, -1, 0), + [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 37), + [7326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 37), + [7328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), + [7330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), + [7332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [7335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2169), + [7338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3635), + [7341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3636), + [7344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3114), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 44), + [7355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 44), + [7357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 17), + [7359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 17), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 2), + [7365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 2), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 2), + [7369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 2), + [7371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 2), + [7373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 2), + [7375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2341), + [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 19), + [7380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 19), + [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 12), + [7384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 12), + [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_until_statement, 4, 0, 12), + [7388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_until_statement, 4, 0, 12), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 8, 0, 43), + [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 8, 0, 43), + [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 4, 0, 0), + [7396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 4, 0, 0), + [7398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 47), + [7400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 47), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [7408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 41), + [7410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 41), + [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 31), + [7414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 31), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 12), + [7426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 12), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [7430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 17), + [7432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 17), + [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 25), + [7436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 25), + [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 35), + [7440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 35), + [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 26), + [7444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 26), + [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 27), + [7448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 27), + [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 2), + [7452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 2), + [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 29), + [7456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 29), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 2), + [7470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 2), + [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 2), + [7486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 2), + [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 19), + [7490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 19), + [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 5, 0, 31), + [7494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 5, 0, 31), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [7502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 36), + [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 36), + [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [7508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 25), + [7512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 25), + [7514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 41), + [7516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 41), + [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 46), + [7520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 46), + [7522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 35), + [7524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 35), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 36), + [7528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 36), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 26), + [7532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 26), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 27), + [7536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 27), + [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 37), + [7540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 37), + [7542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 46), + [7544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 46), + [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 29), + [7548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 29), + [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 2), + [7552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 2), + [7554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 2), + [7556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 2), + [7558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2, 0, 0), + [7560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2, 0, 0), + [7562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [7564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [7568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(2700), + [7571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(2033), + [7574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [7576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(2694), + [7579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), + [7582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(3395), + [7585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(2803), + [7588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(755), + [7591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(149), + [7594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(484), + [7597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(485), + [7600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [7603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(148), + [7606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(2700), + [7609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(3885), + [7612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [7619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__conditional, 2, 0, 0), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [7623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2343), + [7626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__conditional, 1, 0, 0), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__conditional, 1, 0, 0), + [7632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2063), + [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__body, 1, 0, 0), + [7639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__body, 1, 0, 0), + [7641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2, 0, 0), + [7643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2, 0, 0), + [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2145), + [7674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2145), + [7677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3906), + [7680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3584), + [7683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3150), + [7686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3, 0, 0), + [7688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3, 0, 0), + [7690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), + [7693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2145), + [7696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3906), + [7699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3584), + [7702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3150), + [7705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_brace_expression_repeat1, 1, 0, 0), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_brace_expression_repeat1, 2, 0, 0), + [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), + [7741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(2887), + [7744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(2257), + [7747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(2894), + [7750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(3449), + [7753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(2786), + [7756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(2894), + [7759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(779), + [7762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(134), + [7765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(464), + [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(465), + [7771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(132), + [7774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(133), + [7777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__brace_element, 2, 0, 0), SHIFT_REPEAT(3877), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [7862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [7870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2356), + [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [7877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [7881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [7889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [7907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [7915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [7919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [7923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [7961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [7965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [7969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [7973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [7977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [7981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2354), + [7984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2153), + [7987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2153), + [7990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3722), + [7993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3723), + [7996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3143), + [7999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2182), + [8002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(2182), + [8005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3816), + [8008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3826), + [8011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(3123), + [8014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), + [8017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2182), + [8020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3816), + [8023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3826), + [8026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3123), + [8029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), + [8032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), + [8035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3722), + [8038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3723), + [8041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subshell_repeat1, 2, 0, 0), SHIFT_REPEAT(3143), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), + [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [8076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2332), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), + [8093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), + [8096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(3407), + [8099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(2733), + [8102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(2981), + [8105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [8108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(2585), + [8111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(125), + [8114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(452), + [8117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(453), + [8120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [8123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignment_repeat1, 2, 0, 0), SHIFT_REPEAT(124), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [8146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2349), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [8157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [8165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [8173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [8193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2342), + [8196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2705), + [8199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 38), + [8201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 38), + [8203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 38), + [8205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 38), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [8209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 30), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [8213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 30), + [8215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 30), + [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 30), + [8219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 38), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 38), + [8225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 30), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [8229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 30), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [8233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2347), + [8236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [8258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), + [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [8264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2743), + [8292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [8298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [8310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [8328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [8358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [8382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [8404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [8428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [8484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), + [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [8496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [8508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [8514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [8540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [8542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [8544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [8546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [8564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [8594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [8602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [8608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [8614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [8616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [8622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [8624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [8626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [8632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [8638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [8644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [8648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3549), + [8651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [8653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2845), + [8656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2845), + [8659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(794), + [8662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [8665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(444), + [8668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [8671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [8674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(3109), + [8677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [8683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [8687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [8689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [8693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [8695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [8699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [8701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [8705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [8711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [8713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [8715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [8723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [8727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [8733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [8741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [8755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), + [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [8783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__branch, 1, 0, 0), + [8789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__branch, 1, 0, 0), + [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 10, 0, 50), + [8793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 10, 0, 50), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__control_flow, 1, 0, 0), + [8797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__control_flow, 1, 0, 0), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive, 1, 0, 0), + [8801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive, 1, 0, 0), + [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_command, 2, 0, 0), + [8805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_command, 2, 0, 0), + [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__loop, 1, 0, 0), + [8809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__loop, 1, 0, 0), + [8811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 13), + [8813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 13), + [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 33), + [8817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 33), + [8819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 42), + [8821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 42), + [8823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__jump, 1, 0, 0), + [8825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jump, 1, 0, 0), + [8827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3, 0, 14), + [8829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3, 0, 14), + [8831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 4, 0, 23), + [8833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 4, 0, 23), + [8835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, 0, 48), + [8837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, 0, 48), + [8839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 32), + [8841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 32), + [8843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__invocation, 1, 0, 0), + [8845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__invocation, 1, 0, 0), + [8847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, 0, 45), + [8849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, 0, 45), + [8851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [8853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, 0, 49), + [8857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, 0, 49), + [8859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_command, 3, 0, 0), + [8861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_command, 3, 0, 0), + [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 20), + [8865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 20), + [8867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__body, 1, 0, 0), + [8870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), REDUCE(sym__body, 1, 0, 0), + [8873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, 0, 40), + [8875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, 0, 40), + [8877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 21), + [8879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 21), + [8881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2355), + [8884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [8886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [8888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3473), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [8893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2, 0, 0), + [8895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2, 0, 0), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [8901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [8917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3417), + [8920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), + [8922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), + [8924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3436), + [8927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [8932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [8936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2335), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [8965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3505), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [8970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3448), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [8981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 14), + [8983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 14), + [8985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3478), + [8988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3503), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [8993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(3433), + [8996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 4, 0, 23), + [8998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 4, 0, 23), + [9000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2, 0, 0), + [9002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2, 0, 0), + [9004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [9009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [9037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [9057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [9091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [9099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 5), + [9101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 5), + [9103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [9141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [9147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [9155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [9167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [9195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [9219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [9375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(2357), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [9386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3330), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [9405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 28), + [9407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 28), SHIFT_REPEAT(68), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [9420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_item_last, 4, 0, 38), + [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [9432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_item_last, 3, 0, 30), + [9434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [9474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, 0, 0), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [9480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, 0, 18), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [9488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [9524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_patterns, 1, 0, 0), + [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [9640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case_patterns, 2, 0, 0), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [9654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [9664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [9704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [9710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [9718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [9750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [9758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_brace_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2190), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [9801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__case_patterns_repeat1, 2, 0, 0), SHIFT_REPEAT(2135), + [9804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__case_patterns_repeat1, 2, 0, 0), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [9842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [9860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [9938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [10346] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [10368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [10386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), }; enum ts_external_scanner_symbol_identifiers { @@ -215837,14 +215895,15 @@ enum ts_external_scanner_symbol_identifiers { ts_external_token__heredoc_start_dash = 1, ts_external_token_heredoc_body = 2, ts_external_token_heredoc_end = 3, - ts_external_token__concat = 4, - ts_external_token__assignment_name = 5, - ts_external_token__file_descriptor = 6, - ts_external_token__backtick_open = 7, - ts_external_token__backtick_close = 8, - ts_external_token__dollar_literal = 9, - ts_external_token__brace_expr_start = 10, - ts_external_token__error_sentinel = 11, + ts_external_token__heredoc_newline = 4, + ts_external_token__concat = 5, + ts_external_token__assignment_name = 6, + ts_external_token__file_descriptor = 7, + ts_external_token__backtick_open = 8, + ts_external_token__backtick_close = 9, + ts_external_token__dollar_literal = 10, + ts_external_token__brace_expr_start = 11, + ts_external_token__error_sentinel = 12, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -215852,6 +215911,7 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_start_dash] = sym__heredoc_start_dash, [ts_external_token_heredoc_body] = sym_heredoc_body, [ts_external_token_heredoc_end] = sym_heredoc_end, + [ts_external_token__heredoc_newline] = sym__heredoc_newline, [ts_external_token__concat] = sym__concat, [ts_external_token__assignment_name] = sym__assignment_name, [ts_external_token__file_descriptor] = sym__file_descriptor, @@ -215862,12 +215922,13 @@ static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__error_sentinel] = sym__error_sentinel, }; -static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { +static const bool ts_external_scanner_states[38][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_start] = true, [ts_external_token__heredoc_start_dash] = true, [ts_external_token_heredoc_body] = true, [ts_external_token_heredoc_end] = true, + [ts_external_token__heredoc_newline] = true, [ts_external_token__concat] = true, [ts_external_token__assignment_name] = true, [ts_external_token__file_descriptor] = true, @@ -215885,15 +215946,20 @@ static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_expr_start] = true, }, [3] = { - [ts_external_token__backtick_open] = true, - }, - [4] = { + [ts_external_token_heredoc_body] = true, + [ts_external_token_heredoc_end] = true, + [ts_external_token__assignment_name] = true, [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, [ts_external_token__dollar_literal] = true, [ts_external_token__brace_expr_start] = true, }, + [4] = { + [ts_external_token__backtick_open] = true, + }, [5] = { + [ts_external_token_heredoc_body] = true, + [ts_external_token_heredoc_end] = true, [ts_external_token__assignment_name] = true, [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, @@ -215902,64 +215968,68 @@ static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_expr_start] = true, }, [6] = { + [ts_external_token__heredoc_newline] = true, [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, - [ts_external_token__backtick_close] = true, [ts_external_token__dollar_literal] = true, [ts_external_token__brace_expr_start] = true, }, [7] = { + [ts_external_token__heredoc_newline] = true, + [ts_external_token__assignment_name] = true, + [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, [ts_external_token__dollar_literal] = true, [ts_external_token__brace_expr_start] = true, }, [8] = { - [ts_external_token_heredoc_body] = true, - [ts_external_token_heredoc_end] = true, + [ts_external_token__assignment_name] = true, [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, + [ts_external_token__backtick_close] = true, [ts_external_token__dollar_literal] = true, [ts_external_token__brace_expr_start] = true, }, [9] = { - [ts_external_token__concat] = true, + [ts_external_token__heredoc_newline] = true, [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, + [ts_external_token__backtick_close] = true, [ts_external_token__dollar_literal] = true, [ts_external_token__brace_expr_start] = true, }, [10] = { - [ts_external_token_heredoc_body] = true, - [ts_external_token_heredoc_end] = true, + [ts_external_token__heredoc_newline] = true, [ts_external_token__assignment_name] = true, [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, + [ts_external_token__backtick_close] = true, [ts_external_token__dollar_literal] = true, [ts_external_token__brace_expr_start] = true, }, [11] = { - [ts_external_token_heredoc_end] = true, - [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, [ts_external_token__dollar_literal] = true, [ts_external_token__brace_expr_start] = true, }, [12] = { + [ts_external_token__heredoc_newline] = true, [ts_external_token__concat] = true, - [ts_external_token__assignment_name] = true, [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, [ts_external_token__dollar_literal] = true, [ts_external_token__brace_expr_start] = true, }, [13] = { + [ts_external_token__heredoc_newline] = true, [ts_external_token__assignment_name] = true, [ts_external_token__backtick_open] = true, [ts_external_token__dollar_literal] = true, [ts_external_token__brace_expr_start] = true, }, [14] = { - [ts_external_token_heredoc_end] = true, + [ts_external_token__heredoc_newline] = true, + [ts_external_token__concat] = true, [ts_external_token__assignment_name] = true, [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, @@ -215967,6 +216037,7 @@ static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_expr_start] = true, }, [15] = { + [ts_external_token__heredoc_newline] = true, [ts_external_token__concat] = true, [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, @@ -215975,8 +216046,9 @@ static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_expr_start] = true, }, [16] = { - [ts_external_token_heredoc_body] = true, - [ts_external_token_heredoc_end] = true, + [ts_external_token__heredoc_newline] = true, + [ts_external_token__concat] = true, + [ts_external_token__assignment_name] = true, [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, [ts_external_token__backtick_close] = true, @@ -215984,125 +216056,100 @@ static const bool ts_external_scanner_states[41][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_expr_start] = true, }, [17] = { - [ts_external_token_heredoc_body] = true, - [ts_external_token_heredoc_end] = true, + [ts_external_token__heredoc_newline] = true, [ts_external_token__assignment_name] = true, - [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, [ts_external_token__backtick_close] = true, [ts_external_token__dollar_literal] = true, [ts_external_token__brace_expr_start] = true, }, [18] = { - [ts_external_token__assignment_name] = true, + [ts_external_token__concat] = true, [ts_external_token__backtick_open] = true, - [ts_external_token__backtick_close] = true, [ts_external_token__dollar_literal] = true, [ts_external_token__brace_expr_start] = true, }, [19] = { - [ts_external_token_heredoc_end] = true, + [ts_external_token__heredoc_newline] = true, + [ts_external_token__concat] = true, [ts_external_token__file_descriptor] = true, - [ts_external_token__backtick_open] = true, - [ts_external_token__backtick_close] = true, - [ts_external_token__dollar_literal] = true, - [ts_external_token__brace_expr_start] = true, }, [20] = { - [ts_external_token__concat] = true, - [ts_external_token__assignment_name] = true, + [ts_external_token__heredoc_newline] = true, [ts_external_token__file_descriptor] = true, - [ts_external_token__backtick_open] = true, - [ts_external_token__backtick_close] = true, - [ts_external_token__dollar_literal] = true, - [ts_external_token__brace_expr_start] = true, }, [21] = { [ts_external_token__concat] = true, + [ts_external_token__assignment_name] = true, + [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, [ts_external_token__dollar_literal] = true, [ts_external_token__brace_expr_start] = true, }, [22] = { - [ts_external_token_heredoc_end] = true, - [ts_external_token__assignment_name] = true, - [ts_external_token__file_descriptor] = true, [ts_external_token__backtick_open] = true, - [ts_external_token__backtick_close] = true, - [ts_external_token__dollar_literal] = true, [ts_external_token__brace_expr_start] = true, }, [23] = { + [ts_external_token__heredoc_newline] = true, [ts_external_token__concat] = true, [ts_external_token__file_descriptor] = true, + [ts_external_token__backtick_close] = true, }, [24] = { + [ts_external_token__heredoc_newline] = true, [ts_external_token__file_descriptor] = true, + [ts_external_token__backtick_close] = true, }, [25] = { - [ts_external_token_heredoc_body] = true, - [ts_external_token_heredoc_end] = true, - [ts_external_token__file_descriptor] = true, + [ts_external_token__heredoc_newline] = true, + [ts_external_token__concat] = true, + [ts_external_token__assignment_name] = true, }, [26] = { - [ts_external_token_heredoc_end] = true, - [ts_external_token__file_descriptor] = true, + [ts_external_token__backtick_open] = true, + [ts_external_token__dollar_literal] = true, }, [27] = { - [ts_external_token__backtick_open] = true, - [ts_external_token__brace_expr_start] = true, + [ts_external_token__heredoc_newline] = true, + [ts_external_token__assignment_name] = true, }, [28] = { - [ts_external_token__concat] = true, - [ts_external_token__file_descriptor] = true, - [ts_external_token__backtick_close] = true, + [ts_external_token__heredoc_newline] = true, }, [29] = { - [ts_external_token__file_descriptor] = true, + [ts_external_token__heredoc_newline] = true, + [ts_external_token__concat] = true, + [ts_external_token__assignment_name] = true, [ts_external_token__backtick_close] = true, }, [30] = { - [ts_external_token_heredoc_body] = true, - [ts_external_token_heredoc_end] = true, - [ts_external_token__file_descriptor] = true, + [ts_external_token__heredoc_newline] = true, + [ts_external_token__assignment_name] = true, [ts_external_token__backtick_close] = true, }, [31] = { - [ts_external_token_heredoc_end] = true, - [ts_external_token__file_descriptor] = true, + [ts_external_token__heredoc_newline] = true, [ts_external_token__backtick_close] = true, }, [32] = { - [ts_external_token__backtick_open] = true, - [ts_external_token__dollar_literal] = true, + [ts_external_token__concat] = true, }, [33] = { - [ts_external_token__concat] = true, - [ts_external_token__assignment_name] = true, + [ts_external_token_heredoc_body] = true, + [ts_external_token_heredoc_end] = true, }, [34] = { - [ts_external_token__assignment_name] = true, + [ts_external_token_heredoc_start] = true, }, [35] = { - [ts_external_token__concat] = true, - [ts_external_token__assignment_name] = true, - [ts_external_token__backtick_close] = true, + [ts_external_token__heredoc_start_dash] = true, }, [36] = { - [ts_external_token__assignment_name] = true, [ts_external_token__backtick_close] = true, }, [37] = { - [ts_external_token__backtick_close] = true, - }, - [38] = { - [ts_external_token__concat] = true, - }, - [39] = { - [ts_external_token__heredoc_start_dash] = true, - }, - [40] = { - [ts_external_token_heredoc_start] = true, + [ts_external_token_heredoc_end] = true, }, }; diff --git a/crates/treebank-bash/src/scanner.c b/crates/treebank-bash/src/scanner.c index 6b74ff8..4310283 100644 --- a/crates/treebank-bash/src/scanner.c +++ b/crates/treebank-bash/src/scanner.c @@ -23,6 +23,7 @@ enum TokenType { HEREDOC_START_DASH, HEREDOC_BODY, HEREDOC_END, + HEREDOC_NEWLINE, CONCAT, ASSIGNMENT_NAME, FILE_DESCRIPTOR, @@ -34,15 +35,37 @@ enum TokenType { }; #define MAX_DELIM 64 +#define MAX_HEREDOCS 15 typedef struct { char delimiter[MAX_DELIM]; unsigned length; bool allows_indent; // `<<-` strips leading tabs from the terminator bool started; // the body has been consumed; the end is next +} Heredoc; + +typedef struct { + Heredoc heredocs[MAX_HEREDOCS]; + unsigned heredoc_count; + bool needs_heredoc_newline; // another queued body follows an end marker bool in_backtick; // between the opening backtick and its close } Scanner; +static Heredoc *current_heredoc(Scanner *s) { + return s->heredoc_count > 0 ? &s->heredocs[0] : NULL; +} + +static void pop_heredoc(Scanner *s) { + if (s->heredoc_count == 0) return; + s->heredoc_count--; + if (s->heredoc_count > 0) { + memmove(&s->heredocs[0], &s->heredocs[1], + s->heredoc_count * sizeof(Heredoc)); + } + memset(&s->heredocs[s->heredoc_count], 0, sizeof(Heredoc)); + s->needs_heredoc_newline = s->heredoc_count > 0; +} + void *tree_sitter_bash_external_scanner_create(void) { Scanner *s = calloc(1, sizeof(Scanner)); return s; @@ -53,12 +76,17 @@ void tree_sitter_bash_external_scanner_destroy(void *payload) { free(payload); } unsigned tree_sitter_bash_external_scanner_serialize(void *payload, char *buffer) { Scanner *s = (Scanner *)payload; unsigned n = 0; - buffer[n++] = (char)s->length; - buffer[n++] = (char)s->allows_indent; - buffer[n++] = (char)s->started; + buffer[n++] = (char)s->heredoc_count; + buffer[n++] = (char)s->needs_heredoc_newline; buffer[n++] = (char)s->in_backtick; - memcpy(buffer + n, s->delimiter, s->length); - n += s->length; + for (unsigned i = 0; i < s->heredoc_count; i++) { + Heredoc *h = &s->heredocs[i]; + buffer[n++] = (char)h->length; + buffer[n++] = (char)h->allows_indent; + buffer[n++] = (char)h->started; + memcpy(buffer + n, h->delimiter, h->length); + n += h->length; + } return n; } @@ -66,14 +94,29 @@ void tree_sitter_bash_external_scanner_deserialize(void *payload, const char *bu unsigned length) { Scanner *s = (Scanner *)payload; memset(s, 0, sizeof(Scanner)); - if (length == 0) return; + if (length < 3) return; unsigned n = 0; - s->length = (unsigned char)buffer[n++]; - s->allows_indent = buffer[n++]; - s->started = buffer[n++]; + s->heredoc_count = (unsigned char)buffer[n++]; + s->needs_heredoc_newline = buffer[n++]; s->in_backtick = buffer[n++]; - if (s->length > MAX_DELIM) s->length = MAX_DELIM; - memcpy(s->delimiter, buffer + n, s->length); + if (s->heredoc_count > MAX_HEREDOCS) s->heredoc_count = MAX_HEREDOCS; + for (unsigned i = 0; i < s->heredoc_count; i++) { + if (n + 3 > length) { + s->heredoc_count = i; + return; + } + Heredoc *h = &s->heredocs[i]; + h->length = (unsigned char)buffer[n++]; + h->allows_indent = buffer[n++]; + h->started = buffer[n++]; + if (h->length >= MAX_DELIM) h->length = MAX_DELIM - 1; + if (n + h->length > length) { + s->heredoc_count = i; + return; + } + memcpy(h->delimiter, buffer + n, h->length); + n += h->length; + } } static void advance(TSLexer *lexer) { lexer->advance(lexer, false); } @@ -87,47 +130,48 @@ static bool is_word_char(int32_t c) { // quoting decides whether the body expands, which the grammar does not // model yet. static bool scan_heredoc_start(Scanner *s, TSLexer *lexer, bool dash) { + if (s->heredoc_count >= MAX_HEREDOCS) return false; + Heredoc *h = &s->heredocs[s->heredoc_count]; + memset(h, 0, sizeof(Heredoc)); while (lexer->lookahead == ' ' || lexer->lookahead == '\t') skip(lexer); int32_t quote = 0; if (lexer->lookahead == '"' || lexer->lookahead == '\'') { quote = lexer->lookahead; advance(lexer); } - s->length = 0; - while (s->length < MAX_DELIM - 1 && + while (h->length < MAX_DELIM - 1 && (quote ? (lexer->lookahead != quote && lexer->lookahead != 0) : is_word_char(lexer->lookahead))) { - s->delimiter[s->length++] = (char)lexer->lookahead; + h->delimiter[h->length++] = (char)lexer->lookahead; advance(lexer); } if (quote) { if (lexer->lookahead != quote) return false; advance(lexer); } - if (s->length == 0) return false; - s->started = false; - s->allows_indent = dash; + if (h->length == 0) return false; + h->allows_indent = dash; + s->heredoc_count++; lexer->result_symbol = dash ? HEREDOC_START_DASH : HEREDOC_START; return true; } // Everything up to the line that is exactly the delimiter. -static bool scan_heredoc_body(Scanner *s, TSLexer *lexer) { - if (s->length == 0) return false; +static bool scan_heredoc_body(Heredoc *h, TSLexer *lexer) { + if (h == NULL || h->length == 0) return false; bool any = false; for (;;) { // At the start of a line: is this the terminator? lexer->mark_end(lexer); - if (s->allows_indent) { + if (h->allows_indent) { while (lexer->lookahead == '\t') advance(lexer); } unsigned i = 0; - while (i < s->length && lexer->lookahead == (int32_t)s->delimiter[i]) { + while (i < h->length && lexer->lookahead == (int32_t)h->delimiter[i]) { advance(lexer); i++; } - if (i == s->length && (lexer->lookahead == '\n' || lexer->lookahead == 0)) { - if (!any) return false; // the body is empty; let HEREDOC_END run + if (i == h->length && (lexer->lookahead == '\n' || lexer->lookahead == 0)) { lexer->result_symbol = HEREDOC_BODY; return true; } @@ -144,18 +188,17 @@ static bool scan_heredoc_body(Scanner *s, TSLexer *lexer) { } } -static bool scan_heredoc_end(Scanner *s, TSLexer *lexer) { - if (s->length == 0) return false; - if (s->allows_indent) { +static bool scan_heredoc_end(Heredoc *h, TSLexer *lexer) { + if (h == NULL || h->length == 0) return false; + if (h->allows_indent) { while (lexer->lookahead == '\t') skip(lexer); } - for (unsigned i = 0; i < s->length; i++) { - if (lexer->lookahead != (int32_t)s->delimiter[i]) return false; + for (unsigned i = 0; i < h->length; i++) { + if (lexer->lookahead != (int32_t)h->delimiter[i]) return false; advance(lexer); } if (lexer->lookahead != '\n' && lexer->lookahead != 0) return false; lexer->mark_end(lexer); - s->length = 0; lexer->result_symbol = HEREDOC_END; return true; } @@ -210,6 +253,23 @@ bool tree_sitter_bash_external_scanner_scan(void *payload, TSLexer *lexer, // on one file. Decline the scanner there and let ordinary recovery run. if (valid[ERROR_SENTINEL]) return false; + // This token is valid only after a COMPLETE statement that registered a + // heredoc. Consuming the newline here creates a parser state in which the + // body is legal; before it, redirects, arguments and pipeline tails remain + // ordinary syntax on the opening line. + if (valid[HEREDOC_NEWLINE] && s->heredoc_count > 0) { + if (lexer->lookahead == '\r') { + advance(lexer); + if (lexer->lookahead != '\n') return false; + } + if (lexer->lookahead == '\n') { + advance(lexer); + lexer->mark_end(lexer); + lexer->result_symbol = HEREDOC_NEWLINE; + return true; + } + } + // CONCAT is zero-width and judged on the RAW lookahead -- it says only // that the previous token ended exactly where this one begins -- so it // must be decided before ANY block that skips whitespace runs. It fell @@ -369,18 +429,34 @@ not_brace:; } - if (valid[HEREDOC_END] && s->length > 0 && s->started) { - if (scan_heredoc_end(s, lexer)) return true; + Heredoc *h = current_heredoc(s); + if (h != NULL && s->needs_heredoc_newline) { + if (lexer->lookahead == '\r') { + skip(lexer); + if (lexer->lookahead != '\n') return false; + } + if (lexer->lookahead != '\n') return false; + skip(lexer); + s->needs_heredoc_newline = false; + } + if (valid[HEREDOC_END] && h != NULL && h->started) { + if (scan_heredoc_end(h, lexer)) { + pop_heredoc(s); + return true; + } } - if (valid[HEREDOC_BODY] && s->length > 0) { - if (scan_heredoc_body(s, lexer)) { - s->started = true; + if (valid[HEREDOC_BODY] && h != NULL) { + if (scan_heredoc_body(h, lexer)) { + h->started = true; return true; } - s->started = true; + h->started = true; } - if (valid[HEREDOC_END] && s->length > 0) { - if (scan_heredoc_end(s, lexer)) return true; + if (valid[HEREDOC_END] && h != NULL) { + if (scan_heredoc_end(h, lexer)) { + pop_heredoc(s); + return true; + } } if (valid[HEREDOC_START] || valid[HEREDOC_START_DASH]) { return scan_heredoc_start(s, lexer, valid[HEREDOC_START_DASH]); diff --git a/crates/treebank-bash/test/corpus/basics.txt b/crates/treebank-bash/test/corpus/basics.txt index 668ba5e..6d9a39f 100644 --- a/crates/treebank-bash/test/corpus/basics.txt +++ b/crates/treebank-bash/test/corpus/basics.txt @@ -65,9 +65,104 @@ EOF (word) (redirect (heredoc_redirect - (heredoc_start) - (heredoc_body) - (heredoc_end))))))) + (heredoc_start)))) + (heredoc_body) + (heredoc_end)))) + +================================================================================ +heredocs wait for the complete opening statement +================================================================================ + +cat < out +redirect body +EOF +cat < out + tabbed body + TABBED +cat <